I have a simple page component in react native. The issue is when I try to open the bottom sheet, I cannot avoid the bottom notch area in IOS. Any ways I can get over it?
return (
<SafeAreaView
<KeboardAvoidingView />
<BottomSheet
isOpen={isOpen}
onClosed={onClosed}
childComponent={...}
options={[]}
showTopKnob
rounded
/>
</SafeAreaView>
);