📅  最后修改于: 2022-03-11 14:48:04.598000             🧑  作者: Mango
OtpTextField(
numberOfFields: 5,
borderColor: Color(0xFF512DA8),
showFieldAsBox: true, //set to true to show as box or false to show as dash
onCodeChanged: (String code) {
//handle validation or checks here
},
onSubmit: (String verificationCode){
showDialog(
context: context,
builder: (context){
return AlertDialog(
title: Text("Verification Code"),
content: Text('Code entered is $verificationCode'),
);
}
);
}, // end onSubmit
),