Closed
Description
I'm trying to copy paste the verification code into the Verification but it is only able to paste the first 2 digits. Does anyone know how to paste all 6 digits? Thanks in advance!
Below is my code:
VerificationCode(
textStyle: TextStyle(fontSize: 21.0, color: Color(0xff0074e0)),
underlineColor: Color(0xff0074e0),
keyboardType: TextInputType.number,
length: 6,
// clearAll is NOT required, you can delete it
// takes any widget, so you can implement your design
onCompleted: (String value) {
setState(() {
_code = value;
});
},
onEditing: (bool value) {
setState(() {
_onEditing = value;
});
},
),
Metadata
Metadata
Assignees
Labels
No labels