Flutter TextField 去掉下滑线和底部字符数计数

Widget getWidget() {
  return TextField(
    decoration: InputDecoration(
      border: InputBorder.none, // 去掉下滑线
      counterText: '',  // 去除输入框底部的字符计数
    ),
  );
}

搞定 !

发布了179 篇原创文章 · 获赞 91 · 访问量 33万+

猜你喜欢

转载自blog.csdn.net/haha223545/article/details/102822503