How to deal with nested scroll view
See original GitHub issueHello guys, I want to nested scroll view inside renderContent
function and make its behavior the same with bottom sheet behavior
renderInner = () => {
return <ScrollView/> // <= How to make this one pass gesture to parent wrapper when it is scrolled to top
}
Any help with this one ?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:9
- Comments:10
Top Results From Across the Web
NestedScrollView class - widgets library - Flutter - Dart API docs
A scrolling view inside of which can be nested other scrolling views, with their scroll positions being intrinsically linked. The most common use...
Read more >NestedScrollView - Android Developers
Handle scrolling in response to an up or down arrow click. Dispatch one step of a nested scroll in progress before this view...
Read more >NestedScrollView: Enhanced scrolling for Flutter
NestedScrollView connects the scrolling behavior of the content in the body, so when you scroll its content and reach the top, it will...
Read more >RecyclerView within NestedScrollView Scrolling Issue - Medium
Solution: · Disable Shift Label Animation from Bottom Navigation — Android. · Passing Data between Fragments on Android Using ViewModel · Insert and...
Read more >NestedScrollView in Android with Example - GeeksforGeeks
Go to the app > res > values > strings.xml and add two random text strings inside the strings.xml file to display those...
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 misunderstood the problem, please ignore this.
use nestedScrollEnabled
<ScrollView nestedScrollEnabled>{child}</ScrollView>