Answers for "flutter to allow numbers only textfield"

0

flutter to allow numbers only textfield

TextField(
            keyboardType: TextInputType.number,
            inputFormatters: <TextInputFormatter>[
              FilteringTextInputFormatter.digitsOnly
            ], // Only numbers can be entered
          ),
Posted by: Guest on August-12-2021
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 "flutter to allow numbers only textfield"

Browse Popular Code Answers by Language