Questions tagged [singlechildscrollview]

180 questions
0
votes
1 answer

needed all the containers in single child scrollview of the same height of the largest container

Here is my code for adding scrollview class ScrollPage extends StatelessWidget { const ScrollPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const…
Pramanshu
  • 71
  • 6
0
votes
2 answers

SingleChildScrollView now working inside Column

I was to layout a page that has a side menu and a top menu that don't move. I wanted the rest of the page to be scrollable. I have wrapped my column in a singlechildscrollview but nothing happens. I still get an overflow error and cannot scroll.…
Chad
  • 9
  • 2
0
votes
1 answer

SingleChildScrollView not scrolling - Flutter

I have a SingleChildScrollView widget inside a SafeArea that is not scrolling. I want to make all the screen scrollable, but it is not scrolling in no way. Here is the code: Scaffold( body: SafeArea( child: SingleChildScrollView( …
Tia
  • 117
  • 1
  • 9
0
votes
2 answers

Why the Flutter (Dart) code below doesn't display a scroll bar?

We can scroll the text up and down but no scroll bar is shown. My purpose in showing the scroll bar was to make the user aware that there is more text below. showDialog( context: context, builder: (BuildContext context) { return…
0
votes
2 answers

I can't use Listview.builder inside SinglechildScrollview

body: ( SafeArea( child: SingleChildScrollView( child: Column( children: [ ListView.builder( itemBuilder: (context,index) { …
0
votes
1 answer

SingleChildScrollView is not scrolling in a datatable

i trying to do a dynamic table when the user touches add botton a row will be displayed,in the final column i have a group of bottons, when the user touches the add botton will be add a form widget, but if add so much, the scrolling dont work, i…
0
votes
0 answers

SingleChildScroll adding a large inset on-top of the Keyboard

I'm trying to create a scrollable register form for a Flutter app. I got SingleChildScroll to work, but theres a large padding or inset or something on top of the keyboard that can block content. You can see if pretty well If I scroll all they way…
Watson221
  • 73
  • 7
0
votes
0 answers

I am trying to make stack layout scrollable using SingleChildScrollView but it's not scrolling. Is SingleChildScrollView should be used here?

@override Widget build(BuildContext context) { return Scaffold( body: SafeArea( child: Stack( clipBehavior: Clip.none, children: [ Positioned( left: 0, right: 0, child: Container( height: 350, decoration: const BoxDecoration( gradient:…
0
votes
1 answer

Unregister Field from State

Unregister Field from State 7.7.0 version: I am getting _fields.containsKey(name) after removing Text Field from a List I have dynamic count of Cells (each cell contains one TextField) in my Scroll View, the User is also able to remove Cells. After…
A. Amini
  • 521
  • 8
  • 15
0
votes
2 answers

How to make scrollable part of page in Flutter?

I can't make scrollable the part highlighted in red And this is my code: class Home extends StatelessWidget { const Home({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( body: Stack( …
0
votes
1 answer

SingleChildScrollView cannot be shown

SingleChildScrollView cannot be shown on the Homepage.dart which use to display the card from Homepagecard.dart, but no error is stated. Is any problem happening with my code? SingleChildScrollView cannot be shown on the Homepage.dart which use to…
0
votes
1 answer

GoogleMap card in Column in SingleChildScrollView

I am using the GoogleMap Widget from the google_maps_flutter package. I have placed the GoogleMap widget in SizedBox with width and height of 300 in a Column with other children. I have placed the Column in a SingleChildScrollView because there are…
Miro
  • 364
  • 1
  • 12
0
votes
2 answers

Flutter ; Vertical ListView inside a column(inside another column) causing an overflow

class Episodes extends StatefulWidget { const Episodes({super.key}); @override State createState() => _EpisodesState(); } class _EpisodesState extends State { final seasons = ['Season 1', 'Season 2', 'Season 3']; …
0
votes
1 answer

Take content height or Screen height which ever higher in flutter

I am designing a login and sign up screen. I want to use the entire screen height if the content is less than screen height and use Expandable() inside the column else I want it to be scrollable. to avoid bottom over flow. I have tried this two…
Riyas Tp
  • 68
  • 7
0
votes
0 answers

How to scroll specific item in Singlechildscrollview?

I have a SingleChildScrollView, its scrollDirection is set to Vertical with number children widgets placed inside a ListView.bulder Widget. I want to programmatically scroll to the middle widget in the ListView and when the middle widget is…
Hossain72
  • 19
  • 3