All Questions
Tagged with scrollview flutter
145 questions
2
votes
1
answer
66
views
Nested Scroll issue in DraggableScrollabeSheet
UI for dragsheet
What UI Have?
DraggableScrollableSheet for bottom sheet with scroll behavior.
A Top UI to achieving Sticky Top bar
List of element to show the content
What should it do?
Whole ...
0
votes
1
answer
48
views
Soft keyboard must cover some widgets - flutter
I'm struggling creating this login screen where when I open the keyboard the login button remains visible while items below get covered.
I have created this
but when I open keyboard the whole bottom ...
0
votes
0
answers
82
views
In horizontal mode, none of the items in SingleChildScrollView are scrolled in flutter
I have created some items in SingleChildScrollView and the problem is that none of the items are scrolled in horizontal mode, but the same code scrolls the items in vertical mode.
Items are scrollable ...
0
votes
1
answer
51
views
How to create a sticky text below a scrollable list in Flutter?
I am trying to display text directly below a list in Flutter, so that for a few items in the list there is no space between the list and the text. For many items, the text should remain visible at the ...
4
votes
0
answers
208
views
How to create custom shaped ListView
I want to create Horizontal V shaped List View just like in the following image , it will scroll from right to left and top to bottom. The labels are index of each container that will be inside it. ...
0
votes
0
answers
25
views
Flutter Scroll 3 Items, 2 vertical and other 2 horiznotal
So the problem I have is complex, and sadly I can't use another design/layout.
I have tree items in my layout: Header, Table and Footer. The Header has a fixed height and the width of the screen. The ...
0
votes
0
answers
25
views
Unable to Scroll in Mobile Flutter Version : 2.5.3
My code is for Mobile as well as for Web. So, the issue is Unable to Scroll in Mobile but in web working.
I'm using Flutter Version 2.5.3
Here is code snippet
I tried this below Code by Using two List ...
1
vote
0
answers
60
views
Issues with implementing a custom ScrollPhysics class which clamps after a certain amount of underscroll
In Flutter, I am implementing a SingleChildScrollView widget which I am trying to tweak a bit to fit my needs:
After underscrolling a certain amount of pixels, clamp the scroll view and execute a ...
0
votes
1
answer
169
views
BoxConstraints force infinite width. Probable cause: _RenderListTile._layoutBox. Offending constraints: BoxConstraints(w=Infinity, 0.0<=h<=Infinity)
I'm encountering an error in my Flutter app and seeking assistance to resolve it. Here's the error message:
FlutterError (BoxConstraints forces an infinite width.
These invalid constraints were ...
7
votes
3
answers
1k
views
Nested Scroll View with TabBarView and Keep Alive true, makes all scrolls sync in TabBarView pages in Flutter
In the flutter, I use NestedScrollView, in the Body I use TabBarView.
On the pages in TabBarView, I use keep alive true, but in this case the scroll is synchronized.
How can I not synchronize them.
...
0
votes
1
answer
553
views
How to make nested scroll view to use parents scoll behaviour
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 ...
0
votes
1
answer
2k
views
How remove Bouncing effect in flutter when scrolling page
In flutter i am using 3.0.6 dart sdk in this when use SingleChildScrollView & using physic AlwaysScrollableScrollPhysics than i am getting an by default bouncing effect how to remove this .It ...
0
votes
1
answer
79
views
How to add a scroll bar aside a widget without overlaying in Flutter?
I am trying to add a scroll bar to a GridView in Flutter using ScrollBar widget. I want the scroll bar to be always visible. However, the scroll bar overlays (comes in front) of the grid. Is there a ...
1
vote
1
answer
136
views
How to expand a widget with scroll in Flutter
I want to make a widget like attached photo.
According to my search, I have to use CustomScrollView, SliverAppBar.
I think this widget have to be ahead of background widget. so, have i to use a Stack ...
0
votes
1
answer
504
views
TabViewBar not scrollable
I have a flutter app with page view having two tabs.
I added scroll view within the tab for the dynamic list to add into it. However it is not scrollable.
Can anyone shed some light on this please?
...