I am using the "react-native-starter-app" but when I tried it on Androind simulator in the last tab where there are nested "react-native-tab-view", the content of the tabs are not showing and its also not possible to navigate between tabs.
Tell us which versions you are using:

For those who are experiencing the same issue, here is the solution:
<TabViewAnimated
lazy
style={[styles.tabContainer]}
renderScene={this.renderScene}
renderHeader={this.renderHeader}
navigationState={this.state.navigation}
onIndexChange={this.handleChangeTab}
renderPager={this._renderPager}
/>
and
_renderPager = (props) => {
return (Platform.OS === 'ios') ? <TabViewPagerScroll {...props} /> : <TabViewPagerPan {...props} />
}
Basically TabViewPagerScroll does not behave fine on Android when it comes to the nested tab views.
Most helpful comment
For those who are experiencing the same issue, here is the solution:
<TabViewAnimated lazy style={[styles.tabContainer]} renderScene={this.renderScene} renderHeader={this.renderHeader} navigationState={this.state.navigation} onIndexChange={this.handleChangeTab} renderPager={this._renderPager} />and
_renderPager = (props) => { return (Platform.OS === 'ios') ? <TabViewPagerScroll {...props} /> : <TabViewPagerPan {...props} /> }Basically TabViewPagerScroll does not behave fine on Android when it comes to the nested tab views.