mhsnsfh
mhsnsfh
> @mhsfh did you try using the expand method? e.g: > > ```tsx > const bottomSheetRef = useRef(null) > // ... > bottomSheetRef.current?.expand() > ``` > > you can have...
i have same issue
I could fix this by adding `enableDismissOnClose={false}` to BottomSheetModal Otherwise, you need to put the minHeight of the content more than the keyboard height **Edit**: you will have a small...
@dealvz that's how I'm closing and opening the bottom sheet: ```tsx const handleOpen = React.useCallback((): void => { Keyboard.dismiss(); bottomSheetRef?.current?.present(); bottomSheetRef?.current?.expand(); if (Platform.OS === 'ios') KeyboardManager.setEnable(false); }, []); const handleClose...
> I have same issue with and without enableDynamicSizing. Bottom sheet get dismissed when keyboard is opened in Android. > > Any workarounds ? > > @gorhom any workaround would...
> tested it , and it did not dismiss. > > while you are here, could you test this issue against v5 @gorhom I couldn't reproduce the bug in 5.0.0-alpha.5...
the BottomSheetBackdropl was Flickering when the content height change and unfortunately nothing from the above solutions worked for me so I created my AntiFlickerBottomSheetBackdrop, may it help someone facing the...
Hi @lindboe , what is the latest react-native version compatible with the [email protected]? is it [email protected] as shown in the example? thanks
@lindboe I made it work, thank you so much 🙏
> > @lindboe I made it work, thank you so much 🙏 > > Can you describe the path you fallowed? for android I had to apply this patch: ```diff...