Open diegotsi opened 7 years ago
I am also facing the same issue today.
Ir's a bug of react-native. You can delay the alert after the dropdown dismissed completely.
I faced this issue too. Fadeout animation conflicts with Alert's fadein animation and it stuck in a strage state.
Although I don't like using timeouts in react-native, because it doesn't guarantee exact amount of timeout, adding setTimeout(()=> Alert.alert('...','...'), 100)
will work as expected.
I'm trying to use this with alert from react native,when the user select a option i show a alert to confirm .
But after use Alert the modal dropdown never hide , it stays on the screen forever, no matter what screen I go. I'm showing the alert inside a function that a pass in onSelect prop.
Thanks.