You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just pointing out a problem I've faced, react-native-document-picker was freezing the app on calling .show() at iOS whenever a modal transition was still running.
A fast workaround was using a setTimeOut with the same timer as the transition duration.
The text was updated successfully, but these errors were encountered:
Is a setTimeout still the preferred solution to this? It seems a little bit hacky to me - if you change your transition duration later, you have to remember to update the timeout, otherwise a (potentially very important) part of your app might become inaccessible.
Just pointing out a problem I've faced, react-native-document-picker was freezing the app on calling .show() at iOS whenever a modal transition was still running.
A fast workaround was using a setTimeOut with the same timer as the transition duration.
The text was updated successfully, but these errors were encountered: