TextFieldBuilder is a customised Text Form Field widget along with the label for the text field.
Features
prefixText
: Developers can give a prefix Text for the text field placeholder (Eg. +91, ₹ )isRequired
: Developers can make a text field mandatory / non-mandatory for the users based on theisRequired
value as true/falsesuffixIcon
: Used to create an icon like eye button on the text field.requiredMessage
: Customise your error validation message usingrequiredMessage
variableobscureText
: Used to make the text masked for the usersmaxLength
: Used to specify the max characters to be entered in the text fieldisDisabled
: IfisDisabled
is true , then the text field becomes read-only (non-editable).
Widgets used from Flutter Material Library
SL No | Widgets | Description |
---|---|---|
1 |
| Text Field |
2 |
| Text Box Decoration |
3 |
| Text field Label |
Files Path :
Primary Files : https://github.com/misdwss/punjab-mgramseva/blob/master/frontend/mgramseva/lib/widgets/TextFieldBuilder.dart
Add Comment