update shipment type
This commit is contained in:
@@ -130,7 +130,7 @@ class _CustomerListState extends State<CustomerList> {
|
||||
),
|
||||
customer.status == user_invited_status
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(right: 10.0),
|
||||
padding: const EdgeInsets.only(right: 10),
|
||||
child: SizedBox(
|
||||
height: 30,
|
||||
child: TextButton(
|
||||
@@ -182,14 +182,14 @@ class _CustomerListState extends State<CustomerList> {
|
||||
decoration:
|
||||
BoxDecoration(shape: BoxShape.circle, color: secondaryColor),
|
||||
child: Text(customer.getFcsUnseenCount,
|
||||
style: TextStyle(color: Colors.white)),
|
||||
style: TextStyle(color: Colors.white, fontSize: 12)),
|
||||
)
|
||||
: Container();
|
||||
}
|
||||
|
||||
Widget _status(String status) {
|
||||
return user_requested_status == status || user_disabled_status == status
|
||||
? Text(status, style: TextStyle(color: primaryColor, fontSize: 14))
|
||||
? Text(status, style: TextStyle(color: primaryColor, fontSize: 12))
|
||||
: Container();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user