我想在InputDecoration labelText中添加星号并更改其颜色(如红色),以便用户轻松理解此字段是必需的。
TextField(
autofocus: true,
controller: _nameCtrlr,
keyboardType: TextInputType.text,
decoration: InputDecoration(
labelText: "Name *",
))
此图像的预期结果 Sample Image
答案 0 :(得分:0)
是的,你可以做到的。
TextField(
autofocus: true,
controller: _nameCtrlr,
keyboardType: TextInputType.text,
decoration: InputDecoration(
labelText: "Name \*",
))
“ \”符号将帮助编译器区分星号(*)和乘法。