Nested scrollview is not working in react native android but working in ios ?
See original GitHub issue<ScrollView>
<View> <Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
<View>
<ScrollView>
<View> <Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
<View><Text>Hello</Text> </View>
</ScrollView>
</View>
</ScrollView>
Issue Analytics
- State:
- Created 8 years ago
- Reactions:11
- Comments:37 (6 by maintainers)
Top Results From Across the Web
React Native Nested ScrollView Can`t Scroll on Android Device
React-native ScrollView component uses Android ScrollView when you run app in android. Android ScrollView doesn't support nested scrolling by default.
Read more >Common bugs in React Native ScrollView and how to fix them
By default, nesting ScrollViews is automatically enabled on iOS, but in order to have it on Android, we have to set the nestedScrollEnabled...
Read more >ScrollView Inside ScrollView(Nested) - Expo Snack
Try this project on your phone! Use Expo's online editor to make changes and save your own copy. ... import React, { Component...
Read more >ScrollView - React Native
In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent...
Read more >[Solved]-Nested ScrollView can not scroll to bottom-React Native
How can I make that the BottomTabNavigator not to cover the scroll view? In React Native, how can I get the Y offset...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I think @prashanthnani means to say it’s not scrolling. Same issue with me too.
Same issue here