How to preload route using react-navigation

Viewed 1742

I am using a TabNavigator and I would like to preload all of the routes so that the user does not experience any lagging when he navigates for the first time to one of the tabs.

1 Answers

you have to add lazy: false into routes options

Related