Questions tagged [singlechildscrollview]

180 questions
3
votes
2 answers

What is the difference between ListView and SingleChildScrollView+ListBody in Flutter?

I have a question about comparing ListView and SingleChildScrollView containing a ListBody. Seemingly, those two results look the same. But I'm curious about whether those two have a difference in function. In my opinion, it could be the part of…
chunzhi23
  • 59
  • 1
  • 5
3
votes
1 answer

Flutter Nested list scroll parent when reach to end/start of inner list

I am implementing a nested list in Flutter where need to start scrolling the parent list when it reach to the end/start the inner list. I tried with several ways, no one lucks. This one is the last approach i tried with. This works for top to bottom…
3
votes
0 answers

Cannot scroll to the bottom of the page flutter (bounces back)

SingleChildScrollView can't scroll to the bottom of the page (bounced back). I have try to adding padding bottom inset as the following link but it did nothing. I dont want to use SizedBox as last childern of the column for this case. Maybe you guys…
Soveyyy
  • 274
  • 4
  • 17
3
votes
1 answer

Flutter web - horizontal singlechildscrollview cannot scroll with mouse wheel

I want to scroll a SingleChildScrollView() horizontally with mouse wheel in Flutter web but the SingleChildScrollView() is inside a ListView() and when i try to scroll it with the mouse wheel it scrolls the ListView(). This is my code child:…
3
votes
2 answers

Cannot put ListView inside Column in flutter?

I need listview inside the Column(which is the child of SingleChildScrollView), but it is not showing up! import 'package:flutter/material.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; class BalanceScreen extends…
Akbar Pulatov
  • 2,955
  • 2
  • 16
  • 33
3
votes
1 answer

Is SingleChildScrollView with "Table" Widget possible?

I split the screen in half by 3/5. I added the "table" widget to the bottom part. But I want the bottom to be scrollable. I added SingleChildScrollView but it doesn't work. What should I do? void main() { runApp( MaterialApp( home:…
pirekare
  • 151
  • 2
  • 10
3
votes
2 answers

SingleChildScrollView , Problem with spaces on the child Column

I had a BOTTOM OVERFLOWED BY ** PIXELS when i tried to open the phone keyboard so i wrapped my Column in a SingleChildScrollView But somehow it became pushed to the top and the MainAxisAlignment.spaceEvenly stopped working so i made some space…
ItsYasser
  • 124
  • 1
  • 11
3
votes
2 answers

Flutter - Container height same as child Text.length?

Good Evening fellow Developers, I am trying to find a way for my parent container to have its height set to be equal to the child text widget content. The text (textDes) in the Text widget is changing. It can be short or long and for that reason I…
Biobrolly
  • 113
  • 2
  • 12
3
votes
3 answers

Flutter - SingleChildScrollView fixed widget

there is an ability to have a SingleChildScrollView into a Scaffold that have another widget over the SingleChildScrollView that does not need to be scrolled. For example I've a SingleChildScrollView and I need to add a fixed button into a specified…
Massimo Caroccia
  • 417
  • 2
  • 6
  • 14
2
votes
1 answer

How to fix the position of a widget while scrolling on SingleChildView in flutter

I have a stateful widget class where I have a SingleChildScrollView which takes Column and a few widgets let's say w1, w2, w3, w4, and w5 all are scrollable what I want to achieve is when the user scrolls up the screen w1, w2, w4, w5 should behave…
Adii
  • 23
  • 5
2
votes
2 answers

change color of scroll bar indicator in SingleChildScrollView

How can I change color of scroll bar indicator in SingleChildScrollView, the SingleChildScrollView doesn't have option color or something for style, if we can't change color of SingleChildScrollView do we have any alternative for that
e Res
  • 101
  • 1
  • 10
2
votes
2 answers

How to add a scrollbar to a scrollable container with flutter/dart

The code below represents a scrollable container. I would love to add/implement a scrollbar on one of the container's sides. I know this is possible with ListView/GridView but is it possible with SingleChildScrollView? Thank you for the…
sebdoy
  • 111
  • 2
  • 14
2
votes
3 answers

Cannot Scroll ListView inside FutureBuilder

I have tried almost all the solution on stackoverflow like using Expanded widget with single child scroll view and physics property and what not but still cannot enable scroll inside futurebuilder which occupy second half of my screen, the first…
2
votes
1 answer

Flutter - How to use Carousel Slider and SingleChildScrollView?

I have a Carousel Slider in my page which able to scroll horizontally. I also uses SingleChildScrollView to slide the whole page vertically. But the problem is, when I try to scroll the page (vertical), when my finger gets to scroll on the slider…
Jovan
  • 21
  • 1
  • 2
2
votes
2 answers

How to add multiple ListView to a Column in a SingleChildScrollView in Flutter?

Okay, it sounds strange, but I'll explain. ListView <- Column <- Column <- (Column <- SingleChildScrollView <- Scaffold) ----- TemplatePage I have a SingleChildScrollView which is my TemplatePage, so everything it is going to scroll. Inside my…
Daniel Roldán
  • 1,328
  • 3
  • 20
1
2
3
11 12