我正在尝试让文本在容器中居中。无论我做什么,文本都不会居中。下面是我的代码:
Container(
alignment: Alignment.center,
width: 47,
height: 47,
decoration: BoxDecoration(color: Colors.grey, shape: BoxShape.circle),
child: Text(
firstName == null && lastName == null
? 'UU'
: '${firstName[0]}${lastName[0]}'.toUpperCase(),
style: TextStyle(
fontFamily: 'AvenirLTStd-Roman',
fontSize: 18,
color: Colors.white,
fontWeight: FontWeight.w300,
),
textAlign: TextAlign.center,
),
)
屏幕是这样生成的:
如果您注意到文本没有居中,容器的底部似乎比顶部有更多的“自由空间”。当我在部件检查器中打开它并突出显示文本部件时,我看到了这样的内容:
有人知道我在这里遗漏了什么吗?为什么文本没有居中?我希望文本在容器的中间,顶部和底部之间有相等的空间。
最新消息:
使用“居中”Widget没有帮助:
5条答案
按热度按时间9vw9lbht1#
试着用中心包裹你的容器。中心-〉容器
polhcujo2#
尝试
kognpnkq3#
试试这样
ymzxtsji4#
使用
Center()
自动换行。或者使用如下mediaquery:oknwwptz5#
请删除或更改fontFamily,它将修复此问题。