Hey,
I’m having this issue: When showing modal dialog shortly after closing one, the new just created modal dialog changes its background color to gray, instead of default white.
I’m currently going around this with: setTimeout(() => {..continue here...}, 700);
Is there any way to just wait for the first modal window to close?`
The code I’m using rn:
progressDialog.close();
setTimeout(async () => {
await alert('Alert',
'Example',
'File location: ' + rootFolder.nativePath);
}, 700);`