diff --git a/src/components/bottomSheet/BottomSheet.tsx b/src/components/bottomSheet/BottomSheet.tsx index 36060012d..0f5ac23fd 100644 --- a/src/components/bottomSheet/BottomSheet.tsx +++ b/src/components/bottomSheet/BottomSheet.tsx @@ -1149,7 +1149,8 @@ const BottomSheetComponent = forwardRef( //#region styles const containerAnimatedStyle = useAnimatedStyle( () => ({ - opacity: animatedIndex.value === -1 ? 0 : 1, + opacity: + Platform.OS === 'android' && animatedIndex.value === -1 ? 0 : 1, transform: [ { translateY: animatedPosition.value,