xxxxxxxxxx
I faced the same issue as specified by @JonasHiltl , but after wrapping the BottomSheetModal with BottomSheetModalProvider, the issue was resolved.
My code was thus:
<BottomSheetModalProvider>
<BottomSheetModal
ref={bottomSheetRef}
index={1}
snapPoints={snapPoints}
enablePanDownToClose
backdropComponent={BottomSheetBackdrop}
>
<ScrollView>
<StyledText
style={{
styles.additionalLinksText
}}
>
How referrals work
</StyledText>
</ScrollView>
</BottomSheetModal>
</BottomSheetModalProvider>