Questions tagged [singlechildscrollview]

180 questions
1
vote
1 answer

Trying to warp my listView inside a SingleChildScrollView

When I try to warp my listView inside a SingleChildScrollView. I don't want my listViewBuilder to scroll separately. That's why is change the physics and shrinkWarp(I don't why is have changed this). I want the two NonScrollable ListView.builder to…
Arud
  • 131
  • 8
1
vote
4 answers

How to increase the size of SingleChildScrollView in flutter?

I am making an app in which one of the pages is scrollable. I used a SingleChildScrollView to scroll over the page. I need to add more stuff to it and when I do, it gives an error because of the limited height. Can anyone help me in expanding the…
programmer
  • 25
  • 1
  • 4
  • 11
1
vote
1 answer

Vertically center content inside SingleChildScrollView with min height of screen height

I am trying to create a web layout that that consists of a scrollable column that has a min height of the screen height but can expand past the screen height if the content is too large. I have been able to create the scrolling container but I…
Brady Edgar
  • 486
  • 7
  • 27
1
vote
1 answer

BottomSheet (DraggableScrollableSheet) with dynamic height when button is pressed

So basically I want to be able to change the visible height of the DraggableScrollableSheet when Button is pressed. Like an arrow that will allow the user to lift up & down specific height. I have the following code so far: return Scaffold( …
1
vote
1 answer

Continuous text in flutter

I want create text with always auto scroll(like label .continuous property in swift). Now I am using SingleChildScrollView with scrollController SchedulerBinding.instance.addPostFrameCallback((_) { …
esfsef
  • 193
  • 3
  • 11
1
vote
0 answers

how can i use SingleChildScrollView in my code flutter?

hello My code for a page is like this. i need to scroll part below appbar. _sheetController = _scaffoldKey.currentState.showBottomSheet((BuildContext context) { return DecoratedBox( decoration: BoxDecoration(color:…
1
vote
0 answers

Hide scrollbar while scrolling is still enabled in flutter

I'm using a SingleChildScrollView. I want to enable scrolling but hide the scrollbar. In Android I used android:scrollbars="none" to accomplish this but cannot seem to find a way to do this in Flutter. All existing questions remotely related to this…
3.14159
  • 267
  • 6
  • 22
1
vote
3 answers

When typing on textfield, keyboard is block the view on flutter

I have a textbox on the bottom of the screen and when I tried clicking it, it gets block by the keyboard. Before pressing the textfield                                             After pressing the…
Aia's Blog
  • 121
  • 6
  • 12
1
vote
1 answer

Android Flutter : I need to set the 'SingleChildScrollView' in the body?

This is my code,I need to set the SingleChildScrollView in the body.I want to scroll the entire screen. @override Widget build(BuildContext context) { return Scaffold( body: Form( key: _formKey, child: Container( …
0
votes
0 answers

why singlechildscrollviewbar is not working, I want it to scroll entire listview.builder

I am adding the scrollviewbar. When I click on the show more, it will expand the card in gridview.builder. As soon as it expands, it shows bottom overflow but instead of that, i want the listview.builder to be scrolled. This masterListMobView is …
0
votes
2 answers

In Flutter, how to extend the bottom-most widget to the bottom of the screen (when conditionally required) when it is within a SingleChildScrollView?

I am working on my first Flutter app (in Android Studio) and I have wasted many hours trying to accomplish the following (including reading every StackOverflow post and webpage I could find). My screen has three sections in a Column, that is within…
JRose
  • 1
  • 3
0
votes
2 answers

Can't use Overflow box inside a scrollable list

I want to use OverflowBox inside a ListView but it doesn't work properly in case of scrollable content but it works perfectly in those cases: If I replace ListView with a non-scrollable widget such as Column. If the ListView content doesn't need to…
0
votes
1 answer

How to make scrollController attach to scrollbar after switching to a different navigation tab

I am building a flutter mobile app. There is a BottomNavigationBar in this page and 2 tabs in it. like this tab1: tab2: in tab1 there is a button in tab2 there is a SingleChildScrollView(code is following) I want to when I click the button, the…
Gotchu
  • 11
  • 1
0
votes
0 answers

Screen overflowing when keyboard appears over dialog in Flutter even after using singlechildscrollview

Here's the code where I'm opening a dialog on click of FloatingActionButton: FloatingActionButton( elevation: 4, onPressed: () { Get.defaultDialog( …
0
votes
0 answers

Flutter TextField blocks horizontal scrolling on Table

I have a table that need to scroll vertically and horizontally. I managed to do this by wrapping the table in 2 scrollviews. My issue is that if the user tries to scroll horizontally by swiping on the textfield, the horizontal scrolling isn't…
Theuno de Bruin
  • 202
  • 2
  • 12