How can I limit the TextField
can only input letter and spacing?
I had try:
TextField(
inputFormatters: [
RegexFormatter(regex: '[A-Za-z]+'),
],
),
But it not work.
How can I limit the TextField
can only input letter and spacing?
I had try:
TextField(
inputFormatters: [
RegexFormatter(regex: '[A-Za-z]+'),
],
),
But it not work.
5
Answers
Try this,
Try this:
For further understanding please refer
Restrict Special Character Input Flutter
Refer below code
Try this Regexp
Either of the 2 works.
or