• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • pages
  • SettingPage.ets
  • desc:设置页面UI · 8d87b16a
    8d87b16a Browse Files
    xingzhaojie authored 2024-03-18 10:45:44 +0800
SettingPage.ets 341 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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%')
  }
}
/*

* */