aksonov / react-native-tabs

React Native platform-independent tabs. Could be used for bottom tab bars as well as sectioned views (with tab buttons)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Android] Page re-renders every-time I change tab.

han4wluc opened this issue · comments

I have a listview in my page content, which loads some data from online.
But each time I switch to the tab, it re-renders making a new http request.
Is there a way to not re-render the page when I switch tab??

This component doesn't manage content, it is more like 'multi' button - you have to manage content by yourself. OR you could use react-native-router-flux with Container element to manage connect, so it will not re-render data each time, check react-native-router-flux demo project.