update carton list
This commit is contained in:
@@ -37,22 +37,22 @@ class DeliveryAddressRow extends StatelessWidget {
|
||||
deliveryAddress.addressLine1!=""
|
||||
?
|
||||
line(context, deliveryAddress.addressLine1,
|
||||
iconData: Icons.location_on,color: Colors.black, fontSize: 16):SizedBox(),
|
||||
iconData: Icons.location_on,color: Colors.grey, fontSize: 16):SizedBox(),
|
||||
deliveryAddress.addressLine2!=""
|
||||
?
|
||||
line(
|
||||
context,
|
||||
deliveryAddress.addressLine2,color: Colors.black, fontSize: 16
|
||||
deliveryAddress.addressLine2,color: Colors.grey, fontSize: 16
|
||||
):SizedBox(),
|
||||
deliveryAddress.city!=""
|
||||
?
|
||||
line(
|
||||
context,
|
||||
deliveryAddress.city,color: Colors.black, fontSize: 16
|
||||
deliveryAddress.city,color: Colors.grey, fontSize: 16
|
||||
):SizedBox(),
|
||||
deliveryAddress.state!=""
|
||||
?
|
||||
line(context, deliveryAddress.state,color: Colors.black, fontSize: 16):SizedBox(),
|
||||
line(context, deliveryAddress.state,color: Colors.grey, fontSize: 16):SizedBox(),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -69,7 +69,7 @@ class DeliveryAddressRow extends StatelessWidget {
|
||||
? SizedBox(width: 40)
|
||||
: Padding(
|
||||
padding: const EdgeInsets.only(left: 8.0, right: 8),
|
||||
child: Icon(iconData, color: Colors.black38),
|
||||
child: Icon(iconData, color: Colors.grey),
|
||||
),
|
||||
Flexible(
|
||||
child: TextLocalStyle(
|
||||
|
||||
Reference in New Issue
Block a user