Questions tagged [singlechildscrollview]

180 questions
0
votes
1 answer

Please can someone explain this exception for me and why "A RenderFlex overflowed by 125 pixels on the bottom"

SingleChildScrollView( child: Container( height: MediaQuery.of(context).size.height, width: MediaQuery.of(context).size.width, //height: 270.0, padding: const EdgeInsets.all(25), color:…
0
votes
2 answers

How to scroll two SingleChildScrollView same time in Flutter?

I want to scroll two SingleChildScrollView same time vertically.
erkaneroglu
  • 198
  • 6
0
votes
1 answer

How to make a chart scrollable horizontally in Fltter

I am using syncfusion_flutter_charts library to display data in form of SplineAreaSeries. I need to make the graph able to be scrollable to view numerous data. I tried to use SingleChildScrollView and changed the scrollDirection to Axis.horizontal.…
0
votes
0 answers

Flutter Android 13 Issue With SingleChildScrollview and Gesture detector

I was trying to create a single scroll view (the child a form of TextFilelds ) and add a gesture detector to move to next screen. On Android 13 Devices as long as the scroll view is at the extreme bottom or top it doesn't allow to press gesture…
0
votes
0 answers

how to remove margin created by SingleChildScrollView

I am using SingleChildScrollView() to wrap a column of containers. The scroll is working, but I get a margin on the top of my selector. The top white space is gone when i remove the wrapper SingleChildScrollView() . this is without…
Kelly Tang
  • 19
  • 5
0
votes
2 answers

In Flutter, does a ListView Builder inside a SingleChildScrollView still lazily load?

In Flutter I have a SingleChildScrollView with a column as the child. Inside that column is 3 widgets: A ListView.separated widget, a sized box, and a different ListView.separated widget. The ListView.separated widgets have shrinkWrap set to true…
user892028
  • 175
  • 1
  • 10
0
votes
2 answers

Variable padding that changes along with AppBar size

I created a frosted AppBar has a SafeArea wrapping. I want a scrollview that scrolls under it, but i'm unable to code a variable padding that adds the SafeArea of the AppBar to the top padding of the SingleChildScrollView. Does anyone have any tips?…
0
votes
2 answers

How to fix SingleChildScrollView and InteractiveViewer gesture conflict

I use InteractiveViewer inside the SingleChildScrollView, this is my full code: import 'package:flutter/material.dart'; import '../constants/images.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { final…
amir_a14
  • 1,478
  • 10
  • 15
0
votes
3 answers

How can i make a ListViewBuilder to have a dynamic height according to the number of items that it build?

I'm having quite lot of problems to render the items of a ListViewBuilder with a dynamic height, meaning that the height will change accordingly to the number of items that i want to render. Moreover, the listview is NeverScrollable since i wrapped…
0
votes
0 answers

In Flutter, navigating to a page that have a heavy widget is too slow in an old device environmnet

I'd like to implement Survey Platform A survey has many questions and each of them has a part (ex. Part1, Part2, and so on...) Each part is displayed in one page. (One page equals to one page) After user finished the survey, they could check the…
Jun
  • 451
  • 4
  • 16
0
votes
1 answer

How to tap outside of the BottomSheet to dismiss it?

I have a showModalBottomSheet widget inside SingleChildScrollView. When the showModalBottomSheet pops up, it leads me to a DraggableScrollableSheet with a custom height. It all works fine. But somehow, it seems like whenever I do custom height using…
0
votes
0 answers

Added horizontal Listview inside Scrollview, now how to detect which one is scrolling in flutter

I have a parent SingleChildScrollView and I added a horizontal ListView inside it. Now while scrolling the scrollview, I am doing one animation. But don’t want to do that animation happen while scrolling child ListView. I have Added listener but it…
Dhritiman
  • 11
  • 1
0
votes
2 answers

SingleChildScrollView with ListView in a showModalBottomSheet

I am using a SingleChildScrollView with a ListView in a showModalBottomSheet but the keyboard is hidding the field when the user is filling it. showModalBottomSheet( context: context, isScrollControlled: true, enableDrag:…
0
votes
2 answers

list view in column wrapped inside singlechild scrollview not scrolling flutter

I want to achieve scrolling inside the list view in flutter.But the entire screen is scrolling here.Tried wrapping listview inside container and then in single child scroll view but that also doesnt work [1]: https://i.stack.imgur.com/1K3q0.png …
0
votes
2 answers

flutter scrollview and SingleChildScrollView throws bottom overflow and is not scrolling

The widgets inside the child scroll view doesn't scroll and throws bottom overflow exception on the screen when there are more widgets in that list view. I am not sure where I am doing a mistake. home: Scaffold( body: Column( …
Faisal
  • 162
  • 1
  • 12