中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何设置TextInput只能输入5位密码?
微信扫码分享
build() { Column() { TextInput({placeholder:"请输入密码"}) .type(InputType.Password) .maxLength(5) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) }