add shipments

This commit is contained in:
Sai Naw Wun
2020-10-19 05:13:49 +06:30
parent 4f8bde40b0
commit c619ae3f22
57 changed files with 1886 additions and 724 deletions

View File

@@ -27,10 +27,12 @@ class DefaultDeliveryAddress extends StatelessWidget {
Row(
children: [
Expanded(
child: DisplayText(
labelTextKey: this.labelKey ?? "delivery_address",
iconData: iconData ?? MaterialCommunityIcons.truck_fast,
),
child: this.labelKey == null
? Container()
: DisplayText(
labelTextKey: this.labelKey,
iconData: iconData ?? MaterialCommunityIcons.truck_fast,
),
),
onTap == null
? Container()