| 1234567891011121314151617181920 |
- @Entry
- @Component
- struct Index {
- @State message: string = 'Hello World';
- build() {
- Row() {
- Column() {
- Text(this.message)
- .fontSize($r('app.float.page_text_font_size'))
- .fontWeight(FontWeight.Bold)
- .onClick(() => {
- this.message = 'Welcome';
- })
- }
- .width('100%')
- }
- .height('100%')
- }
- }
|