Flutter Text文本有時候出現(xiàn)不居中的情況泡徙,添加StrutStyle屬性
關(guān)鍵代碼
strutStyle: StrutStyle(
fontSize: 11,
leading: 0,
height: 1.1,
// 1.1更居中
forceStrutHeight: true, // 關(guān)鍵屬性 強(qiáng)制改為文字高度
),
Container(
padding: EdgeInsets.only(right: 16),
child: Container(
padding: EdgeInsets.fromLTRB(4, 4, 4, 4),
color: Color(0xFFE6EDFF),
child: Text(
'負(fù)責(zé)人',
strutStyle: StrutStyle(
fontSize: 11,
leading: 0,
height: 1.1,
// 1.1更居中
forceStrutHeight: true, // 關(guān)鍵屬性 強(qiáng)制改為文字高度
),
style: TextStyle(fontSize: 11, color: Color(0xFF2F85F9)),
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.center,
),
),
)