|
@@ -2279,10 +2279,6 @@ export struct FindView {
|
|
|
.layoutWeight(1)
|
|
.layoutWeight(1)
|
|
|
.height(35)
|
|
.height(35)
|
|
|
.maxLength(40)
|
|
.maxLength(40)
|
|
|
- .backgroundColor(this.getDiscoverySearchBackgroundColor())
|
|
|
|
|
- .backgroundBlurStyle(this.shouldUseDiscoveryImageBackgroundOverlay()
|
|
|
|
|
- ? BlurStyle.BACKGROUND_THICK
|
|
|
|
|
- : BlurStyle.NONE)
|
|
|
|
|
.placeholderColor(this.getSecondaryTextColor())
|
|
.placeholderColor(this.getSecondaryTextColor())
|
|
|
.placeholderFont({ size: 14, weight: 400 })
|
|
.placeholderFont({ size: 14, weight: 400 })
|
|
|
.textFont({ size: 14, weight: 400 })
|
|
.textFont({ size: 14, weight: 400 })
|
|
@@ -2317,10 +2313,6 @@ export struct FindView {
|
|
|
}
|
|
}
|
|
|
.padding({ top: this.topSafeHeight + 10, left: 10, right: 10, bottom: 6 })
|
|
.padding({ top: this.topSafeHeight + 10, left: 10, right: 10, bottom: 6 })
|
|
|
.width('100%')
|
|
.width('100%')
|
|
|
- .backgroundColor(this.getDiscoveryTopBarBackgroundColor())
|
|
|
|
|
- .backgroundBlurStyle(this.shouldUseDiscoveryImageBackgroundOverlay() && (this.isSearchMode || this.isAlbumMode)
|
|
|
|
|
- ? BlurStyle.BACKGROUND_ULTRA_THICK
|
|
|
|
|
- : BlurStyle.NONE)
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Builder
|
|
@Builder
|
|
@@ -2554,7 +2546,7 @@ export struct FindView {
|
|
|
}
|
|
}
|
|
|
.width('100%')
|
|
.width('100%')
|
|
|
.height('100%')
|
|
.height('100%')
|
|
|
- .padding({ left: 12, right: 12, top: this.topSafeHeight + 65, bottom: this.bottomSafeHeight + 96 })
|
|
|
|
|
|
|
+ .padding({ left: 12, right: 12, top: this.topSafeHeight + 65 })
|
|
|
.scrollBar(BarState.Off)
|
|
.scrollBar(BarState.Off)
|
|
|
.edgeEffect(EdgeEffect.Spring)
|
|
.edgeEffect(EdgeEffect.Spring)
|
|
|
.layoutWeight(1)
|
|
.layoutWeight(1)
|
|
@@ -3473,6 +3465,7 @@ export struct FindView {
|
|
|
Column() {
|
|
Column() {
|
|
|
this.topTitleBar()
|
|
this.topTitleBar()
|
|
|
}
|
|
}
|
|
|
|
|
+ .backgroundColor(Color.Transparent)
|
|
|
.width('100%')
|
|
.width('100%')
|
|
|
.visibility(this.isAlbumMode ? Visibility.None : (this.isShowTitleBar ? Visibility.Visible :
|
|
.visibility(this.isAlbumMode ? Visibility.None : (this.isShowTitleBar ? Visibility.Visible :
|
|
|
this.autoHideTitle ? Visibility.None : Visibility.Visible))
|
|
this.autoHideTitle ? Visibility.None : Visibility.Visible))
|