ptomasroos / react-native-scrollable-tab-view

Tabbed navigation that you can swipe between, each tab can have its own ScrollView and maintain its own scroll position between swipes. Pleasantly animated. Customizable tab bar
https://www.npmjs.com/package/react-native-scrollable-tab-view
6.93k stars 2.29k forks source link

How can i get current page #1199

Open vietmaki opened 1 year ago

vietmaki commented 1 year ago

I want use Next and Prev button, how can i get current page to next or pre page Thanks!

sushantjadhav111 commented 1 year ago

@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": favorite}, so key "i" represents index of current page, you can handle next prev page with "i". hope this will help to solve your problem.