Questions tagged [singlechildscrollview]

180 questions
0
votes
2 answers

Wrap DecorationImage with SingleChildScrollView! it is Possible?

Can We wrap DecorationImage with SingleChildScrollView or any other property to pass offset to image !
0
votes
2 answers

How To have an SingleScrollView have next to a Container

the green container should be a static widget the red ones are a FutureBuilder with a singleChildScrollView Here is my code: FutureBuilder( future: getMoodData(), builder: (BuildContext context, AsyncSnapshot>…
Moritz
  • 421
  • 1
  • 3
  • 13
0
votes
1 answer

PageView not showing inside SingleChildScrollView

I created ViewPager using PageView but when i put it inside SingleChildScrollView it stops showing.However when i put it outside SingleChildScrollView it shows fine.How to show PageView inside SingleChildScrollView? Expanded( flex: 8, …
0
votes
0 answers

Vertically wrap items of different sizes inside horizontal scrollview - Flutter

I would like to display chips inside of a horizontal scrollview, and display as many rows as can fit in a specified SizedBox height. Any chip that doesn't fit on the screen should be scrolled to horizontally, as shown in the image below. However, I…
J Olson
  • 167
  • 2
  • 8
0
votes
1 answer

How to make ExpansionTile scrollable when end of screen is reached?

In the project I'm currently working on, I have a Scaffold that contains a SinlgeChildScrollView. Within this SingleChildScrollView the actual content is being displayed, allowing for the possibility of scrolling if the content leaves the…
Samaranth
  • 385
  • 3
  • 16
0
votes
1 answer

Why this produces `blank white` a flutter bug?, all the complete code is included

Why this produces blank white? I need the scrolling window to scroll underneath a widget that stays still. All the complete code is included below. Every widget nested by each of their ancestors (example inheritance image is provided below). I…
0
votes
1 answer

Flutter - Bottom Overflowed Issue when Keyboard is Presented

I have a view that contains a Column of Widgets. One of the Widgets contains a button that will open a bottom sheet. Within that bottom sheet, a user can tap a TextField and open the keyboard which will keep the bottom sheet above the keyboard. When…
Luke Irvin
  • 1,179
  • 1
  • 20
  • 39
0
votes
2 answers

How to add scroll on visibility on flutter

i want to make scrollview in visibility but when i try to add SingleChildScrollView it still doesn't work, the result is like this This is the result and what I want the application will run as shown below its main purpose is when the…
Meng -
  • 9
  • 1
0
votes
1 answer

initialScrollOffset didn't work in SingleChildScrollView

As you can see there is a red horizontal SingleChildScrollView, it's offset will increase 20 every time I tap the scroll button. Here is my code: import 'package:flutter/material.dart'; import…
无夜之星辰
  • 5,426
  • 4
  • 25
  • 48
0
votes
1 answer

Flutter SingleChildScrollView with a Column that has Expanded as a child

i am trying to make the home screen scrollable with SingleChildScrollView but reading other questions on Stackoverflow, it seems that Expanded causes problems. I am new to Flutter, so i am here to ask you if you know how could i fix this. I noticed…
0
votes
1 answer

Flutter: use Expanded inside a SingleChildScrollView

I have a page for filling out forms There is a flexible Expanded between each input box for interval. Their flex is different. I hope that when the keyboard pops up, these Expanded will be compressed first, and if the height is still not enough,…
bppleman
  • 171
  • 6
0
votes
1 answer

"The named parameter keyboardDismissBehavior isn't defined" without pull_to_refresh

As the title, I got a error message that the singleChildScrollView does not has keyboardDismissBehavior property. Some articles said that this issue is caused by the version of pull_to_refresh package. But I didn't use that package in my project.…
Joe Lam
  • 23
  • 5
0
votes
1 answer

SingleChildScrollView height to use for containing ConstrainedBox max height- Flutter

Is there a way to work out the complete height of a SingleChildScrollView so it can be used setting the ConstrainedBox height. I have a SingleChildScrollView which contains a number of widgets including columns and an Expanded which can vary in…
0
votes
2 answers

dart - flutter single child scroll view changes widget layout of screen

I'm trying to make my flutter page scrollable using the single child scroll view widget. But after doing so the entire widget layout of the screen is messed up. Below I have attached a screenshot of my app, and it shows what i wanted to happen but…