Questions tagged [singlechildscrollview]

180 questions
0
votes
1 answer

Keyboard hide the textfield : SingleChildScrollView does not work

I am desperate to resolve this issue. I made this simple page... return Scaffold( body:SingleChildScrollView( child:Column(children: [ TextField(), TextField(), TextField(), …
Chloé
  • 331
  • 1
  • 5
  • 14
0
votes
1 answer

Change the color of a container based on the position of a SingleChildScrollView in Flutter

I have an app that shows its content in a SingleChildScrollView. There is Container with a transparent color that I'd like to change the color of to red when the SingleChildScrollView is scrolled to any other position than the start position and…
0
votes
1 answer

In Scrollable Widget Google Map Widget Shifting Its Camera At Screen Edges (In case of fragment view)

In scrollable widget, when google map come to screen edges, its camera position slightly shifting. And it produces lagging Is there an any way to prevent this behavior. Its like google_map trying to reposition its camera. I think this is like an…
0
votes
1 answer

Screen scroll not starting from beginning - Flutter

I am helping contribute a code and am stuck on a scrolling bug in flutter. The screen when opened is started from the Google Maps widget like this But when I hold the screen and scroll above then the top content is displayed like this Now, I cannot…
0
votes
3 answers

Flutter Stack Widget - SingleChildScrollView Causing Issues

My stack widget (fancy_on_boarding) was overflowing and/or getting cut off in landscape mode based on the clipping behavior. Any way to resolve so that the widget just scrolls in landscape and I don't get an overflow error? Background below: I tried…
0
votes
2 answers

Flutter: Page doesn't scroll when have listview in page

I have listview in scrollable page. After scroll listview down to the bottom and go back to the top of the listview it won't able to scroll the page. However I try to wrap listview in the Singlechildscrollview but it won't…
0
votes
0 answers

Scrollbar is not visible when wrapping listView Builder with SingleChildScrollView or ListView

**> Here is my code. it contains a ListView builder which is wrapped with RawScrollBar widget and they both wrapped with SingleChildScrollView Widget. I want a show ScrollBar in ListView.Builder** Scaffold( backgroundColor: kPrimaryColor, …
0
votes
1 answer

How to use focus on RichText in flutter?

I have a list of text span like this var spans = [ TextSpan(text: content, style: style), TextSpan(text: content, style: style) //and 100 more ] I am loading this inside SingleChildScrollView like this. SingleChildScrollView( …
0
votes
1 answer

Flutter soft keyboard covering textfield and singlechildscrollview not working

Ok so I've spent the last 3 days watching singlechildscroll videos and reading forums and everyone says use singlechildscroll. For the life of me I can not get this widget to work with my signup page. I've placed this widget at almost every level…
0
votes
1 answer

ListView inside Stack Inside SingleChildScrollView

I need to scroll the whole screen, i am using (single child scroll view => stack => ListView.builder). but there is no scrolling. however i am using: shrinkWrap: true, physics: NeverScrollableScrollPhysics(), The Code Is: return Scaffold( …
user16906111
0
votes
1 answer

How to make able to scroll ListView inside SingleChildScrollView?

How to make able to scroll listview inside SingleChildScrollView? That's right, normally the list view scrolls even if the parent is a SingleChildScrollView. But my case is special because I used NotificationListener( …
dontknowhy
  • 2,480
  • 2
  • 23
  • 67
0
votes
0 answers

controller for SingleChildScrollView

I have a SingleChildScrollView and I want to use ScrollController for it. because I want to when the scroll, Reached the top of the page, physics become NeverScrollView . I want to scroll my list and when I reached the top of the page, can scroll…
user17838882
  • 93
  • 2
  • 14
0
votes
2 answers

flutter jump to another widget

I want to click on the button and jump to the next widget in my SingleChildScrollView but I have to pass height in the controller and I have a text widget and I don't know what is the height of text because there came from the server. so can anyone…
user17838882
  • 93
  • 2
  • 14
0
votes
2 answers

How do I make the top three widget scroll with the rest of the page?

I have the below code. I need to make the StorySwipeList, _SearchBar and SizedBoxes scrollable along with the rest of the page. The Listview Builder scrolls no problem. But the top StorySwipeList, Sizedboxes and _searchBar do not want to scroll with…
nerdMonkey
  • 107
  • 1
  • 14
0
votes
1 answer

Flutter - How can I dismiss SelectionControls when scrolling?

I am using SelectableText inside SingleChildScrollView. SingleChildScrollView( child: Container( padding: const EdgeInsets.all(20.0), child: SelectableText(loremipsum), ), ); In selectionControls, when I select the property named…
user3850771