我想知道是否有可能最好仅使用InputDecoration小部件在TextFormField上显示底部边框,因为我需要使用特定于它的某些属性(hintText等)。如果使用InputDecoration小部件无法做到这一点,那么对此的解决方法也将不胜感激。
答案 0 :(得分:0)
TextFormField(
decoration: InputDecoration(
hintText: 'Hint',
border: UnderlineInputBorder(
borderSide: BorderSide(
color: Colors.grey
)
)
),
);