- The
InteractionManageris a native module that allows long-running work to be scheduled after any interactions/animations have completed. In particular, this allows JavaScript animations to run smoothly. - To schedule the tasks
```jsx InteractionManager.runAfterInteractions(() => { // ...long-running synchronous task... }); ``` InteractionManageralso allows applications to register animations by creating an interaction ‘handle’ on animation start, and clearing it upon completion