我在我的文本窗口小部件之间使用了Expanded(Sizedbox()),然后发生了以下情况:
我怎样才能避免我的经文发生这样的事呢?
这是我的代码:
Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
child: Text(
'Awaiting Deposit',
style: regularTextStyle.copyWith(fontSize: 12),
textAlign: TextAlign.center,
maxLines: 2,
),
),
Expanded(child: SizedBox()),
Expanded(
child: Text(
'Awaiting Confirmation',
style: regularTextStyle.copyWith(fontSize: 12),
textAlign: TextAlign.center,
maxLines: 2,
),
),
Expanded(child: SizedBox()),
Expanded(
child: Text(
'Perform Exchange',
style: regularTextStyle.copyWith(fontSize: 12),
textAlign: TextAlign.center,
maxLines: 2,
),
),
Expanded(child: SizedBox()),
Expanded(
child: Text(
'Done',
style: regularTextStyle.copyWith(fontSize: 12),
textAlign: TextAlign.center,
maxLines: 2,
),
),
],
),
)
当我在我的文本小部件之间使用Expanded(Sizedbox())时,我的文本dosent显示正确示例:等待存款显示等待中
2条答案
按热度按时间cdmah0mi1#
尝试https://dartpad.dev/?id=edbb1d02d20b7d7d22168782b224a6c8调整右侧大小以模拟小屏幕
代替扩展使用的装配盒,\n如
laawzig22#
在文本小部件中使用softWrap:true。