Skip to content

Commit d403225

Browse files
author
WooSignal
committed
small tweak to config
1 parent 12f2b41 commit d403225

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

LabelStoreMax/lib/labelconfig.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import 'dart:ui';
1616
Developer Notes
1717
1818
SUPPORT EMAIL - [email protected]
19-
VERSION - 2.0.2
19+
VERSION - 2.0.3
2020
https://woosignal.com
2121
*/
2222

LabelStoreMax/lib/widgets/woosignal_ui.dart

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -499,19 +499,20 @@ Widget wsCardCartItem(BuildContext context,
499499
mainAxisAlignment: MainAxisAlignment.spaceBetween,
500500
children: <Widget>[
501501
Text(
502-
(cartLineItem.stockStatus == "outofstock"
503-
? trans(context, "Out of stock")
504-
: trans(context, "In Stock")),
505-
style: (cartLineItem.stockStatus == "outofstock"
506-
? Theme.of(context).textTheme.caption
507-
: Theme.of(context)
508-
.primaryTextTheme
509-
.bodyText2)),
502+
(cartLineItem.stockStatus == "outofstock"
503+
? trans(context, "Out of stock")
504+
: trans(context, "In Stock")),
505+
style: (cartLineItem.stockStatus == "outofstock"
506+
? Theme.of(context).textTheme.caption
507+
: Theme.of(context).primaryTextTheme.bodyText2),
508+
),
510509
Text(
511-
formatDoubleCurrency(
512-
total: parseWcPrice(cartLineItem.total)),
513-
style: Theme.of(context).primaryTextTheme.subtitle1,
514-
textAlign: TextAlign.center)
510+
formatDoubleCurrency(
511+
total: parseWcPrice(cartLineItem.total),
512+
),
513+
style: Theme.of(context).primaryTextTheme.subtitle1,
514+
textAlign: TextAlign.center,
515+
)
515516
],
516517
),
517518
],

0 commit comments

Comments
 (0)