flutter_verification_code
flutter_verification_code copied to clipboard
A Flutter package that help you create a verification input.
To be able to change border radius of full border Text form field By adding fullBorderEnabledDecoration and fullBorderFocusedDecoration as OutlineInputBorder properties to verification code
The dot of the secure text is too small
I can´t use fillColor, if I change the library add filled true in the InputDecoration , you solved your problem, Can i help me with this?
` VerificationCode( length: 3, textStyle: TextStyle(fontSize: 20, color: Colors.black), underlineColor: Colors.black, keyboardType: TextInputType.number, underlineUnfocusedColor: Colors.black, onCompleted: (value) { setState(() { _code = value; }); }, onEditing: (value) {}, ),`
Hi, I wish to be able to customize the length of the input text for each number. Great job by the way.
RawKeyboardListener is deprecated and changed with Focus widget. also based on this changes, some of RawKeyboardListener property like onKey are changed.
I wish that i could custom the shape of the verification instead keep it is square after i add fullBorder