enter image description here
我怎么能中心我的文字“......”这样,谢谢。对齐或中心部件或textAlign不工作,请帮助我enter image description here
Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Icon(
Icons.visibility_off_outlined,
color: Colors.black
.withOpacity(0.25),
),
Text(
"..........",
textAlign: TextAlign.center,
style: TextStyle(
color: Color(0xFF0E5699),
fontSize: 32,
fontWeight: FontWeight.w700,
),
),
],
),
字符串
像图标一样将此文本垂直居中
2条答案
按热度按时间kadbb4591#
你可以试试这个,这个对我有用
字符串
0ve6wy6x2#
你的代码很好,已经垂直居中了。因为你使用了“.”,所以圆点会在底部。如果你想创建一个中心圆点。使用bullet代替你可以使用
\u2022
来创建一个Unicode项目符号。字符串
但是我想知道你的问题的目的是什么。如果你试图创建一个
TextField
用于密码输入目的,你可以在这里检查How to show/hide password in TextFormField?