insert confrim payment btn in invoice
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import 'package:fcs/model/customer_model.dart';
|
||||
import 'package:fcs/pages/search_page.dart';
|
||||
import 'package:fcs/widget/bottom_up_page_route.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_icons/flutter_icons.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
@@ -68,12 +69,8 @@ class _CustomerListState extends State<CustomerList> {
|
||||
children: <Widget>[
|
||||
InkWell(
|
||||
onTap: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) =>
|
||||
CustomerEditor(customer: user)),
|
||||
);
|
||||
Navigator.of(context).push(
|
||||
BottomUpPageRoute(CustomerEditor(customer: user)));
|
||||
},
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
|
||||
Reference in New Issue
Block a user