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

Loading…
Cancel
Save