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"); + }, + ) + ) + ) ] ) )