entry/src/main/ets/
entry/src/main/resources/
entry/src/main/config.json
@Entry @Component struct Index { @State message: string = 'Hello World' build() { Column() { Text(this.message) .fontSize(50) .fontWeight(FontWeight.Bold) .margin({ top: 100 }) Button('点击测试') .margin({ top: 50 }) .onClick(() => { this.message = '欢迎使用鸿蒙应用' }) } .width('100%') .height('100%') } }
提交