add pinlogin_page and prepare profile

This commit is contained in:
sma
2024-02-14 16:54:38 +06:30
parent 7f3492fdf9
commit a66ecff159
6 changed files with 240 additions and 47 deletions

View File

@@ -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(),
],
),
),