在设置 textAlign: TextAlign.left
后发现 Text
并没有像预期那样 文字居左
设置 backgroundColor
后发现 Text
的宽度很小,并不是等于容器宽度
请问 如何让 flutter Text
的宽度等于容器宽度呢?
Container(
margin: EdgeInsets.only(top: 10, bottom: 10),
child: Text(
this.title,
textAlign: TextAlign.left,
style: TextStyle(
color: Color(0xFFFFFFFF), backgroundColor: Colors.red),
),
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…