• 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
  • SearchPage.ets
  • desc:3.0 搜索主页(竖滚动,热门搜索,搜索历史) · 64b96bc9
    64b96bc9 Browse Files
    yangchenggong1_wd authored 2024-04-10 13:38:27 +0800
SearchPage.ets 181 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
import { SearchComponent } from 'wdComponent'

@Entry
@Component
struct SearchPage {

  build() {
    Column(){
      SearchComponent()
    }.height('100%')
    .width('100%')
  }
}