16 lines
305 B
Plaintext
16 lines
305 B
Plaintext
@Component
|
|
export struct HomeContent {
|
|
build() {
|
|
Column() {
|
|
Text('首页')
|
|
.fontSize(20)
|
|
.fontWeight(FontWeight.Bold)
|
|
.fontColor('#333333')
|
|
}
|
|
.width('100%')
|
|
.height('100%')
|
|
.justifyContent(FlexAlign.Center)
|
|
.alignItems(HorizontalAlign.Center)
|
|
}
|
|
}
|