Questions tagged [singlechildscrollview]
180 questions
1
vote
1 answer
Flutter PaginatedDataTable causing overflow when browser is resized
I have a webpage that is enclosed in a List with Scrollbar. The body is a SideNavigationBar and the content. The content portion is PagingatedDataTable. When I resize the browser, I see that scroll works. However, the PaginatedDataTable always throw…

NothingBox
- 345
- 5
- 15
1
vote
3 answers
Flutter: Material Widget And SingleChildScrollView Render Conflict Inside Drawer
This problem only happens inside Drawer
I wanted to shape the ripple effect of my ExpansionTile so I used the Material widget and it works, but when the tile expands, the background color of the tiles below ExpansionTile does not move with…

amir kazemzade
- 21
- 3
1
vote
1 answer
how do i fix vertical flutter overflow?
I'm trying to fix vertical overflow using the SingleChildScrollView but it gives me the error:
FlutterError (RenderFlex children have non-zero flex but incoming height constraints are unbounded.
When a column is in a parent that does not provide a…

Jonathan
- 106
- 1
- 8
1
vote
1 answer
How to make containers constant size and scrollable in both directions?
I have the following simple code:
class TestPage extends StatelessWidget {
const TestPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (BuildContext context,…

GoodMan
- 542
- 6
- 19
1
vote
1 answer
How to make a container scrollable in Flutter?
I have the following page code/widget:
import 'package:flutter/material.dart';
import '../constants.dart';
import '../util/my_box.dart';
import '../util/my_tile.dart';
class DesktopScaffold extends StatefulWidget {
const DesktopScaffold({Key?…

GoodMan
- 542
- 6
- 19
1
vote
2 answers
How to make a screen with Tabs and TabBarViews both scrollable in flutter?
I've been trying to add SingleChildScrollView to my code so that the whole page including Tabs and TabBarViews are scrolled together.
RenderFlex children have non-zero flex but incoming height constraints are unbounded
Horizontal viewport was given…

sinsadong
- 13
- 2
1
vote
1 answer
How can I place a button in a scrollable list with ExpansionTiles in Flutter?
I have a scrolableView with x amount of ExpansionTiles, I need to place the 'Test' button on the bottom of the page, only if a number of tiles are fitting the screen or if they expand within the page, else to push the button off the screen.
import…

Alex Apps
- 317
- 6
- 19
1
vote
0 answers
How to hide/show text selection controls from textformfield when scroll to up and down list?
I am using flutter channel stable 3.0.2 version,
I am facing issue in text selection controls (like cut, paste ) scroll to up when scrolling list , how to resolve it? please help me, I have attach video of facing issue. text selection control…

Binny J
- 11
- 1
1
vote
1 answer
I got a StackOverflowError by SingleChildScrollView
I got an error while running my debug app and i do not know why this error is showing, i tried excluding the SingleChildScrollView but another error showing up and i do not know how to solve it.
The Error i got:
════════ Exception caught by widgets…

Yonathan Tjiptomo
- 11
- 2
1
vote
2 answers
Flutter SingleChildScrollView Sign Up Screen not working
I am trying to create a scrollable sign up screen for when the keyboard pops up but my SingleChildScrollView widget doesn't seem to be working. I don't know whether this has to do with its placement in the stack or the inner column but help would be…

Elbie de Swardt
- 15
- 3
1
vote
1 answer
How to add a row with a textformfield above a singlechildscrollview with a column and a list.builder?
I want to add add a row with a textformfield above the singleChildScrollView, but keep getting rendering errors. Please advise
Widget build(BuildContext context) {
return Scaffold(
body:
SingleChildScrollView(child:Column(
…

Golden Lion
- 3,840
- 2
- 26
- 35
1
vote
0 answers
Modifying scrolling behavior in Flutter ScrollView
I have a problem in singleChildScrollView. Below is my code:
return Scaffold(
body:SingleChildScrollView(
child:
Column(
children:[
//...
Container(height:500,child:listview.builder())
],
//...
)),
);
What I…

Student
- 341
- 1
- 2
- 12
1
vote
1 answer
The following assertion was thrown during layout: A RenderFlex overflowed by X pixels on the bottom
Hi I'm new to flutter and im trying to build a simple sign in/sign up screen but every time the keyboard pops up it keeps getting this render error on the relevant widget Column, already changed de resizeToAvoidBottomInset to false but I would like…

StarDestroyerACF
- 13
- 4
1
vote
2 answers
SingleChildScrollView inside SingleChildScrollView - can't scroll parent
I got a SingleChildScrollView looking like this:
Widget build(BuildContext context) {
return SingleChildScrollView(
physics: BouncingScrollPhysics(),
scrollDirection: Axis.vertical,
child: Container(
child: Column(
…

Angelina Petzold
- 27
- 6
1
vote
1 answer
Flutter, Overflow, SingleChildScrollView. It's a form inside a screen and SingleChildScollView Fix working for me this time?
I've built a few flutter apps while learning to code and have fixed the "overflow" problem with SingleChildScrollView in the past. This issue is different and I can't find a fix here or elsewhere.
I believe the issue is due to having a 'form' within…

WillWalsh
- 193
- 2
- 12