• 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
  • fix:bug[17172] 取消搜索,退出搜索页的动效不对 · 4584570c
    4584570c Browse Files
    yangchenggong1_wd authored 2024-05-14 09:12:23 +0800
SearchPage.ets 249 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
import { SearchComponent } from '../components/search/SearchComponent'

@Entry
@Component
struct SearchPage {
  build() {
    Column(){
      SearchComponent()
    }.height('100%')
    .width('100%')
    .backgroundColor($r('app.color.white'))
  }
}