-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not scroll in scrollview tag #982
Comments
@Mrezagolbaba are you using this lib in RN 0.58? after the ScrollView breaking change? |
@malonguwa im using react native 0.57.8 |
@malonguwa does this module not work with 0.58 since the breaking change? initially I couldn't get it to work on 0.58.4 but I've nested the tab content in a RN scrollview and seems to be working..
|
Using RN 56.0, same problem. Not able to scroll in RTL(when the contents are more) |
"react-native": "0.59.2", same problem. The contents inside the tab are not visible as well.
|
Same problem. U can fix it? |
Me too |
Me too. I meet issue on ios. On android everything is ok |
Hi guys, you should use react-native-nested-scroll-view library and replace ScrollView by NestedScrollView from this package in ScrollableTabBar, you have to rewrite ScrollableTabView as well and remove all declarations for Android, so every declaration for iOS is correct for Android now. You can do this with patch-package for example or wait for fix from contributors 💃 |
same problme, the ScrollableTabView can`t inside the ScrollView, it will lose height, so anyone fixed it? |
any fix for the above? |
any news? |
RN 0.61.2, it can't scroll the ScrollableTabView inside the ScrollView!!!! |
I found a solution that ScrollableTabView replaces ScrollView, which means ScrollableTabView inside ScrollableTabView, its can be scroll. |
i want to use react-native-scrollable-tab-view for tab navigation in my code and i use Scrollview for scroll in but not working.
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> )
The text was updated successfully, but these errors were encountered: