网络建站步骤,春节网站设计,如何规划设计一个网站,企业网站备案资料填写单实现要求#xff1a; 在账户和密码的输入框输入账号或密码时#xff0c;提交按钮下方同步出现输入的账户和密码 Entry
Component
struct login {State username:string State password:string build() {Column(){// 图标Image($r(app.media.app_icon)).width(100).height(… 实现要求 在账户和密码的输入框输入账号或密码时提交按钮下方同步出现输入的账户和密码 Entry
Component
struct login {State username:string State password:string build() {Column(){// 图标Image($r(app.media.app_icon)).width(100).height(100).margin({top:50})// 输入框-账户TextInput({placeholder:请输入账户}).type(InputType.Normal).margin({top:30}).width(300).onChange((e){console.log(e)this.username e})// 输入框-密码TextInput({placeholder:请输入账户}).type(InputType.Normal).margin({top:10}).width(300).onChange((e){console.log(e)this.password e})// 提交按钮Button(提交,{type:ButtonType.Capsule}).width(200).margin({top:30})Text(this.username)Text(this.password)}.width(100%).height(100%)}
}