• 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
  • ..
  • view
  • PlayerTimeSeekView.ets
  • 增加视频拖动进度条展示 · fe7f9237
    fe7f9237 Browse Files
    zhenghy authored 2024-04-24 10:29:16 +0800
PlayerTimeSeekView.ets 249 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
@Preview
@Component
export struct PlayerTimeSeekView {
  build() {
    Row() {
      Text() {
        Span('00:06')
        Span('/')
        Span('00:06')
      }
      .fontSize(24)
      .fontColor(Color.White)
      .fontWeight(600)

    }
  }
}