update cargo type form from rate, update carton info and form
This commit is contained in:
@@ -43,21 +43,21 @@ class _FcsShipmentListState extends State<FcsShipmentList> {
|
||||
return LocalProgress(
|
||||
inAsyncCall: _isLoading,
|
||||
child: Scaffold(
|
||||
appBar: LocalAppBar(labelKey: "FCSshipment.list.title", actions: [
|
||||
_menuFilteringWidget(context),
|
||||
]),
|
||||
floatingActionButton: FloatingActionButton.extended(
|
||||
onPressed: () {
|
||||
_newShipment();
|
||||
},
|
||||
icon: Icon(Icons.add),
|
||||
label:
|
||||
LocalText(context, "FCSshipment.add", color: Colors.white),
|
||||
backgroundColor: primaryColor),
|
||||
body: PaginatorListView<FcsShipment>(
|
||||
paginatorListener: shipmentModel.fcsShipments!,
|
||||
rowBuilder: (p) => FcsShipmentListRow(shipment: p),
|
||||
color: primaryColor)));
|
||||
appBar: LocalAppBar(labelKey: "FCSshipment.list.title", actions: [
|
||||
_menuFilteringWidget(context),
|
||||
]),
|
||||
floatingActionButton: FloatingActionButton.extended(
|
||||
onPressed: () {
|
||||
_newShipment();
|
||||
},
|
||||
icon: Icon(Icons.add),
|
||||
label: LocalText(context, "FCSshipment.add", color: Colors.white),
|
||||
backgroundColor: primaryColor),
|
||||
body: PaginatorListView<FcsShipment>(
|
||||
paginatorListener: shipmentModel.fcsShipments!,
|
||||
rowBuilder: (p) => FcsShipmentListRow(shipment: p),
|
||||
color: primaryColor),
|
||||
));
|
||||
}
|
||||
|
||||
_newShipment() {
|
||||
@@ -107,7 +107,9 @@ class _FcsShipmentListState extends State<FcsShipmentList> {
|
||||
value: choice,
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Flexible(child: Text("${choice.text}",style: TextStyle(color: Colors.black))),
|
||||
Flexible(
|
||||
child: Text("${choice.text}",
|
||||
style: TextStyle(color: Colors.black))),
|
||||
const SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user