Questions tagged [singlechildscrollview]

180 questions
0
votes
4 answers

Flutter : SingleChildScrollView doesn't work with columns and grid view. Why?

I can't scroll to see my lower grid view. Why is that? What should I change to make this work? Please help!!! Thank you in advance. Scaffold( body: SingleChildScrollView( child: Container( child: Column( …
user13946744
0
votes
1 answer

Incorrect use of ParentDataWidget

i get Incorrect use of ParentDataWidget. problem I tried to use Column inside SingleChildScrollView but didn't work, I replace it with ListView here is my code return Scaffold( body: Directionality( textDirection:…
Husamuldeen
  • 439
  • 1
  • 8
  • 21
0
votes
1 answer

Unable to scroll on widget even after wrapping column() with SingleChildScrollView()

Here is the root widget . The widget has a child BuyerPostList() which is a ListView type of widget. I removing the SingleChildScrollView() gives a render exception .After adding it the error no longer appears but the page is still not…
Bright
  • 707
  • 2
  • 10
  • 22
0
votes
2 answers

Flutter - How to make a Material Button stationery while scrolling page

ADDED PICTURE: Edited: June23, 2020 for clarification... I. need these two buttons to not move at all and stay at the same position, when I scroll these buttons are stationary but as the page scrolls the movement of the page moves the buttons so…
0
votes
1 answer

Flutter : When textfield is enabled, background image moves upward. "resizeToAvoidBottomInset" disables scrolling. Where am I going wrong?

My login screen has a background image. When the user taps on textfields, the container must go up so that the textfields/button does not hide under the keyboard. Below is my code and it works fine. But when the textfield is enabled, the background…
ABM
  • 565
  • 7
  • 18
0
votes
1 answer

Horizontal carousel for non-dynamic container widgets in flutter

I'm trying to build a horizontal carousel of container widgets - i.e. the user simply scrolls horizontally to view the 6 container widgets I have. How can I implement this? I have tried using SingleChildScrollView() - and placed in there a Row()…
houba
  • 496
  • 7
  • 20
0
votes
1 answer

Cant change column axis alignment inside a SingChildScroll view

i wanna add spacing between my widgets inside the column without hard coding every SizedBox and give them certain heights, i want to set it directly on the column but none of the alignment options work, what am i doing wrong? whats causing…
azheen
  • 897
  • 4
  • 15
  • 30
0
votes
2 answers

Flutter - Listview in scrollable Page

I would like to build a scrollable page which list different widgets (in a listview). Basically, my idea was to have the following setup: SingleChildScrollView (Container (Column (... Expanded( ListView)))) This however only works with a fixed…
Nicolas O
  • 143
  • 2
  • 12
0
votes
1 answer

Viewport for the textbox is not showing properly using singlechildscrollview in flutter

hi guys to all who can help me figure my code, import 'package:flutter/material.dart'; import 'package:survey/widgets/widgetlist.dart'; import 'dart:ui' as ui; class Item { Item(this.name); String name; } class createnewsurv extends…
Aia's Blog
  • 121
  • 6
  • 12
0
votes
1 answer

SingleChildScrollView is not working or I'm doing something wrong

I have a login page with two textField when I have to type keyboard hides login Button and other fields. Widget build(BuildContext context) { return Scaffold( resizeToAvoidBottomPadding: false, body: Container( child: SingleChildScrollView( …
-1
votes
1 answer

Flutter responsive column

I have several containers which have a different content, eg. checkbox, text... They are placed in column which is inside SingleChildScrollView (scroll if the screen becomes too tiny). I try to use extended flex and spacers to increase the size of…
-1
votes
1 answer

I have a button to put at the bottom right inside a singlechildscrollview. How can I do?

I would like to put a button at the bottom right inside a column contained in a singlechildscrollview, what can I do? This is my code: Widget build(BuildContext context) { double altezza = MediaQuery.of(context).size.height; return…
Jonathan
  • 106
  • 1
  • 8
-1
votes
4 answers

How to Expand Single Child Scroll View in Flutter

I am attempting to expand a single child scroll view, but not having any luck. I have tried expanding the single child scroll view, wrapping in a container, and / or expanding children widgets and either I get an error or it does not expand. I am…
bensmith87
  • 135
  • 1
  • 1
  • 12
-1
votes
1 answer

How can i scroll horizontally with scrollabe in vertical scrollabale widget(SinglechildScrollview)?

How can i scroll horizontally with scrollabe in vertical scrollabale widget(SinglechildScrollview) ?
-2
votes
1 answer

How do you implement a SingleChildScrollView on a column with nested widgets?

How do you implement a SingleChildScrollView on a column with nested widgets? The code snippet causes an error to be thrown, help a flutter newbie here!! In the widget below I am attempting to wrap its content in a scrollable container, when…
ukholly
  • 45
  • 1
  • 8
1 2 3
11
12