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:closed
  • Created 8 years ago
  • Reactions:11
  • Comments:37 (6 by maintainers)

github_iconTop GitHub Comments

13reactions
minkeshcommented, May 5, 2016

I think @prashanthnani means to say it’s not scrolling. Same issue with me too.

4reactions
Rashhhcommented, Dec 8, 2016

Same issue here

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found