输入框获取焦点

@Entry
@Component
struct Test {
  build() {
    Row() {
      Column({ space: 5 }) {
        //Text("自定义样式").customStyles(20,Color.Yellow).backgroundColor("#36D").padding(10).borderRadius(30)
        TextInput({
          placeholder: "获取焦点"
        }).borderColor(Color.Yellow)
        Button("Button")
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
          .stateStyles({
            normal: {
              .backgroundColor(Color.Red)
            },
            focused: {
              .backgroundColor(Color.Blue)
            },pressed:{
              .backgroundColor(Color.Pink)
            }
          })
        // Image($r("app.media.logo")).height(100)
      }.width("100%").alignItems(HorizontalAlign.Center)
    }.height("100%")
  }
}

输入框获取焦点_第1张图片

你可能感兴趣的:(harmonyos,harmonyos)