Browse Source

ios,点单页名字长度限制

new_revision_app
fmk 2 years ago
parent
commit
fb6610d387
  1. 6
      lib/store/store_view/shop_goods.dart

6
lib/store/store_view/shop_goods.dart

@ -121,7 +121,7 @@ class _ShopGoods extends State<ShopGoods> {
fadeSrc: "assets/image/default_1.webp",
),
SizedBox(
width: 10,
width: 10.w,
),
Expanded(
child: Column(
@ -137,7 +137,7 @@ class _ShopGoods extends State<ShopGoods> {
? widget.productListBean.productName
: widget.shoppingCartSkuItemListBean.productName,
overflow: TextOverflow.ellipsis,
maxLines: 2,
maxLines: 1,
style: TextStyle(
color: Colors.black,
fontSize: 13.sp,
@ -185,7 +185,7 @@ class _ShopGoods extends State<ShopGoods> {
),
),
SizedBox(
width: 10,
width: 10.w,
),
],
)),

Loading…
Cancel
Save