@Entry
@Component
struct Index {@State message: string = 'Hello World';build() {Row() {Column() {Text(this.message).fontSize(50)//字体.fontWeight(FontWeight.Bold)//字体粗细Button('点我').fontColor(Color.White).fontSize(40).width(150).height(70).backgroundColor(Color.Gray).type(ButtonType.Capsule).onClick(() => {this.message = 'Hello ArkTS'})}}}
}