Index.ets 378 B

1234567891011121314151617181920
  1. @Entry
  2. @Component
  3. struct Index {
  4. @State message: string = 'Hello World';
  5. build() {
  6. Row() {
  7. Column() {
  8. Text(this.message)
  9. .fontSize($r('app.float.page_text_font_size'))
  10. .fontWeight(FontWeight.Bold)
  11. .onClick(() => {
  12. this.message = 'Welcome';
  13. })
  14. }
  15. .width('100%')
  16. }
  17. .height('100%')
  18. }
  19. }