19 lines
319 B
Plaintext
19 lines
319 B
Plaintext
|
|
|
|
@Entry
|
|
@ComponentV2
|
|
struct SWLine {
|
|
|
|
build() {
|
|
Column() {
|
|
Row({ space: 20 }) {
|
|
Blank().width(8);
|
|
}
|
|
.justifyContent(FlexAlign.SpaceBetween)
|
|
.height(56)
|
|
.width('100%')
|
|
.padding({ left: 10 })
|
|
.backgroundColor('#f2f2f2');
|
|
}.width('100%').height('100%');
|
|
}
|
|
} |