-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
FlatList inside ScrollView doesn't scroll #19971
Comments
see this comment |
Hi there, have you found a solution for this problem, I am having the same issue |
@yasir-netlinks Did you check this |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as "For Discussion" or "Good first issue" and I will leave it open. Thank you for your contributions. |
I tried this. The scrollview rendered all items in flatlist and adjusting its size and made the page laggy so i think because of too much data made it not unscrollable. |
Hi, this solution worked for me.
|
I got same issue. Any update? |
@Voliki thanks, your solution worked for me! Warning: if you have a |
Does this mean that the Flatlist should be able to scroll if the ScrollView scrollEnabled is hardcoded as false? I can't seem to get this to work still... i.e
|
Hello there 👋 this issue seems to have been inactive for the past few weeks and, moreover, people appear to have working solutions based on this comment. Because of this, it's likely that the issue is not a high priority anymore or it has been solved by OP; for these reasons, we'll close it. But please, if you think this is a different issue that needs to be addressed in React Native itself, please comment below and we can reopen it or please send us a Pull Request with a fix 😊 |
I faced the similar issue where I had FlatList inside the ScrollView.
Then I tried setting the scroll of flatlist as false, since I have already enclosed my flatlist to scrollview. I added the condition since, I was facing this issue only in IPhone 7 Plus. |
Any official update. It's an important aspect of UI when designing. Some workarounds are there but they make the process complicated when there are multiple flatlist inside scrollview. And we want to achieve scrolling depending on where the users touch. |
@itsgauravjain22 |
Environment
Description
I've 4
FlatList
s withmaxHeight
set to200
inside aScrollView
.and when I try to scroll a
FlatList
, it doesn't scroll but theScrollView
scrolls. How do I fix this issue ?Full Source Code
Reproducible Demo
snack.expo link
The text was updated successfully, but these errors were encountered: