在HarmonyOS NEXT开发中TextInput密码输入如何自定义样式?

在HarmonyOS NEXT开发中TextInput密码输入如何自定义样式?

阅读 590
1 个回答

参考代码如下所示:

Column() { 
  TextInput({placeholder: "请输入密码"}).margin({top:100, left: '10%'}).width('80%') 
    .type(InputType.Password) 
    .backgroundColor(Color.White) 
    .showPasswordIcon(false) 
  Line().height(0.5).width('80%').margin({left: '10%'}) 
    .backgroundColor(Color.Gray) 
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题