diff --git a/demo/package.json b/demo/package.json index 70d97446b5..b3100963a7 100644 --- a/demo/package.json +++ b/demo/package.json @@ -1,6 +1,6 @@ { "name": "unicorn-demo-app", - "version": "1.1.16", + "version": "9.1.0-snapshot.8044", "main": "src/index.js", "author": "Ethan Sharabi ", "license": "MIT", diff --git a/packages/react-native-ui-lib/package.json b/packages/react-native-ui-lib/package.json index f3a79b4c66..eb54e9fb39 100644 --- a/packages/react-native-ui-lib/package.json +++ b/packages/react-native-ui-lib/package.json @@ -1,6 +1,6 @@ { "name": "react-native-ui-lib", - "version": "9.0.0", + "version": "9.1.0-snapshot.8044", "main": "src/index.ts", "types": "src/index.d.ts", "author": "Ethan Sharabi ", 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..02bdf64418 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') { @@ -76,3 +76,4 @@ const styles = StyleSheet.create({ zIndex: 50 } }); +