add fcs shipment apis

This commit is contained in:
Sai Naw Wun
2020-10-08 03:32:52 +06:30
parent ad1999f5c9
commit 6105b45cb8
23 changed files with 442 additions and 531 deletions

View File

@@ -128,7 +128,7 @@ class _StaffEditorState extends State<StaffEditor> {
Widget build(BuildContext context) {
final namebox = DisplayText(
text: user.name,
labelText: getLocalString(context, "customer.name"),
labelTextKey: getLocalString(context, "customer.name"),
iconData: Icons.person,
);
var phoneNumberBox = Row(
@@ -136,7 +136,7 @@ class _StaffEditorState extends State<StaffEditor> {
Expanded(
child: DisplayText(
text: user.phoneNumber,
labelText: getLocalString(context, "customer.phone"),
labelTextKey: getLocalString(context, "customer.phone"),
iconData: Icons.phone,
)),
isNew