Questions tagged [nestedscrollview]

308 questions
1
vote
1 answer

NestedScrollView fills full screen

This is the original layout in my Activity:
Nestor
  • 8,194
  • 7
  • 77
  • 156
1
vote
0 answers

Xamarin: android.support.v4.widget.NestedScrollView and Inflate not returning correct type

I'm working on an Android Xamarin project for which I need to use android.support.v4.widget.NestedScrollView. I have a view which I am inflating via LayoutInflator.Inflate but the type returned is of type FrameLayout, not…
Ian Newson
  • 7,679
  • 2
  • 47
  • 80
1
vote
0 answers

Scrolling not working in NestedScrollView Android while using onClick on Linear Layout

I have multiple included layouts in a single NestedScrollView. But when i am going to scroll, the included part not scrolling. And i load this layout in main layout which have CoordinatorLayout. So what is going wrong i can't understand. Below is my…
1
vote
0 answers

Scrollview - register listener, when view passed top of scrollview

I need to update my Tabs (TabLayout), when user reaches some view in subclassed NestedScrollView. My layout:
Vojtěch Pešek
  • 1,070
  • 8
  • 25
1
vote
0 answers

how to define two different layout managers in a single recylerview? i have used two recyclerviews for layout managers

how to define two different layout managers in a single recyclerview? actually now i defined the layouts using two recylerviews.Even i want to scroll both the recylerview at the time. this is my code.
mounika
  • 29
  • 1
  • 7
0
votes
0 answers

Using SliverOverlapInjector to prevent overlapping

I wanted to create a NestedScrollView. So it works as it should be but. it's overlapping. The thing is I really couldn't find how should I put this SliverOverlapInjector to the body of the NestedScrollView. Here's my code: NestedScrollView( …
0
votes
0 answers

Flutter SliverAppBar with custom scrolling

I have a SliverAppBar with an image background, and on top of that some rainbow persistent header as an image. I would like to achieve a situation when I scroll the list of items the image fades away as it is now and for the name and description…
0
votes
0 answers

Using NotificationListener and NestedScrollView is giving unexpected scroll behaviour in Flutter

I'm using CustomSliverDelegate and CustomNestedScrollView. When i scroll up from the bottom of the screen, the scroll behaviour is working perfectly fine.After scrolling up, i tried to scroll down from the middle of the screen or just above from the…
0
votes
0 answers

Nested Scrolling not working with viewpager inside recyclerview

I am using nesterdscrollview and inside a viewpager for tablayout and inside a fragment of tablayout I am using recycler view I disable recyclerview nesterscrolling and want to scroll with nested scrollview but not working nothing scrolling. I check…
0
votes
1 answer

Flutter NestedScrollView ScrollController is currently attached to more than one ScrollPosition

I am building a Flutter App and on the Web with a SliverAppBar with Tabs that are scrollable using a NestedScrollView and I am getting this weird error: The Scrollbar requires a single ScrollPosition in order to be painted. When the scrollbar is…
Exero
  • 11
  • 3
0
votes
0 answers

Failed assertion: line 173 pos 12: 'renderObject.child == child': is not true

fix: Resolve failed assertion error when updating profile data When updating profile data in the ProfileScreen widget, a failed assertion error was occurring, with the message "renderObject.child == child is not true". After investigating the issue,…
0
votes
0 answers

The appBar doesn't expand or collapse automatically | Flutter

What I want to achieve is when I scroll, the appBar should expand or collapse automatically, so that there is no middle state, only collapsed or expanded completely. This feature can be seen in contact or setting app, so I want to reproduce it. Here…
0
votes
0 answers

Using nestedscrollview with bottomnavigationbar and children/pages to scroll of nestedscrollview

Basically i have a shellroute builder (go router) where i want to display the appbar and bottomnavigationbar on all child routes. ShellRoute( navigatorKey: _shellNavigatorKey, builder: (context, state, child) =>…
RedsVision
  • 33
  • 7
0
votes
0 answers

What's the difference between using NestedScrollView and CustomScrollView+SliverListView in flutter?

I see some articles says that , If you use a scrollable content in CustomScrollView will cause scroll problem . But I can choose to use CustomScrollView+SliverList ,so there will be ok. So I am wondering when should I use NestedScrollView ,because…
ximmyxiao
  • 2,622
  • 3
  • 20
  • 35