add pinlogin_page and prepare profile
This commit is contained in:
@@ -26,26 +26,35 @@ class DeliveryAddressRow extends StatelessWidget {
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
deliveryAddress.fullName!=""
|
||||
?
|
||||
line(context, deliveryAddress.fullName,
|
||||
iconData: MaterialCommunityIcons.account,
|
||||
color: primaryColor,
|
||||
fontSize: 16),
|
||||
color: Colors.black,
|
||||
fontSize: 16):SizedBox(),
|
||||
deliveryAddress.phoneNumber!=""
|
||||
?
|
||||
line(context, deliveryAddress.phoneNumber,
|
||||
iconData: Icons.phone, color: primaryColor, fontSize: 16),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
iconData: Icons.phone, color: Colors.black, fontSize: 16):SizedBox(),
|
||||
deliveryAddress.addressLine1!=""
|
||||
?
|
||||
line(context, deliveryAddress.addressLine1,
|
||||
iconData: Icons.location_on),
|
||||
iconData: Icons.location_on,color: Colors.black, fontSize: 16):SizedBox(),
|
||||
deliveryAddress.addressLine2!=""
|
||||
?
|
||||
line(
|
||||
context,
|
||||
deliveryAddress.addressLine2,
|
||||
),
|
||||
deliveryAddress.addressLine2,color: Colors.black, fontSize: 16
|
||||
):SizedBox(),
|
||||
deliveryAddress.city!=""
|
||||
?
|
||||
line(
|
||||
context,
|
||||
deliveryAddress.city,
|
||||
),
|
||||
line(context, deliveryAddress.state),
|
||||
deliveryAddress.city,color: Colors.black, fontSize: 16
|
||||
):SizedBox(),
|
||||
deliveryAddress.state!=""
|
||||
?
|
||||
line(context, deliveryAddress.state,color: Colors.black, fontSize: 16):SizedBox(),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user