flutter 中的 OTP 页面
我怎样才能在flutter中制作这样的otp页面,请帮助我并分享特定照片的完整代码,谢谢
< img src="https://i.sstatic.net/SVAIR.jpg" alt="在此处输入图像描述">
How can i make otp page like this in flutter, kindly help me and share whole code for the specific photo thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 pubspec.yaml 中添加以下包
在 dart 文件中添加以下导入行
将以下代码添加到正文
< img src="https://i.sstatic.net/2GaO4m.png" alt="在此处输入图像描述">
Add Following Package in pubspec.yaml
Add the following import line in your dart file
Add the following code to your body
或者,对于 otp 字段,您可以使用 FlutterOtpField 包,它提供
inputDecoration
属性。使用 inputDecoration,您可以将自己的设计设置为 OTP 文本字段。例子:
Alternatively for otp fields you can use FlutterOtpField package where it provides
inputDecoration
property. With inputDecoration you can set your own design to OTP textFields.Example: