TextField( decoration: InputDecoration( contentPadding: EdgeInsets.all(0), border: InputBorder.none, hintText: hintText), ),
即:
在 InputDecoration里面加入
border: InputBorder.none
或者
border: OutlineInputBorder(
borderSide: BorderSide.none
)
两种方案有的有效,有的却是无效,不妨都可以试试
( 反正我的是没生效?? )
推荐文章:https://blog.csdn.net/qq_35547137/article/details/109367095
Flutter——TextField会出现文字向下偏移不会水平居中的问题
原文:https://www.cnblogs.com/liuzhi20101016/p/14862161.html