useInteractionManager does not work with react-navigation
See original GitHub issueUsing react-navigation v4, providing useInteractionManager={true}
option, the arrow and the cloned child gets displayed on the right side of the screen. The content is in the correct position.
I worked around by
useEffect(() => {
setTimeout(() => setSmsTooltipVisible(true), 500);
}, []);
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
InteractionManager.runAfterInteractions() not working properly ...
Same issue here, It works when i used react native modal insight componentDidMount, but it doest work on StackNavigator, If i use single...
Read more >Do you use InteractionManager and is the UI not bad ? (Slow ...
When a new screen is pushed, React Navigation will initially render it off-screen and animate it into place afterward.
Read more >Do you use InteractionManager and is the UI not bad ... - Reddit
The Problem: When a new screen is pushed, React Navigation will initially render it off-screen and animate it into place afterward.
Read more >Fixing common performance problems in React Navigation
We started by running a few tests with React Navigation: adding the navigation state to Redux, pushing new screens onto a stack, handling...
Read more >Troubleshooting | React Navigation
Troubleshooting. This section attempts to outline issues that users frequently encounter when first getting accustomed to using React Navigation.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
sorry, just noticed you mentioned
react-navigation v4
… perhaps then…thanks @jasongaare , it did solve my issue!