react-native-modalize
react-native-modalize copied to clipboard
method open() not working properly when using alwaysOpen prop
Describe the bug method .open() is not working when using the alwaysOpen prop. However it works if I use .open('top') but need to tap the backdrop twice to close
Dependencies:
- react-native-modalize [2.0.8]
- react-native [0.63.0]
- react-native-gesture-handler [1.7.0]
for me too, but open('top') won't work too
using settimeout works fine
setTimeout(() => { modalizeRef.current.open('top') }, 500)
When your declare alwaysonTop, not use .open, only open('top)