From a1d4f4772bb6365a4d831b37c1dda8e6e48b9d19 Mon Sep 17 00:00:00 2001 From: broodjeaap89 Date: Fri, 9 Jul 2021 17:09:12 +0200 Subject: [PATCH] added 'add' button to add pizza event page --- lib/pages/AddPizzaEventPage.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/pages/AddPizzaEventPage.dart b/lib/pages/AddPizzaEventPage.dart index 50dc8e3..3c12b58 100644 --- a/lib/pages/AddPizzaEventPage.dart +++ b/lib/pages/AddPizzaEventPage.dart @@ -133,6 +133,20 @@ class AddPizzaEventPageState extends State { ) ] ), + Spacer(), + SizedBox( + width: double.infinity, + height: 70, + child: Container( + color: Colors.blue, + child: TextButton( + child: Text("Add", style: TextStyle(color: Colors.white)), + onPressed: () { + print("Pressed"); + }, + ) + ) + ) ] ) )