TextFormFied validate spacing

Issue I have TextFormField widget with username TextFormField( controller: usernameController, validator: (value) { if (value!.isEmpty) { return ‘username is empty’; } if (value.length <= 4) { return ‘passord id too short, min 4 characters’; } return null; }, decoration: const

Continue reading

flutter textinputformatter is not working

Issue I want to implement textinputformatter in textformfield I tried code snippet from topic below to format incoming numeric text to fit the format of (###) ###-#### ##, but it’s not working (class _UsNumberTextInputFormatter extends TextInputFormatter) https://medium.com/@rubensdemelo/flutter-formatting-textfield-with-textinputformatter-6caba78668e5 Can you tell

Continue reading