就是加一个不可见的空格
replaceAll('', '\u200b')
代码
Text(
'${(model?.price ?? '')}'.replaceAll('', '\u200b'),
style: TextStyle(
fontSize: SAdapt.size(20),
color: getBlackColor(),
fontFamily: getSegoeUIBold(),
fontWeight: FontWeight.bold,
),
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
网友评论