react-native-modalize
react-native-modalize copied to clipboard
How to leave it open by default
I need the modal behavior to be open by default and not closed, how could I solve the problem?
With useEffect?
@jeremybarbet #432 solution
How did you manage it?
the useEffect answer is also good for me if the merge takes to much time
Apply UseEffect and setTimeout for the modal to display on entering screen.
useEffect(() => {
setTimeout(() => visible ? ref.current.open() : ref.current.close(), 100);
}, [visible])