Flutter 在每 3 个数字文本字段输入后添加破折号,并限制数字输入的数量

发布于 2025-01-11 07:36:13 字数 107 浏览 1 评论 0原文

我正在寻找一种方法,在 flutter textformfield 中输入每个数字后添加 ( - ) 并将输入数量限制为 9 个数字。例如 145-123-234。如果有人可以提供帮助,我将不胜感激。

I'm looking for a way to add ( - ) after every number input in flutter textformfield and to limit the number of input to just 9 figure. For example 145-123-234. I will appreciate if anyone can help with this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烂柯人 2025-01-18 07:36:13

您可以使用掩码文本格式化程序包示例用法:

 var maskFormatter = new MaskTextInputFormatter(
      mask: '+# (###) ###-##-##', filter: {"#": RegExp(r'[0-9]')});
      
   TextField(
                      inputFormatters: [ maskFormatter],
                      autoFocus: false,
                      inputType: TextInputType.phone,
                      inputAction: TextInputAction.done,
                      },
                    ),

You can use mask text formatter package sample usage:

 var maskFormatter = new MaskTextInputFormatter(
      mask: '+# (###) ###-##-##', filter: {"#": RegExp(r'[0-9]')});
      
   TextField(
                      inputFormatters: [ maskFormatter],
                      autoFocus: false,
                      inputType: TextInputType.phone,
                      inputAction: TextInputAction.done,
                      },
                    ),

梅倚清风 2025-01-18 07:36:13

我们输入格式化程序:

inputFormatters:[ FilteringTextInputFormatter.allow(RegExp('[0-9,-]')),
长度限制文本输入格式器(9),
],

这可能会帮助您输入的位数可以正常工作,并且 3 之后的破折号的正则表达式将根据您的情况发生变化,因为您的情况可能会发生变化。

us input formatters:

inputFormatters: [ FilteringTextInputFormatter.allow(RegExp('[0-9,-]')),
LengthLimitingTextInputFormatter(9),
],

this may help you number of input digits will work fine and regex expression for dash after 3 will change in your case in your case may change.

笔落惊风雨 2025-01-18 07:36:13

所以我安装了这个 flutter_masked_text

并将库导入到我的输入页面,更改了我的 TextFormField 控制器到 MaskedTextController _controllerCode = MaskedTextController(mask: '000-000-000'); 然后解析_controllerCodeTextFormField 中的 controller,最后我的 Widget 如下所示:

  MaskedTextController _controller = MaskedTextController(mask: '000-000-000');

  @override
  Widget build(BuildContext context) {
    return TextField(
      controller: _controller,
      decoration: InputDecoration(
        hintText: 'e.g. 101-234-190',
      ),
    );
  }
}```

So I install this flutter_masked_text

And imported the library to my input page, changed my TextFormField controller to MaskedTextController _controllerCode = MaskedTextController(mask: '000-000-000'); then parse _controllerCode to controller in the TextFormField and finally my Widget looks like below:

  MaskedTextController _controller = MaskedTextController(mask: '000-000-000');

  @override
  Widget build(BuildContext context) {
    return TextField(
      controller: _controller,
      decoration: InputDecoration(
        hintText: 'e.g. 101-234-190',
      ),
    );
  }
}```
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文