Toggle navigation
Toggle navigation
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
Authored by
wuyanan
2024-08-22 17:50:20 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
60ec4c83c43a56043a649d06b776c7a94e65e6b8
60ec4c83
1 parent
776ea755
fix |> 修复竖屏直播横屏流,全屏后,直播标题与屏幕边缘间距不正确问题
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerInfoComponent.ets
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerUIComponent.ets
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerInfoComponent.ets
View file @
60ec4c8
...
...
@@ -20,7 +20,7 @@ export struct PlayerInfoComponent {
PlayerUIComponent({ playerController: this.playerController })
.margin({
// bottom: this.bottomSafeHeight + 'px',
top: this.topSafeHeight + 'px'
top:
this.isFullScreen ? 0 :
this.topSafeHeight + 'px'
})
}
.cachedCount(2)
...
...
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerUIComponent.ets
View file @
60ec4c8
...
...
@@ -59,7 +59,7 @@ export struct PlayerUIComponent {
}
this.isFullScreen = true
})
.visibility(
this.isSmall
? Visibility.Visible : Visibility.Hidden)
.visibility(
!this.isFullScreen
? Visibility.Visible : Visibility.Hidden)
.margin({ top: 301}) // 195 + 211 - 105
.position({ x: '96.8%' })
.markAnchor({ x: '96.8%' })
...
...
Please
register
or
login
to post a comment