explicitly set edge effect to "soft"

This commit is contained in:
Samuel Newman
2026-06-14 16:56:52 +03:00
parent 575b76a71e
commit c2458797a4
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -262,6 +262,7 @@ function InnerReady({
{IS_LIQUID_GLASS ? (
<ScrollEdgeEffect
edge="top"
effect="soft"
style={[a.absolute, a.w_full, a.z_10, {paddingTop: topInset}]}
onLayout={onHeaderLayout}>
{header}
@@ -326,7 +326,7 @@ export function ComposerContainer({children}: {children: React.ReactNode}) {
if (IS_LIQUID_GLASS) {
return (
<ScrollEdgeEffect edge="bottom">
<ScrollEdgeEffect edge="bottom" effect="soft">
<Animated.View style={[a.w_full, animatedContainerStyle, a.pb_lg]}>
{children}
</Animated.View>