Jan Kaźmierczak

Results 3 comments of Jan Kaźmierczak

Got the same problem when running the project on macos with version `1.90.14`. The same result after updating to the newest version `1.91.3`. - Any workarounds? On Windows it works...

Hi, I have got similar problem. I use the hook ```typescript export const useSoftKeyboardEffect = () => { useFocusEffect(() => { AvoidSoftInput.setShouldMimicIOSBehavior(true); AvoidSoftInput.setEnabled(true); AvoidSoftInput.setAvoidOffset(30); AvoidSoftInput.setShowAnimationDelay(0); AvoidSoftInput.setShowAnimationDuration(150); AvoidSoftInput.setHideAnimationDuration(150); AvoidSoftInput.setHideAnimationDelay(0); return ()...

Nah, cannot reproduce that. Idk, maybe the problem is deeper in my project. However, I started using your `BottomSheetWrapper` instead of `useSoftKeyboardEffect` and seems working good. ```typescript const BottomSheetWrapper =...