I got a TabNavigator set up and i'd like to retrieve screens postions during the swipe.
const MainScreenNavigator = TabNavigator({
ProfileStack: { screen: ProfileStack },
Home: { screen: Home },
HistoryStack: { screen: HistoryStack }
}, {
swipeEnabled: true
});
How to do so? is it possible without using Transitioner?