fix profile

This commit is contained in:
Sai Naw Wun
2020-10-11 02:17:23 +06:30
parent b0ce53f856
commit 32e6be2abd
42 changed files with 938 additions and 626 deletions

View File

@@ -570,7 +570,7 @@ class _BoxEditorState extends State<BoxEditor> {
),
Column(
children: [
DeliveryAddressRow(shippingAddress: _deliveryAddress),
DeliveryAddressRow(deliveryAddress: _deliveryAddress),
Container(
padding: EdgeInsets.only(top: 20, bottom: 15, right: 15),
child: Align(
@@ -659,7 +659,7 @@ class _BoxEditorState extends State<BoxEditor> {
return addresses.asMap().entries.map((s) {
return InkWell(
onTap: () {},
child: DeliveryAddressRow(shippingAddress: s.value, index: s.key),
child: DeliveryAddressRow(deliveryAddress: s.value),
);
}).toList();
}