explicitly set edge effect to "soft"
This commit is contained in:
@@ -262,6 +262,7 @@ function InnerReady({
|
|||||||
{IS_LIQUID_GLASS ? (
|
{IS_LIQUID_GLASS ? (
|
||||||
<ScrollEdgeEffect
|
<ScrollEdgeEffect
|
||||||
edge="top"
|
edge="top"
|
||||||
|
effect="soft"
|
||||||
style={[a.absolute, a.w_full, a.z_10, {paddingTop: topInset}]}
|
style={[a.absolute, a.w_full, a.z_10, {paddingTop: topInset}]}
|
||||||
onLayout={onHeaderLayout}>
|
onLayout={onHeaderLayout}>
|
||||||
{header}
|
{header}
|
||||||
|
|||||||
@@ -326,7 +326,7 @@ export function ComposerContainer({children}: {children: React.ReactNode}) {
|
|||||||
|
|
||||||
if (IS_LIQUID_GLASS) {
|
if (IS_LIQUID_GLASS) {
|
||||||
return (
|
return (
|
||||||
<ScrollEdgeEffect edge="bottom">
|
<ScrollEdgeEffect edge="bottom" effect="soft">
|
||||||
<Animated.View style={[a.w_full, animatedContainerStyle, a.pb_lg]}>
|
<Animated.View style={[a.w_full, animatedContainerStyle, a.pb_lg]}>
|
||||||
{children}
|
{children}
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
|
|||||||
Reference in New Issue
Block a user