Open cristianrosu opened 10 months ago
Same
Same problem here with RN 0.73.2 and React native modalize ^2.1.1
Same here
Facing the same issue after upgrading to RN 0.73.2
Any solution?
Any solution?
I had to change the package to https://github.com/gorhom/react-native-bottom-sheet
@cristianrosu
actually it's not a random value. It's the dragY
value where you finished pan gesture. It is supposed to be reset in handleAnimateClose
(Animated finish callback) but in newer versions of RN it's overriden down the road.
A simple solution or a workaround: Add dragY.setValue(0)
at the beginning of handleAnimateOpen
method.
@cristianrosu
actually it's not a random value. It's the
dragY
value where you finished pan gesture. It is supposed to be reset inhandleAnimateClose
(Animated finish callback) but in newer versions of RN it's overriden down the road. A simple solution or a workaround: AdddragY.setValue(0)
at the beginning ofhandleAnimateOpen
method.
It works, thank you!
diff --git a/node_modules/react-native-modalize/lib/index.js b/node_modules/react-native-modalize/lib/index.js
index 5d5edac..d7c88c3 100644
--- a/node_modules/react-native-modalize/lib/index.js
+++ b/node_modules/react-native-modalize/lib/index.js
@@ -147,6 +147,7 @@ onOpen, onOpened, onClose, onClosed, onBackButtonPress, onPositionChange, onOver
setKeyboardHeight(0);
};
const handleAnimateOpen = (alwaysOpenValue, dest = 'default') => {
+ dragY.setValue(0)
const { timing, spring } = openAnimationConfig;
backButtonListenerRef.current = react_native_1.BackHandler.addEventListener('hardwareBackPress', handleBackPress);
let toValue = 0;
```diff
@Tonisg91 did you make gorhom package to work with react native 0.74 (or 73) ? my app crash on build ( not in dev mode ) when i install reanimated. did't found a working package number with react 74 and bottomsheeet & reanimated. thanks
When I close the modal with a swipe-down pan gesture, if I open it again, right after opening, it "jumps" height to a random value. If I close the modal programatically using
ref.current?.close()
, opening it again performs as expected.This reproduces no matter what props I use or not (
headerComponent
,adjustToContentHeight
,modalHeight
,snapPoint
). It also does not matter if I have anything inside the modal.This happens on both IOS & Android
Dependencies