我想使用反应天然-可滚动制表视图标签导航在我的代码和IM使用滚动型为在滚动但不工作。
return(
<ScrollView
contentContainerStyle={{flex: 1}}
>
{this.renderHeader()}
<View style={styles.baner}/>
<View style={{flex: 1}}>
<ScrollableTabView
initialPage={2}
tabBarBackgroundColor={them.white}
tabBarActiveTextColor={them.black}
tabBarInactiveTextColor={them.borderColor}
tabBarUnderlineStyle={{backgroundColor:them.green}}
>
<MyRequest name='tab1' tabLabel='درخواستهای من' />
<Requests name='tab2' tabLabel='درخواستها' />
< Suggestion name='tab3' tabLabel='پیشنهادها' />
<Message name=' tab4' tabLabel='پیام ها' />
</ScrollableTabView>
</View>
</ScrollView>
)