-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Labels
bugSomething isn't workingSomething isn't workingrepro neededReproducible demo app/Expo Snack is neededReproducible demo app/Expo Snack is needed
Description
I have next logic:
- openModal("1")
- openModal("2") + closeModal("1") after full open modal 2 or after n seconds
- have rerender of top modal (in my case its 2)
Can add some part of code:
openModal('2', { name: "forchello"}, () => {
closeModal("1");
});
OR
openModal('2', { name: "forchello"});
setTimeout(() => {
closeModal("1");
}, 3000); // no matter how much ms there can be - code have the same problem
As I see, opening and closing modals in call stack have a lot of problems in this problem
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingrepro neededReproducible demo app/Expo Snack is neededReproducible demo app/Expo Snack is needed