add to cart fix

merge-update-with-lab-changes
hussam al-habibeh 5 years ago
parent 75ef3fde80
commit a8fb7152b1

@ -92,8 +92,9 @@ class BottomNavPharmacyItem extends StatelessWidget {
title,
textAlign: TextAlign.center,
color: currentIndex == index ? Colors.grey : Colors.grey,
fontWeight:
currentIndex == index ? FontWeight.bold : FontWeight.w400,
fontWeight: currentIndex == index
? FontWeight.bold
: FontWeight.w400,
fontSize: currentIndex == index ? 13 : 11,
),
],
@ -112,11 +113,16 @@ class BottomNavPharmacyItem extends StatelessWidget {
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(15),
),
padding: EdgeInsets.only(left: 7, right: 6.5),
height: 18,
child: Center(child: Texts(orderPreviewViewModel.cartResponse.quantityCount.toString(), style: "caption", medium: true, color: Colors.white,)),
child: Center(
child: Texts(
orderPreviewViewModel.cartResponse.quantityCount.toString(),
style: "caption",
medium: true,
color: Colors.white,
)),
),
)
],

Loading…
Cancel
Save