added 'add' button to add pizza event page
This commit is contained in:
parent
ef2b6fe9fe
commit
a1d4f4772b
1 changed files with 14 additions and 0 deletions
|
@ -133,6 +133,20 @@ class AddPizzaEventPageState extends State<AddPizzaEventPage> {
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
|
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");
|
||||||
|
},
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue