diff --git a/LabelStoreMax/lib/labelconfig.dart b/LabelStoreMax/lib/labelconfig.dart index 7829812..06eb1f9 100644 --- a/LabelStoreMax/lib/labelconfig.dart +++ b/LabelStoreMax/lib/labelconfig.dart @@ -16,7 +16,7 @@ import 'dart:ui'; Developer Notes SUPPORT EMAIL - support@woosignal.com - VERSION - 2.0.2 + VERSION - 2.0.3 https://woosignal.com */ diff --git a/LabelStoreMax/lib/widgets/woosignal_ui.dart b/LabelStoreMax/lib/widgets/woosignal_ui.dart index 033d97d..4791b7b 100644 --- a/LabelStoreMax/lib/widgets/woosignal_ui.dart +++ b/LabelStoreMax/lib/widgets/woosignal_ui.dart @@ -499,19 +499,20 @@ Widget wsCardCartItem(BuildContext context, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( - (cartLineItem.stockStatus == "outofstock" - ? trans(context, "Out of stock") - : trans(context, "In Stock")), - style: (cartLineItem.stockStatus == "outofstock" - ? Theme.of(context).textTheme.caption - : Theme.of(context) - .primaryTextTheme - .bodyText2)), + (cartLineItem.stockStatus == "outofstock" + ? trans(context, "Out of stock") + : trans(context, "In Stock")), + style: (cartLineItem.stockStatus == "outofstock" + ? Theme.of(context).textTheme.caption + : Theme.of(context).primaryTextTheme.bodyText2), + ), Text( - formatDoubleCurrency( - total: parseWcPrice(cartLineItem.total)), - style: Theme.of(context).primaryTextTheme.subtitle1, - textAlign: TextAlign.center) + formatDoubleCurrency( + total: parseWcPrice(cartLineItem.total), + ), + style: Theme.of(context).primaryTextTheme.subtitle1, + textAlign: TextAlign.center, + ) ], ), ],