Overview of extended_nested_scroll_view
masterThe extended_nested_scroll_view package provides an enhanced version of Flutter's NestedScrollView to resolve several known limitations in the standard implementation. It specifically addresses:
- Pinned Sliver Header Issues: Provides a way to calculate and provide the total height of pinned sliver headers.
- Inner Scrollable Sync Issues: Improves synchronization for scrollables within a
TabView. - ScrollController Constraints: Enables common scroll behaviors (like pull-to-refresh, load more, and scroll-to-top) in the
NestedScrollViewbody without requiring a manualScrollController, which would otherwise break the internalInnerScrollControllerlogic.