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
InteractionManager.runAfterInteractions() is not working properly on web. It triggers immediately without waiting until the interaction is finished.
example:
In react-navigation,
we want a task to be deferred until the navigation animation ends. (after clearInteractionHandle is called)
Actually since the browser may be idle, it will be executed before clearInteractionHandle is called. (requestIdleCallback)
Can we submit a PR to migrate this feature? 🙂
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Is there an existing request?
Describe the feature request
In the react-native documentation :
example:
In react-navigation,
we want a task to be deferred until the navigation animation ends. (after
clearInteractionHandle
is called)Actually since the browser may be idle, it will be executed before
clearInteractionHandle
is called. (requestIdleCallback
)Can we submit a PR to migrate this feature? 🙂
The text was updated successfully, but these errors were encountered: