313 questions
1 vote
0 answers
73 views
flickering bar at the beginning of the scroll, at the bottom of the webviewwidget
At the beginning of scrolling, until the sliverappbar is minimized to its minimum size, a flickering stripe appears at the bottom of the webviewwidget (see video here) How can I fix it without ...
0 votes
0 answers
32 views
Android How to achieve smooth/natural bounce effect on scroll up down
I have NestedScrollView within I have recyclerview & other image, textual content. I want to bounce down & up (reset to original position) like effect when scroll reaches to top or bottom. I ...
2 votes
1 answer
88 views
Nested Scroll issue in DraggableScrollabeSheet
UI for dragsheet What UI Have? DraggableScrollableSheet for bottom sheet with scroll behavior. A Top UI to achieving Sticky Top bar List of element to show the content What should it do? Whole ...
0 votes
1 answer
36 views
Allow TabBar to be dragged instead of scrolling the TabBarView when using NestedScrollView
I have this code to make a page which has a TabBar with content above it and a TabBarView below the TabBar. Scrolling the TabBarView causes the TabBar to move up the page from it's initial position ...
2 votes
2 answers
920 views
Jetpack compose. How to create collapsing composable?
I need to implement partially collapsed layout in jetpack compose. When I scroll down the list, I want the top layout to partially collapse, and when I scroll to the top of the list, I want the ...
0 votes
1 answer
33 views
Disable Recycler View's Scrolling Inside NestedScrollView
<?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-...
3 votes
0 answers
92 views
Flutter NestedScrollView: Independent Scrolling for Nested Elements (Carousel, List, and Grid)
I'm working on a Flutter app where I want a screen layout with the following structure: A carousel widget with an indicator at the top. A list of cards beneath the carousel. A row containing a list ...
1 vote
0 answers
65 views
flutter: Make round corners in I am using NestedScrollView
I am using NestedScrollView like this: return Scaffold( backgroundColor: Colors.white, body: NestedScrollView( physics: const ClampingScrollPhysics(), floatHeaderSlivers: true, ...
7 votes
3 answers
1k views
Nested Scroll View with TabBarView and Keep Alive true, makes all scrolls sync in TabBarView pages in Flutter
In the flutter, I use NestedScrollView, in the Body I use TabBarView. On the pages in TabBarView, I use keep alive true, but in this case the scroll is synchronized. How can I not synchronize them. ...
0 votes
1 answer
598 views
Flutter Nested scrollview taking unwanted space in the bottom
NestedScrollview have a SliverAppbar and sliverToBoxAdapter inside. And In the body, there is a tabbbarView contains a gridview.builder. But its showing more space in the bottom when scrolling. but ...
1 vote
1 answer
1k views
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 ...
0 votes
0 answers
76 views
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 ...
1 vote
1 answer
828 views
android how to scroll a view inside NestedScrollView to top of the screen how
I have a NestedScrollView contains LinearLayout with orientation vertical, i have adding multiple views programmatically to the linearLayout, after that i need to click on a specific view inside the ...
0 votes
0 answers
136 views
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 ...
0 votes
1 answer
3k views
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 ...