phase3: improve arg-bang handler (allow ! in chains, ; terminator). 574->440
This commit is contained in:
@@ -80,7 +80,7 @@ class MobileProductItemState extends State<MobileProductItem> {
|
||||
),
|
||||
),
|
||||
new Text(
|
||||
widget.product!.description,
|
||||
widget.product!.description!,
|
||||
// overflow: kIsWeb ? null : TextOverflow.ellipsis,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
maxLines: 2,
|
||||
@@ -110,7 +110,7 @@ class MobileProductItemState extends State<MobileProductItem> {
|
||||
textBaseline: TextBaseline.alphabetic,
|
||||
children: <Widget>[
|
||||
ShowPrice(
|
||||
widget.product!.price,
|
||||
widget.product!.price!,
|
||||
regularPrice: widget.product!.regularPrice,
|
||||
currencySign: '\$',
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user