Files
HMDemo/common_ui/src/main/ets/pages/layout/LinearLayoutPage.ets
2024-04-07 20:10:10 +08:00

16 lines
244 B
Plaintext

@Entry
@Component
struct LinearLayoutPage {
@State space: number = 10;
build() {
Column({ space: this.space }) {
Text(`space:${this.space}`)
Row().width('90%')
Row().width('90%')
Row().width('90%')
}
}
}