Questions tagged [singlechildscrollview]
180 questions
0
votes
3 answers
Flutter TextFormField hide when keyboard appears
I'm new on flutter and i have a problem.
When i click on the textformField, this one disappears
I put in red the container but normaly it's transparent
I put a stack, then in the background the GoogleMap which is extend. And to have a research…

Clemens Titou
- 9
- 1
- 3
0
votes
1 answer
page view inside sliver to box adapter. flutter
i want a page view inside sliver to box adapter.
SliverToBoxAdapter(
child: PageView.builder(
itemBuilder: (context, position) {
return Column(
children: [
…

Abin Sunny
- 89
- 1
- 7
0
votes
1 answer
How can I remove the empty space from the Data table?
Expected result
I used SingleChildScrollView to make it scrollable but if the device size is big, there are empty spaces on the side.
SingleChildScrollView
How can I remove this that the content will stretch inside?
If I remove the…

A_Bee
- 101
- 2
- 9
0
votes
2 answers
Flutter: Google Map on iOS not behaving as expected inside Singlechildscrollview
I am using google map plugin in my app inside single child scrollview along with some lists and other widgets. The problem is when I scroll down or up the google map widget sticks to the top or bottom overlaps other widgets as seen below. I tried to…

asif ali
- 118
- 1
- 9
0
votes
1 answer
SingleChildScrollView - Moving from Image to Image
I have few images to display within a SizedBox, which is wrapped around a SingleChildScrollView contained in a Row widget. At the moment it is able to display fine, but stopping in between images during swiping. What I want to achieve is whenever a…

Gary Lu
- 33
- 2
- 5
0
votes
2 answers
Flutter keyboard resize problem on Real Phone
my problem is exactly this; When the application I wrote with flutter works with the emulator, the body resizes when the keyboard is opened, but when I connect a real phone and try it, the keyboard hides the text fields.
Need to set a permission?

SpeedyG1481
- 49
- 1
- 4
0
votes
1 answer
Flutter Error Message Bottom overloaded by 45 pixels
I want to create a login screen using Flutter.
This is my code so far:
Future showInformationDialog(BuildContext context) {
TextEditingController name = TextEditingController();
TextEditingController deadline = TextEditingController();
return…

user2379123
- 85
- 3
- 14
0
votes
1 answer
SingleChildScrollView with controller does not scroll first time
I have a requirement where when user scroll a page up, app bar title should show. And when it is scrolled to the minimum title should hide.
This is because page content also have the title.
I have implemented SingleChildScrollView with a controller…

Janaka
- 2,505
- 4
- 33
- 57
0
votes
3 answers
Container inside SingleChildScrollView doesnt show up without defining width and height
I have a body of scaffold that structured like this :
body : Column(
children : [
Expanded(
child : SingleChildScrollView(
Container (
Column(
//content
)
)
)
),
BottomMenu()
]
)
And the problem is the content would not show up…

Jolzal
- 547
- 7
- 19
0
votes
2 answers
How to convert a Row to a GridView in Streambuilder
I currently have a StreamBuilder nested inside a SingleChildScrollView that returns a Row of widgets, which is scrollable along the horizontal axis. I want to change this to a GridView with crossAxisCount: 2, that is scrollable along the vertical…

Jason Lloyd
- 378
- 7
- 23
0
votes
0 answers
Renderflex object was given an infinite size during layout - flutter error
I wanted to make a SingleChileScrollView with extra height. I wrote a code and earlier if was working but now I see a renderflex object error.
It was working one time and suddenly I see this error. Can someone have a look at it and help?
The below…

programmer
- 25
- 1
- 4
- 11
0
votes
1 answer
How to increase the size of the SingleScrollChildView in Flutter?
I am making an app in which one of the pages is scrollable. I used a SingleChildScrollView to scroll over the page. I need to add more stuff to it and when I do, it gives an error because of the limited height.
Can anyone help me in expanding the…

programmer
- 25
- 1
- 4
- 11
0
votes
1 answer
Keyboard overflowed by * pixels. Unable to use SingleChildScrollView or ListView
On pressing on any of the TextFormField the pixels overflow and I tried using SingleChildScrollView and ListView but the content inside the container disappears. It is the registration page I am trying to make. Maybe its because I am using an…

StarkSrivastava
- 1
- 2
0
votes
2 answers
Scrollable page in flutter
I am new to flutter dart language and was wondering how to make the page scroll.
This is one of the pages of the code which I want to scroll:
class Second extends StatelessWidget {
@override
Widget build(BuildContext context) {
return…

programmer
- 25
- 1
- 4
- 11
0
votes
3 answers
What is wrong with my scrollable listview?
New to flutter, trying to make a scrollable page that contain a long listview. I tried a few different things that I've read on different SO pages, so my code may look bloated. I am not sure why even though the page showed up fine, and the last…

mrwuscience
- 53
- 7