question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to deal with nested scroll view

See original GitHub issue

Hello 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:open
  • Created 4 years ago
  • Reactions:9
  • Comments:10

github_iconTop GitHub Comments

3reactions
parav01dcommented, Feb 8, 2020

When you use: enabledContentGestureInteraction={false} on BottomSheet you can scroll the ScrollView and use Press Interactions etc.

Happy Coding!

I misunderstood the problem, please ignore this.

1reaction
Adibacajcommented, Sep 25, 2019

use nestedScrollEnabled

<ScrollView nestedScrollEnabled>{child}</ScrollView>

Read more comments on GitHub >

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

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