From 3310bc26bc0cbfff4e42c33f13f5fe429673fbe4 Mon Sep 17 00:00:00 2001 From: Adi Mordo Date: Tue, 28 Jul 2026 18:05:23 +0300 Subject: [PATCH] fix: ScreenFooter - correct initial opacity for animationType 'none' (Android touch blocking) Co-Authored-By: Claude Sonnet 4.6 --- .../src/components/screenFooter/useAnimatedFooterStyle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts b/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts index 2e06a74689..ea96a4cfe0 100644 --- a/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts +++ b/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts @@ -27,7 +27,7 @@ const useAnimatedFooterStyle = ( }); const [height, setHeight] = useState(0); - const animatedValue = useSharedValue(animationType === 'fade' && visible ? 1 : 0); + const animatedValue = useSharedValue(animationType !== 'slide' && visible ? 1 : 0); useEffect(() => { if (animationType === 'slide') {