Answers for "how to allow only characters and numbers in textfield flutter"

0

how to allow only characters and numbers in textfield flutter

inputFormatters: [new  WhitelistingTextInputFormatter(RegExp("[a-zA-Z0-9]")),],
Posted by: Guest on June-04-2021

Code answers related to "how to allow only characters and numbers in textfield flutter"

Browse Popular Code Answers by Language