美文网首页flutter
flutter 隐藏 TextField 右下方出现的字符计数

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

作者: space77 | 来源:发表于2019-10-17 10:19 被阅读0次

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

如下图:


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

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

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

效果:


image

相关文章

网友评论

    本文标题:flutter 隐藏 TextField 右下方出现的字符计数

    本文链接:https://www.haomeiwen.com/subject/kjhmmctx.html