Questions tagged [singlechildscrollview]
180 questions
1
vote
1 answer
SingleChildScrollView inside PageView
I got four different Tabs at my Bottom Navigation and one of those tabs (the last one) is a SingleChildScrollView. I want that I can click on the Icons on the Bottom Navigation AND also can scroll trough the App. That works fine, only the last tab…

Angelina Petzold
- 27
- 6
1
vote
1 answer
SingleChildScrollView is not working properly
I wrap the whole body with SingleChildScrollView, it works when i scroll down, but can't able to scroll up.
here is the code
body:SingleChildScrollView(
scrollDirection: Axis.vertical,
child:
Stack(children: [
calendar(),
…

TimeToCode
- 1,458
- 3
- 18
- 60
1
vote
3 answers
flutter SingleChildScrollView remove item
I have the following code where I generate a list of items(data is taken from Firebase). I would like to implement a functionality to remove items but I don't know how to access the list and how to remove items:
class _MyOfferState extends…

user1209304
- 408
- 1
- 5
- 26
1
vote
0 answers
Bottom overflowed by.. in the following code... I dont know where to put the scroll condition
I am building an E Commerce app.. i have difficulty in this part of code.This code UI is not scrollable.. i need it scrollable.. I don't know where to add singleChildScrollView..The UI implementation of listview results in bottom overflowed.
code…
1
vote
3 answers
ScrollBar and SingleChildScrollView not working
I am trying to display list of titles and subtitles in scrollview but the scrollview is not working. I am getting this error:
RenderBox was not laid out: RenderRepaintBoundary#d93c1 relayoutBoundary=up4…

Sarang Pidadi
- 33
- 1
- 1
- 6
1
vote
1 answer
How to make a Form scrollable inside Column
I have split my screen into three Expanded widgets, the middle one is a Row of two TextFormField, when I run the app and try to write some text, the input field doesnt show:
Here is a picture explaining the situation,
the input field is not…

Ishak Hari
- 148
- 15
1
vote
1 answer
How to avoid overflow by using SingleChildScrollView
I am very new with flutter and im very stuck in a positioning.
Does anybody know where should I place the "SingleChildScrollView"? I get stack overflow 148PX.
my code looks like this,i tried in all the posible ways, but i still didnt managed how to…

power941
- 105
- 3
- 6
1
vote
1 answer
Flutter: Flexible column children inside a SingleChildScrollView
I have an app screen with a title on the top, a few buttons on the bottom, and an input form in the rest of the center.
What I'm trying to achieve: I want the input form children (i.e. the different input fields) to be spread out on the vertical…

Maor Barazani
- 680
- 3
- 12
- 31
1
vote
0 answers
How to start next widget that is after one ScrollVIew?
I have widget after the scrollview. The Tree of Widget seems like:
SingleChildScrollView:
SingleChildScrollView:
Container:
While scrolling i got scrolled over second scrollview only. Can't get the container. How to start the Parent…

sagar poudel
- 19
- 2
1
vote
1 answer
showModalBottomSheet with SingleChildScrollView. how to recognize when reaches end of the scroll in Flutter?
I have to display a bottomModelSheet. This bottomModelSheet contains Terms and conditions details and the Accept Terms and Conditions button(By default disabled) at the bottom.
When the user reaches the end of the scroll then I need to enable this…

Cherry
- 699
- 1
- 7
- 20
1
vote
2 answers
How to use ScrollView without messing the order of the actual layout?
I'm making a login screen, and from what I learned, I need to use SingleChildScrollView in order to prevent 'yellow-stripes' issues when TextFields are focused.
Whenever I add SingleChildScrollView, perhaps I lose any kind of widget alignment as…

Daniel
- 25
- 2
- 7
1
vote
1 answer
How to move textfields above a button which moves up with keyboard in flutter
I have a button aligned to the bottom of the screen so that whenever keyboard opens, the button will hold position above the keyboard. This button hides textfields which is wrapped in a column inside singlechildscrollview.
(TextFields move upwards…

azar
- 13
- 5
1
vote
0 answers
DefaultTabController & SingleChildScrollView & TabBarView is not working collectly
I want to implement like attached image.
But I get error again and again...
A page that displays contents on top of the screen.
Below that, I want to display TabBar and TabBarView.
Whole page can be scrollable.
How can I do?
How do you implement…

ashdik
- 82
- 9
1
vote
2 answers
How to take available space using container in Flutter
I was trying to make an app with SingleChildScrollView and ListView using below code
SingleChildScrollView(
child: Column(
children: [
maintile(),
Container(
padding:…

Jacob George
- 65
- 8
1
vote
2 answers
Flutter - SingleChildScrollView within fixed height
I am making a split-view widget that can adjust their ratio by dragging bottom widget.
The thing is that I want to put some big widget on the bottom so that it can be seen fully when I extend it, only partially if not.
Split-view design here
And…

hyobbb
- 332
- 1
- 9