• 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
  • DetailPlayHLivePage.ets
  • feat:1)直播详情底部评论模块添加 · d6d3477b
    d6d3477b Browse Files
    wangyujian_wd authored 2024-04-18 17:30:16 +0800
DetailPlayHLivePage.ets 409 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 23 24 25 26 27
import { TabComponent } from '../widgets/details/TabComponent';
import { TopPlayComponent } from '../widgets/details/video/TopPlayComponet';


@Component
export struct DetailPlayHLivePage {
  aboutToAppear(): void {

  }

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

  onPageShow(): void {

  }

  aboutToDisappear(): void {

  }
}