skip to Main Content

React native – How to initialPage on ScrollableTabView android?

I'm using ScrollableTabView for scrollable tab, in iOS I am able to set initiate page. But in android it not working <ScrollableTabView tabBarActiveTextColor={Colors.POLYCHROME_15} initialPage={this.getInitialPage()} tabBarUnderlineStyle={[ Styles.tabBarBorder ]} locked={true} style={Styles.tabBarContainer} > getInitialPage() { const routesData = this.props.data; const somethingData = this.props?.something;…

VIEW QUESTION
Back To Top
Search