Questions tagged [nestedscrollview]

308 questions
0
votes
0 answers

Why the state of my items in SliverPersistentDelegate's NestedScrollView doesn't change

I am setting up an animated profile page with NestedScrollView and slivers. But when I tap on the button to follow a store, it doesn't change until I scroll and I don't understand. Here is the profile page : Scaffold( backgroundColor:…
Rassuul
  • 3
  • 3
0
votes
0 answers

Listview.builder inside a NestedScrollView

enter image description here Hey Stackoverflow Community, probably someone already answered this question, but i can't find a solution for my Problem so i decided to ask my question here hoping that someone can help me further. As you can see in the…
David
  • 1
  • 1
0
votes
0 answers

how to achieve this UI in flutter by using NestedScrollView.?

I tried to acheive from NestedScrollView by creating a sample code. But its not exactly which I want. Please help me. I want to achieve this ui. When scrolling appbar should dock at the top. Image top should start from status bar to the fixed height…
0
votes
0 answers

NestScrollView inside NestedScrollView flutter

I'm working on a project and I got this very intuitive UI problem. I want to structure my widget tree in this way -> NestedScrollView -> TabView -> NestedScrollView -> TabView -> Custom scrollView (I just want to scroll those items in the Tabview…
Creator
  • 303
  • 4
  • 23
0
votes
1 answer

AppBar image for NestedScrollView with rounded body

I use NestedScrollView to make scrollable AppBar like the picture. The problem is, AppBar background picture doesn't expand enough to cover blank space (the arrows describe in the picture). Can anyone help me please? Thanks. NestedScrollView( …
0
votes
1 answer

NestedScrollView with tabBar and bottomNavigationBar is not working

I am trying to use tabBarView & bottomNavigationBar in a nestedScrollView. Result is multiple tabBarviews and multiple bottomNavigationBars. pls, see My tabBar class is: class TabScreen extends StatefulWidget { TabScreen({Key? key}) :…
0
votes
1 answer

RecyclerView nested in LinearLayout as well as Scrollview not scrolling to specific recycler item position

My code below doesnt work for each specific scrollto or smoothScrollTo, can anyone help me? I basically want to be able to dynamically scroll to a specific Item position in the activity, e.g. if a specific recyclerviewItem has been clicked on it…
0
votes
1 answer

SliverPersistentHeader without using CustomScrollView

I had a CustomScrollView which looked like: CustomScrollView( slivers: [ SliverPersistentHeader( floating: true, delegate: MyPersistentHeaderDelegate(), ), SliverList(...), ], ) Because I had to change the layout to use…
Code Spirit
  • 3,992
  • 4
  • 23
  • 34
0
votes
1 answer
0
votes
1 answer

Unable to scroll to item in RecyclerView that is inside NestedScrollView

I'm trying to programmatically scroll to a particular item within my RecyclerView which is nested within a NestedScrollView. The Problem The NestedScrollView scrolls to the complete bottom rather than the desired item. Note: It works correctly when…
rdias002
  • 214
  • 2
  • 9
0
votes
1 answer

App bar doesn't hide on scroll in nestedscrollview flutter

So i want to show posts and for that am using listview.builder in the body of nestedscrollview but when i scroll down then appbar doesn't get hided. This is in case of listview.builder only if i assign controller to it. If i don't then it works…
Deepak Lohmod
  • 2,072
  • 2
  • 8
  • 18
0
votes
1 answer

Recycler View in Nested Scroll View lags performance

I have a recycler view inside nested scroll view. When there is too much data in recycler view, the scroll gets lagged. Is there any way to solve this issue other than taking the recycler view out of nested scroll view?
0
votes
1 answer

Programatically Scroll at the last position of recyclerview on header click

I had a view with a netstedScroll and a recyclerView that I was using to display my data so my fragment was like that:
0
votes
1 answer

Scroll to end with a ListView inside TabView inside NestedScrollView with Flutter

I have a simple question: how to initialize the scroll position of a ListView widget, child of a TabView inside a NestedScrollView? My application has different parts: a NestedScrollView with a SliverAppBar containing a TabBar the body contains the…
pdebreucq
  • 11
  • 2
0
votes
0 answers

Dropdown Spinner in NestedScrollView in Fragment

I am making a dropdown menu (spinner) inside a fragment. I also need that page to have a Recyclerview that extends and scrolls with the page, so I use the nested scroll view. Java Code: Spinner dropdown = root.findViewById(R.id.dropdown); …