有什么方法可以增加文本字段标签的宽度,从而避免出现省略号(...)?
标签始终小于文本字段区域。
我想改善这一点的唯一方法是减少内容填充的“开始”和“结束”,但是效果很小。
child: TextField(
decoration: InputDecoration(
labelText: "em Dólares",
labelStyle: TextStyle(color: Colors.amber[600],
fontStyle: FontStyle.italic),
border: OutlineInputBorder(),
fillColor: Colors.black12,
filled: true,
contentPadding: EdgeInsetsDirectional.only(top: 20.0, bottom: 20.0, start: 5.0, end: 5.0), //<-- weak solution
prefixText: "US\$"),
style: TextStyle(color: Colors.amber[600], fontSize: 20.0),
)
Ps:我在代码中隐藏了文本字段中一些不必要的属性,例如控制器,inputFormatters,keyboardType。
答案 0 :(得分:0)
要更改(减少/增加)标签的字体大小,可以在fontSize:
中使用TextStyle()
属性。只需在标签上添加字体大小即可。