如何使otp页面像这样轻飘飘,请帮助我,并分享整个代码为具体的照片谢谢。
发布于 2022-03-05 15:55:02
在pubspec.yaml中添加以下包
otp_text_field:
git:
url: https://github.com/AkashMore7427/OTPTextField
在省道文件中添加以下导入行
import 'package:otp_text_field/otp_field.dart';
import 'package:otp_text_field/otp_field_style.dart';
import 'package:otp_text_field/style.dart';
将以下代码添加到您的体内
Column(children: [
// Image.network("Add Image Link"),
Text(
"Enter verification Code",
),
Text(
"Code sent to info@gmail.com",
),
OTPTextField(
length: 4,
width: MediaQuery.of(context).size.width,
fieldWidth: 50,
style: TextStyle(fontSize: 17),
textFieldAlignment: MainAxisAlignment.spaceAround,
onCompleted: (pin) {
print("Completed: " + pin);
},
otpFieldStyle: OtpFieldStyle(
borderColor: Colors.black,
)),
Text("Resend in 0:45"),
//Add Button Widget Here
]),
https://stackoverflow.com/questions/71363251
复制相似问题