flutter

flutter 隐藏 TextField 右下方出现的字符计数

2019-10-17  本文已影响0人  space77

flutter 隐藏 TextField在限制maxLength时,右下方出现的字符计数

如下图:


image
TextField(
    maxLength: 11,
    decoration: InputDecoration(
      labelText: '请输入您的手机号',
    ),
),

解决:
在 InputDecoration 里添加 counterText 键, 值为空

TextField(
  maxLength: 11,
  decoration: InputDecoration(
    counterText: '', 
    labelText: '请输入您的手机号',
  ),
),

效果:


image
上一篇 下一篇

猜你喜欢

热点阅读