SettingPage.ets
341 Bytes
import ArrayList from '@ohos.util.ArrayList'
import { MineSettingComponent } from 'wdComponent';
@Entry
@Component
struct SettingPage {
@State message: string = 'Hello World 02'
build() {
Column() {
MineSettingComponent()
}.setFullWidth()
}
// 私有方法
@Styles setFullWidth(){
.width('100%')
}
}
/*
* */