In iOS, when scrolling, the bottom sheet automatically closes, but on Android, the scroll works fine. https://github.com/user-attachments/assets/a0d35365-b9fa-4481-b0df-3695b17c79af ``` const [sliderMaxHeight, setSliderMaxHeight] = useState('60%'); const [infoHeight, setInfoHeight] = useState(480) const handleBottomSheetPress = () => { setSliderMaxHeight('90%'); } <BottomSheet height={Platform.OS == 'android' ? '100%' : '90%'} sliderMaxHeight={sliderMaxHeight} onOpen={() => handleBottomSheetPress()} onClose={() => setInfoHeight(80)} position={'absolute'} isOpen > {(onScrollEndDrag: any) => { console.log('onScrollEndDrag : ', onScrollEndDrag) return ( <ScrollView scrollToOverflowEnabled={true} contentContainerStyle={{ flexGrow: 1 }} onScrollEndDrag={onScrollEndDrag}> {[...Array(30)].map((_, index) => ( <View key={`${index}`} style={{ height: 60, width: '90%', alignSelf: 'center' }}> <Text>{`List Item ${index + 1}`}</Text> </View> ))} </ScrollView> ) }} </BottomSheet> ```
In iOS, when scrolling, the bottom sheet automatically closes, but on Android, the scroll works fine.
new-bug-ios-scroll.mov