react-native-scrollable-tab-view
react-native-scrollable-tab-view copied to clipboard
How can i get current page
trafficstars
I want use Next and Prev button, how can i get current page to next or pre page Thanks!
@vietmaki you can use props called on "onChangeTab" which is function called when tab is changed,it accept object argument if you console it ,it will be like eg. {"from": 0, "i": 1, "ref": <Text tabLabel="Tab #2 word word">favorite</Text>}, so key "i" represents index of current page, you can handle next prev page with "i". hope this will help to solve your problem.