If I am using scrollview from react then I am able to scroll, but keyboard is not handled properly. It would be great to be able to use BottomSheetScrollView even when enableContentPanningGesture is set to false
<BottomSheetModal
ref={bottomSheetModaRef}
backdropComponent={props => (
<BottomSheetCustomBack {...props} onPressFunc={closeModal} />
)}
keyboardBehavior="interactive"
android_keyboardInputMode="adjustResize"
enablePanDownToClose={true}
enableContentPanningGesture={false}
handleComponent={()=>(<BottomSheetHandleComponent closeModal={closeModal} title = {title}/>)}
onDismiss={onDismissFunc}
enableDynamicSizing={true}
topInset={50}
{...props}
>
<BottomSheetScrollView>
<View>
</View>
</BottomSheetScrollView>
</BottomSheetModal>