Bottom Sheet Performance - Related to safe area view context #1629
victorkvarghese
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Would like to share some experiences i had with this awesome library.
I have using this as a reusable bottom sheet that stays above navigation.
Things were working smooth, But some pages were slow to open. While others worked fine with fine animations.
i compared the components and eventually find out the root cause. I was using SafeAreaView from
import { SafeAreaView } from 'react-native-safe-area-context';
. This was causing issues when the bottom sheet modal was rendering.I removed the safe area view and things went back to normal. Smooth animations. just wanted to add this here for anyone working with safe areaview.
Beta Was this translation helpful? Give feedback.
All reactions