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
王士厅
2024-09-27 17:07:41 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a5bd1e69d5994d807684c70ddd078850c4909dec
a5bd1e69
1 parent
578e5ef6
fix: 视频详情页面,对简介上滑时,没有对号主名称进行固定
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/DetailDialog.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/DetailDialog.ets
View file @
a5bd1e6
...
...
@@ -13,17 +13,19 @@ export struct DetailDialog {
build() {
Column() {
Column() {
if (this.name) {
Text(`@${this.name}`)
.fontColor(Color.White)
.fontSize(14)
.fontWeight(600)
.lineHeight(17)
.margin({ top: 8 })
}
}
.alignItems(HorizontalAlign.Start)
Scroll() {
Column() {
if (this.name) {
Text(`@${this.name}`)
.fontColor(Color.White)
.fontSize(14)
.fontWeight(600)
.lineHeight(17)
.margin({ top: 8 })
}
if (this.title) {
Text(this.title)
.fontColor(Color.White)
...
...
@@ -55,7 +57,9 @@ export struct DetailDialog {
}
.scrollBar(BarState.Off) //安卓不显示滚动条
.height(200)
.constraintSize({
maxHeight: 200
})
Row() {
Image($r("app.media.icon_arrow_left_white"))
...
...
Please
register
or
login
to post a comment