Questions tagged [overscroll]

Overscroll is a feature of scrollable-view in any device, where the user is allowed to scroll more than the end of the last element in a scrollview. This is used to create an UI with more feedback back to the user, thus making the UI experience more interactive and smoother.

Overscroll is a feature of scrollable-view in any device, where the user is allowed to scroll more than the end of the last element in a scrollview. This is used to create an UI with more feedback back to the user, thus making the UI experience more interactive and smoother.

Examples on where overscroll is used, are in iOS' UIScrollView or Android's ScrollView.

89 questions
4
votes
1 answer

Prevent "overscroll" on fullscreen web app like Google Maps do

Chrome on Mac has a bug that will be probably fixed in version 42 41: Switching tab affects “overscroll” (aka elastic rubber band) tl;dr: Chrome on Mac has this annoying "overscroll" aka rubber band effect on the whole document. It can be…
daniel.sedlacek
  • 8,129
  • 9
  • 46
  • 77
3
votes
3 answers

Flutter Web: RefreshIndicator not working anymore

While RefreshIndicator was previously working fine on both, mobile and web, it doesn't refresh a screen on Flutter Web anymore. It's not possible to overscroll anymore on any of my screens, even if it's a long list, where it is easily possible on…
3
votes
1 answer

How can I disable the horizontal stretching/overscroll when using the `verticalScroll` modifier?

I want a scrollable view which I'm doing by using the verticalScroll modifier on a column. Column(modifier = Modifier.verticalScroll(rememberScrollState())) { // ... I could provide more detail about the contents here but I don't think it…
3
votes
0 answers

Detecting overscroll in NestedScrollView

I want a vertical overscroll in a NestedScrollView to trigger one of my methods, which displays a ContentLoadingProgressBar while retrieving data from another device. The SwipeRefreshLayout widget does not look good with my app and there does not…
3
votes
1 answer

Extend element to overscroll area on OS X

I've got a page with a fixed background, and a floating footer at the bottom. Because of "overscrolling" on OS X, a user can scroll past the bottom of the page, at which point the background is exposed below the footer. Instead of disabling…
Luke Taylor
  • 8,631
  • 8
  • 54
  • 92
3
votes
0 answers

Overscrollscale: listview remains stretched

The library Overscrollscale modifies the listview overscroll and makes it bounce at edges. The list is also scaled when user over scrolls it and is scaled back to normal size after the user releases the touch. Code for scaling the listview: private…
Piyush
  • 1,744
  • 1
  • 15
  • 28
3
votes
2 answers

Phonegap Build - DisallowOverscroll not working on IOS

I'm having some issues with Phonegap Build and my Iphone. At the moment I have the following preferences in my config.xml
Feedel
  • 163
  • 2
  • 14
3
votes
0 answers

Overriding onOverScrolled in NestedScrollView results in incorrect values

I'm trying to achieve an 'overscroll' to trigger an action effect in my NestedScrollView (which is together with a CollapsingToolbarLayout in a Coordinator Layout). I've created my own View by extending NestedScrollView and overriding…
Wyko
  • 577
  • 5
  • 13
3
votes
0 answers

Android ListView over-scroll during fling

I have a custom list view and I'm currently trying to perform a custom behaviour for when the list view is over-scrolled (i.e., pushed beyond its bounds). Everything is working perfectly, except that over-scroll only seems to work if the user drags…
Gil Moshayof
  • 16,633
  • 4
  • 47
  • 58
3
votes
1 answer

How we can set overscroll header and footer in scrollview?

I want to set 'Overscroll' header and 'Overscroll' footer in a scroll view .ScrollView Overscroll is working fine. But i couldn't set header and footer in scroll view. But in scroll view "overScrollHeader" and "overScrollFooter" methods are…
Anu
  • 1,303
  • 3
  • 23
  • 38
3
votes
0 answers

Android Overscroll Color change in styles

Is there a way to change my overscroll color (for a ListView) in my styles.xml? I really want it to apply to the whole theme of my app.
2
votes
1 answer

Different color of Overscroll indicator in flutter?

Is it possible to have a different color for the top and bottom Overscroll indicator of a ListView? I have the background of the ListView a color gradient and want it the top Overscroll indicator to match the top of the gradient and the bottom…
Gvarph
  • 31
  • 4
2
votes
1 answer

overscroll-behavior property is not working on webview

I have a fixed positioned modal with flex layout in my website wherein user can type content. I've included overscroll-behaviour-y: none to the modal to prevent the underlying page from scrolling and to suppress refresh on scroll of text-content.…
user1776573
  • 281
  • 1
  • 3
  • 12
2
votes
0 answers

Disable down overscroll in ListView

I want to dissable down overscrolling in ListView and override onOverScrolled method. Also it will be perfect if I can detect when user try to top overscoll when start slide in his top state ( i mean he have a a first element on the top of listview)…
Expiredmind
  • 788
  • 1
  • 8
  • 29
2
votes
1 answer

How to disable the overscroll in scrollview but only in the top for android?

I know the we can turn off the overscroll via overscroll mode. But how do i control it in a way the that bottom has the overscroll effect while the top doesn't has the overscroll effect in a scroll view?
Zhein
  • 21
  • 2