Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
57 views

I’m using expandable_page_view to make my PageView adjust its height based on the current page content. It works fine in a normal Column, but when I put it inside a NestedScrollView with a ...
user avatar
0 votes
0 answers
26 views

return DefaultTabController( length: 2, child: NestedScrollView( headerSliverBuilder: (context, innerBoxIsScrolled) { return [ SliverAppBar( ...
Elyor Norboyev's user avatar
0 votes
0 answers
55 views

I'm trying to build a UI that utilizes Flutter's Slivers to have a Sliver that sticks to the top and every Sliver after it continues scrolling while also hiding itself when it hits the bottom of the ...
Jake Starkey's user avatar
1 vote
1 answer
171 views

I'm building a Flutter screen that has a transparent AppBar in the parent Scaffold and a child screen (LobbyScreen) with its own CustomScrollView. I want to pin a SliverPersistentHeader below the ...
Omair's user avatar
  • 17
1 vote
1 answer
191 views

I have a layout with three Slivers: A SliverAppBar (not pinned). A second SliverAppBar (pinned, containing a SearchBar). A SliverList. The issue is with the second SliverAppBar. I want it to be ...
RonanV's user avatar
  • 23
0 votes
0 answers
93 views

There are Questions here that sound similar, but don't solve my specific issue, and I cannot seem to extract the information to get it to run. I have a MultiSliver I want to display, I get however the ...
Maritn Ge's user avatar
  • 1,263
1 vote
0 answers
75 views

In my Flutter application, I'm developing a chatbot using flutter_chat_ui. This app can fetch initial messages and display them, but the moment I perform onTap on any of the initial messages, I'm ...
Jaivik's user avatar
  • 37
1 vote
0 answers
62 views

This is a follow-up question. Here is the original: How to use CustomScrollView in a GoRouter ShellRoute? I am trying to generate a CustomScrollView with a collapsible SliverAppBar at the top. Beneath ...
friend.code's user avatar
0 votes
1 answer
58 views

I am encountring a overflow problem within SLiverlist. I have SliverAppBar that callapsed when scrolling the SliverList but at a moment I encounter the RenderFlex overflow by 337 pixels on bottom. ...
Nader's user avatar
  • 89
0 votes
1 answer
73 views

I want to achieve a complex scrolling behavior in flutter. I assume sliver is the way to go but I could not find a way to solve my problem. Here is a screen of the content I want to scroll: The ...
Ortes's user avatar
  • 23
0 votes
1 answer
97 views

I need to have a list of elements. Each element will have a list (for example, parent comment and its list of replies). But in this case I need to provide shrinkWrap: true or to provide Container with ...
BlackRose's user avatar
0 votes
1 answer
245 views

I implemented a SliverStickyHeader which is working just fine within my CustomScrollView. I only have one problem: My Sticky header is basically a Container with borderRadius. Now I want my content to ...
Chris's user avatar
  • 2,404
0 votes
1 answer
228 views

I have a SliverAppBar, but I want to make it so that when the user starts scrolling, the title becomes like a regular AppBar (centered on top) + before scrolling, it was on the left, not in the center....
steind.VY's user avatar
  • 348
0 votes
1 answer
620 views

I am trying to have the content of my page inside a sliver list but when I scroll, the list of the page and the sliver list scroll behaviours are independent of each other. I want it so that both ...
BradDoesCode's user avatar
1 vote
1 answer
98 views

I'm very desperate. I'm new to flutter and following the tutorials in YT. There I came across following problem and wonder how I'm the only one. In the YouTube (https://www.youtube.com/watch?v=YY-...
Adam's user avatar
  • 13
-1 votes
1 answer
75 views

i'm trying to get rid of the leading menu Icon (hamburger Icon), so i put leading to null but still nothing changed, here my code : CustomScrollView( slivers: [ ...
Hamou Ouyaba's user avatar
  • 1,619
0 votes
1 answer
602 views

So I'm starting a project where the main page (HomeScreen) has a NavigationBar and several sub-screens. For the purpose of this demo, I have created two sub-screens called StarScreen and SquareScreen. ...
RedLamp15's user avatar
  • 105
1 vote
0 answers
76 views

When I changed the phone orientation to landscape video player gives bottom overflow, I'm trying several ways to deal with this. I can't use two listViews because I need the video player to stay at ...
Stark's user avatar
  • 13
0 votes
1 answer
262 views

There are four tabs(bottom nav) and every tab has a scrolling page wrapped in Indexstack, Now the issue is if IndexedStack is wrapped with Sizebox( double.infinity) it shows empty pages, but if I set ...
M.ArslanKhan's user avatar
  • 3,976
0 votes
0 answers
213 views

So I am using a CustomScrollView and inside I have SliverAppBar and SliverPersistentHeader as the first two children, with no styling except blue background color. But there is a really faint, ...
user avatar
1 vote
2 answers
714 views

I have a code that has these main widgets: CustomScrollView( physics: const AlwaysScrollableScrollPhysics( parent: BouncingScrollPhysics(), ), slivers: [ SliverFillRemaining( ...
FMorschel's user avatar
  • 882
1 vote
1 answer
109 views

I have the folowing code: return Scaffold( body: CustomScrollView( physics: const AlwaysScrollableScrollPhysics( parent: BouncingScrollPhysics(), ), ...
FMorschel's user avatar
  • 882
1 vote
0 answers
224 views

I have a problem with a SizeTransition that is within a SliverFillRemaining. The issue is that the SliverFillRemaining does not adjust its size proportionally to the height of the SizeTransition. Even ...
Petri's user avatar
  • 1,028
3 votes
4 answers
3k views

I want to create an infinite scrollable list like it is possible to do with ListView.builder : ListView.builder( itemBuilder: (context, index) => Text(index.toString()), ); But doing so only ...
Valentin Vignal's user avatar
0 votes
1 answer
365 views

I'm using CustomScrollView and sliver_tools package to display a list view with a SliverPinnedHeader. In the SliverPinnedHeader, I have a tab view kind of layout where the user is allowed to select a ...
dipansh's user avatar
  • 530

1
2 3 4 5
10