#customScrollView
Flutter devs - is there a nicer way to fill the bottom scroll offset of a CustomScrollView (which uses BouncingScrollPhysics)?

I'm currently using a scrollController.offset to display a Container behind the scroll view sized to the height of the scroll.

It works, but is there a better way?
December 19, 2024 at 3:36 AM
I assumed that would work as well but it doesn't seem to.

I've found an existing issue filed: github.com/flutter/flut...
SliverFillRemaining(fillOverscroll: true) does not extend beyond the viewport size · Issue #141077 · flutter/flutter
Steps to reproduce Create a widget that builds a CustomScrollView with bouncing scroll physics and a single child: a SliverFillRemaining with hasScrollBody: false and fillOverscroll: true. Expected...
github.com
December 20, 2024 at 1:07 AM
You also still can't hit-test an occluded sibling widget
github.com/flutter/flut...

The web keyboard handler is also very broken, incorrectly generating phantom key up events/reporting isKeyPressed (so much so that I abandoned it in favour of working directly with the browser API).
Add a widget that always returns false from hitTest but still lets its subtree participate in hit testing · Issue #76525 · flutter/flutter
Use case I've needed to have full screen scrollables - either PageView or CustomScrollView - as the frontmost widget in a Stack that also need to allow passing gestures through to the widgets behin...
github.com
July 30, 2025 at 9:56 AM
'Expected a RenderSliver'? You dropped a Text or ListView into CustomScrollView.slivers. Use SliverToBoxAdapter or SliverList.builder.
https://startdebugging.net/2026/07/fix-renderviewport-expected-a-rendersliver-in-a-flutter-customscrollview/?utm_source=bluesky&utm_medium=social&utm_campaign=auto
July 5, 2026 at 6:18 AM
Mixing a list and a grid in one Flutter scroll? Skip the nested-shrinkWrap trap. CustomScrollView + SliverList + SliverGrid stay…
https://startdebugging.net/2026/07/how-to-mix-a-listview-and-a-gridview-in-one-scroll-view-with-slivers-in-flutter/?utm_source=bluesky&utm_medium=social&utm_campaign=auto
July 2, 2026 at 3:14 PM
Flutter Performance Tip ⚡️

❌ The Laggy Way: ListView inside a Column with shrinkWrap: true. Result: It renders the whole list instantly. 💥

✅ The Pro Way:Use CustomScrollView with Slivers. Result: True lazy loading. Only builds what is on the screen.
December 4, 2025 at 9:50 AM
v0.0.1+2 of sliver_center
Sliver Center For CustomScrollView
pub.dev
February 15, 2025 at 1:44 PM
É maçante ter q usar o SliverToBoxAdapter dentro do slivers no CustomScrollView... seria bom se pudesse criar arvores de diferentes widgets dentro dele sem a necessidade de envolver sempre no SliverToBoxAdapter.

Só queria usar o SliverAppBar para substituir o AppBar padrão.
October 8, 2024 at 9:41 PM