python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
SliverPersistentHeader without using CustomScrollView
I had a CustomScrollView which looked like:
CustomScrollView(
slivers: [
SliverPersistentHeader(
floating: true,
delegate: MyPersistentHeaderDelegate(),
),
SliverList(...),
...

Code Spirit
Votes: 0
Answers: 1
Flutter NestedScrollView TabBar and PagedListView always scrolls the SliverAppBar
I'm trying to use a NestedScrollView with a TabBar on the SliverAppBar and the TabBarView on the body, and inside the TabBarViews pages put a PagedListView.
Is it possible when my PagesListViews has n...
Martin
Votes: 0
Answers: 0
How do I pin a View from a NestedScrollView at the bottom of the screen?
I have a RecyclewView and a button below it, it's all inside the NestedScrollView. If I add more items to the RecyclerView, the button will hide.
Is there a way to attach the button to the bottom of t...
yaromchikV
Votes: 0
Answers: 3
How to make one part of body scrollable and other as fixed when using SliverAppBar
I'm trying to make a UI in flutter wherein I'm using SliverAppBar(I mention this because I need to use either CustomScrollView or NestedScrollView) and now in the body, I was to make the first two ele...
randomnerd
Votes: 0
Answers: 1