Questions tagged [nestedscrollview]

308 questions
1
vote
1 answer

LinearLayout and NestedScrollView problem

How I want to use NestedScrollView, the view for the toolbar at the top and the bottom View view at the bottom. The top and bottom view Toolbar and bottom view must always be in place. How do I achieve this result for any device? I appreciate any…
1
vote
1 answer

Weird space between SliverAppBar and ListView in flutter

I wrote a NestedScrollView interface in the example of the Flutter document, but when I look at the ListView as the body, I find that there is a weird gap between the ListView and the SliverAppBar. What can I do to delete this gap class Test extends…
crazecoder
  • 218
  • 3
  • 8
1
vote
0 answers

NestedScrollView transparent inside CoordinatorLayout but: i do not want it to be transparent

here i am asking for your help. I'm trying to implement a nestedscrollview inside a coordinatorlayout with some other stuff but the nestedscroll view keeps transparent no matter what i do. I have already thought a lot but couldn't find any…
Groot
  • 37
  • 4
1
vote
0 answers

PageView inside NestedScrollView, keepAlive with AutomaticKeepAliveClientMixin, all ListViews inside each PageView will share the same scroll behavior

I got a page with a structure like NestedScrollView > PageView > ListView, the problem is when I scroll inside a listview, other listviews will scroll as the same, like they share the same scroll controller. I made a demo below, and had tested that…
halface_sun
  • 369
  • 3
  • 12
1
vote
0 answers

Flutter: NestedScrollView Header TabBar obstructs/overlaps TabBarView Elements

My goal is to use some kind of Profile Page where I have a SliverAppBar at the top which has a tabBar as bottom to switch between the Lists or elements shown below the AppBar. I found that this is archived by NestedScrollView but noticed a strange…
astrorain
  • 51
  • 1
  • 6
1
vote
1 answer

Scroll listeners on NestedScrollView's outer body

i am trying to create material native tabs so when we scroll through the page, appbar collapses but the tabbar should be visible always and I implemented this using NestedScrollView in flutter class HomeScreen extends StatefulWidget { @override …
1
vote
3 answers

body of nestedscrollview overflowed - flutter

I made a page with NestedScrollView, the body of NestedScrollView is a container that holds data from previous requests. but the body of the NestedScrollView is overflowed. The following code: NestedScrollView( controller:…
Renmark
  • 11
  • 1
  • 2
1
vote
1 answer

Webview Content scrolling enable inside main scrollview

I am creating one app in which i have a requirement of put webview inside scrollview..I am using NestedScrollview. Also, i want to scroll content inside webview. My webview load one HTML which have map + list of some data. So when i scroll list from…
PlusInfosys
  • 3,416
  • 1
  • 19
  • 33
1
vote
1 answer

RecyclerView ViewHolder creation inside NestedScrollView

I have two problems caused by the same source. I'm working on a social media app, I have a profile view containing a CollapsingToolbarLayout for the profile picture and RecyclerView inside a NestedScrollView for the posts feed. The behaviour I…
Jrawat
  • 107
  • 2
  • 8
1
vote
2 answers

How to stop Nestedscrollview from scrolling when we hide a Layout from it

I have a Nestedscrollview, when I scroll up I have to Hide a view which is currently not shown in the screen. But when I hide it Nestedscrollview automatically scrolls itself to adujst. I want to stop it from scrolling until user scrolls manually…
Kalpana
  • 23
  • 5
1
vote
0 answers

CAPSPageMenu, MXParallaxHeader and TableView Parallax effect scroll conflict issue

I a trying to achieve some thing like below Each of these tabs has tableview. I am using CAPSPageMenu and MXParallaxHeader library for this. Followed following code as mentioned below now only problem in below example is each my tab view controller…
alphanso
  • 409
  • 5
  • 22
1
vote
1 answer

NestedScrollView not scrolling when adding TextViews programmatically

I'm including a chess board and pieces on one of the screens in my app, and I want to add a scrollable view underneath it to show the move notation when the user makes a move. I can add the text to the view, but no matter what I try, the view will…
1
vote
2 answers

ViewPager not showing inside NestedScrollView which contains RecyclerView below ViewPager

i have a NestedScrollView which contains a ConstaintLayout and inside of it there's a Viewpager and a Recyclerview my problem is that the ViewPager isn't showing unless it has a fixed height, match_parent and wrap_content don't work I've tried to…
1
vote
1 answer

Scrollview containing recyclerview and viewpager not scrolling

I have a piece of xml code in which I have a nestedScrollView and below is a recyclerview and below that is a viewpager which has two fragments and both of these fragments contain recyclerviews the issue I am facing is that the recyclerviews are…
1
vote
1 answer

How to show only the TabView in a SilverAppBar

I'd basically like to have a TabView navigation in the middle of my page. To do so I used a SliverAppBar inside a NestedScrollView. My SliverAppBar is only composed by my TabView, I wrapped my TabView inside a SliverAppBar in order to used the…
woshitom
  • 4,811
  • 8
  • 38
  • 62