insert confrim payment btn in invoice
This commit is contained in:
@@ -346,7 +346,23 @@ class _InvoiceEditorState extends State<InvoiceEditor> {
|
||||
),
|
||||
))),
|
||||
],
|
||||
))
|
||||
)),
|
||||
widget.invoice == null
|
||||
? Container()
|
||||
: Align(
|
||||
alignment: Alignment.bottomCenter,
|
||||
child: Center(
|
||||
child: Container(
|
||||
width: 250,
|
||||
child: FlatButton(
|
||||
child: Text('Confirm Payment'),
|
||||
color: primaryColor,
|
||||
textColor: Colors.white,
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
),
|
||||
)))
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user