鸿蒙开发案例002

发布时间:2024年01月24日

1、目标需求

界面有增大字体按钮,每次点击增大字体按钮,“Hello ArkTS”都会变大

2、源代码

@Entry
@Component
struct Page {
  textValue: string = 'Hello ArkTS'
  @State textSize: number = 50

  myClick():void{
    this.textSize += 4
  }

  build() {
    Row() {
      Column() {
        // @ts-ignore
        Text(this.textValue)
          .fontSize(this.textSize)
          .fontWeight(FontWeight.Bold)
          .fontColor(Color.Red)

        Button("点击增大哦")
          .height(50)
          .width(100)
          .margin({top:20})
          .onClick(this.myClick.bind(this))
      }
      .width('100%')
    }
    .height('100%')
  }
}

3、运行效果

在这里插入图片描述

4、知识点总结

文章来源:https://blog.csdn.net/qq_42215417/article/details/135833394
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。