Questions tagged [singlechildscrollview]
180 questions
2
votes
2 answers
SingleChildScrollView won't work? How to adjust layout when soft keyboard appears in flutter?
I'm a beginner in a flutter. The keyboard appears but the layout doesn't resize to keep it in view. I also checked with SingleChildScrollView but won't work. How to adjust layout when soft keyboard appears in flutter?
Here is my class :
return new…

SAOUD SALIH HASSAN
- 362
- 5
- 19
2
votes
3 answers
How to scroll withing a widget with a button?
I am building a WebApp in flutter and I have a SingleChildScrollView with some widgets inside. I want the buttons on the appbar to take me to the correspondent widget when I press on the buttons.
Is that possible? Here I attach the part of the…

redboxdev
- 43
- 5
2
votes
1 answer
Is there a Flutter equivalent to Bootstrap Scrollspy?
I am looking for a flutter package that is equivalent to that of Bootstrap’s Scrollspy:
https://getbootstrap.com/docs/4.0/components/scrollspy/
The intended functionality is to have a vertical scrollable list of items with a sticky horizontal…

Kareem
- 41
- 4
2
votes
0 answers
Flutter: Scrollable content to go underneath a blurred widget
I'm trying to build a screen where there is a fixed widget at the top of the screen and another widget which is fixed to the bottom of the screen and in between is a scrollable widget.
I want to have the content inside the scrollable widget scroll…

guranga
- 31
- 1
- 5
2
votes
2 answers
SingleChildScrollView not working in a nested Column. My second column is not scrolling using SingleChildScrollView
SingleChildScrollView not working in a nested Column. My second column is not scrolling using SingleChildScrollView
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Column(
…

Md Shahriar Hossain
- 19
- 4
2
votes
4 answers
Flutter listview at the end of its content scrolls screen
I'm wondering if it is possible to have a vertical ListView with fixed height in a SingleChildScrollView and when there are no more contents in the vertical ListView the scrolling is applied to the whole screen (SingleChildScrollView)
something like…

Zozo
- 185
- 1
- 2
- 15
2
votes
1 answer
Flutter SingleChildScrollView with Expanded column child
I'm trying to archive a layout similar to the one the image with a top fixed area (red), and a scrollable area (yellow) with some text fields on top(Text 1, Text 2) and one terminal element at the bottom of the scrollable area (* Bottom Text). I…

Ares91
- 506
- 2
- 8
- 27
2
votes
2 answers
Flutter scroll issue - A RenderFlex overflowed by 192 pixels on the bottom
I'm building a form with 4-5 form fields. However, when I try to enter the data, it throws the below error
Performing hot reload...
Syncing files to device sdk gphone x86 64...
Reloaded 3 of 512 libraries in 363ms.
W/IInputConnectionWrapper(21437):…

calculus
- 87
- 15
2
votes
1 answer
How to scroll only the tabbarview and set tabbar as fixed in top using SingleChildScrollView
when I am not giving the height property in a container of tabBarView it is giving an error and when wrapping with SingleChildScrollView it is not scrollable and the bottom gets overflowed when input keyboard is raised. But, when I place…

Rohit doddapani
- 21
- 5
1
vote
0 answers
Giving WebView an unlimited height inside SingleChildScrollView in Flutter
I am currently working on a Flutter project that renders article data from an API in an article screen inside my app. Inside the content from the API, tweets are embedded. I've created the code for the tweets to be rendered properly by using the…

Joachim
- 11
- 1
1
vote
2 answers
How to make the child of a SingleChildScrollView full width
I have a DataTable widget which very occasionally spills off the screen. So I nested it in a SingleChildScrollView, but in most situations, this uglifies the DataTable. The DataTable no longer defaults to filling its parent width, but instead…

Sam
- 1,659
- 4
- 23
- 42
1
vote
1 answer
Flutter - How to create a horizontal scrollable row?
I want my row to be scrollable and this row has multiple columns. Each column has a container. How to implement this in a flutter. Placing the row in SingleChildSCrollView, my entire screen becomes blank. Can anyone please suggest me a good option…

Priya
- 67
- 6
1
vote
2 answers
Single Child Scoll View doesn't scroll up screens when soft keyboard appears in Flutter Webview Plugin
Here is my main.dart
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: true,
body: SingleChildScrollView(
child: SizedBox(
height:…

Code_Otaku
- 21
- 2
1
vote
1 answer
Problem with Flutter: SingleChildScrollView - no scrolling
I have a question, in my mini app I wanted to add a SingleChildScrollView widget.
I checked tutorials, guides, stackoverflow, I added Expanded, Column, Container before and nothing - still this function doesn't work as it should - not…

Łukasz Szumowski
- 59
- 7
1
vote
2 answers
Adding singlechildscrollview hiding all widgets
If I add a SingleChildScrollView in this Flutter screen, all my widgets disappear. I get a blank white screen. This is my code without scroll:
class _HomePageState extends State {
@override
Widget build(BuildContext context) {
…

Ehsan Abid
- 43
- 6