harmony-template/entry/src/ohosTest/ets/testability/pages/Index.ets
cheliangzhao 1f3bccaa3d 🎉 Init: init
2023-10-08 14:24:05 +08:00

17 lines
267 B
Plaintext

@Entry
@Component
struct Index {
@State message: string = 'Hello World';
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
}
.width('100%')
}
.height('100%')
}
}