add processing

This commit is contained in:
Thinzar Win
2020-10-08 16:53:43 +06:30
parent d5a53c2945
commit b516360c02
8 changed files with 701 additions and 4 deletions

View File

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