Questions tagged [pull-to-refresh]

Pull To Refresh is a UI interaction wherein a user pulls down on a scrolling view or list, beyond the upper bounds of the view, and releases it in order to refresh the contents of that view or list.

Pull To Refresh is a UI interaction wherein a user pulls down on a scrolling view or list, beyond the upper bounds of the view, and releases it in order to refresh the contents of that view or list.

This interaction has been used in many published apps, mainly for mobile devices, and has become one of the most widely used methods of allowing a user to refresh their current view.

Pull To Refresh libraries:

  • Android-PullToRefresh - Implementation of the Pull-to-Refresh UI Pattern for Android
  • Three20 - Three20 is an Objective-C library for iPhone developers (contains a pull to reload component)
  • EGOTableViewPullRefresh - A similar control to the pull down to refresh control created by atebits in Tweetie 2
  • ODRefreshControl - A pull down to refresh control like the one in Apple's iOS6 Mail App
677 questions
4
votes
1 answer

UITableViewController pull to refresh with a frozen header

I have a mockup that looks like this: This is all one big Table Controller that you can scroll. When the section header hits the top of the page it freezes along the top, like so: Which is working fine. However, when you go back to the top and do…
thekevinscott
  • 5,263
  • 10
  • 44
  • 57
4
votes
1 answer

Refreshing adapter on pulling ListView in android

How to apply effect of pulling down ListView and on releasing it, it will do refresh. same as Facebook, when pulling down it, it will refresh the NewsFeeds.
Rahul Upadhyay
  • 3,493
  • 2
  • 21
  • 37
3
votes
3 answers

Android pull to refresh with ScrollView control

I am using a ScrollView to display a list of items that are inflated on runtime. Like a feed of updates for the user. While thinking about the options i got to let the user update the view with new notifications I thought about the pull to refresh…
Idan
  • 2,819
  • 4
  • 33
  • 61
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

React Native RefreshControl in iOS shows a white line when pulling down

in iOS, a white line will appear when pulling up the with refreshControl, anyone knows the reasons?
Hugo
  • 31
  • 2
3
votes
0 answers

After update flutter to 1.22.0-12.0.pre Error package:flutter/src/widgets/scroll_position.dart': _pendingDimensions': is not true

Today after update flutter sdk to 1.22.0-12.0. Wherever the SmartRefresher package is used i get this exception in stable and dev chanel but the program works well 'package:flutter/src/widgets/scroll_position.dart': Failed assertion: line 582 pos…
3
votes
1 answer

get new data with the provider and pull_to_refresh

I'm making a random quote application that I took from the API and returned a json, the API that I use will generate a new quote when it is refreshed I implemented it with DART in a flutter app project, the data sent from the public is captured and…
3
votes
1 answer

Pull-to-Refresh ListView in Qt/QML

Do you have any idea how to implement Pull-to-refresh ListView in Qt / QML ?
Temirlan
  • 43
  • 1
  • 6
3
votes
1 answer

With a Flutter RefreshIndicator can you tell which way it was pulled, from top or bottom in onRefresh?

With Flutter I'm using a RefreshIndicator with my listview, which works well. I'd like to refresh the data when pulled down from the top and load more paginated data if pulled up from the bottom. Is there a way to tell in the onRefresh callback to…
Peter Birdsall
  • 3,159
  • 5
  • 31
  • 48
3
votes
1 answer

WebView inside ScrollView calling refreshControl everytime swiping up React Native Android

I have a WebView inside a ScrollView on a React Native app. The ScrollView has the refreshControl prop so I can refresh the WebView when I reach the top of the app. Here's the problem: I scroll the WebView without a problem, but whenever I swipe up…
3
votes
3 answers

swift 4 refresh Control on top

Hi in my app I have a stretchy header and I am adding my refresh control like this tableView.addSubview(refreshControll) But when using it, it is in middle or bottom of my view and not pinned to the top how do I fix this?
Tye Howatt
  • 105
  • 2
  • 9
3
votes
1 answer

cannot access a disposed object in PulltoRefresh + xamarin.forms

I used Refractored.XamForms.PullToRefresh.dll for pulltorefresh on my one child page of tabbed page.but when I redirect from other pages to this it gives me error cannot access a disposed object of PullToRefresh Renderer I think pulltorefresh…
Neelam Prajapati
  • 3,764
  • 3
  • 28
  • 62
3
votes
3 answers

How to Stop Android webView swipeToRefresh loading progressbar?

Note: This question was already asked here. which did not get any answer so I decided to repost it with my code. I want a webView to refresh the current page when a user pulls down the screen from the top which is working fine. The problem is the…
Maroof Mandal
  • 521
  • 9
  • 29
3
votes
0 answers

UIRefreshControl Custom Height

Help!!! I am using UIRefreshControl for my iOS tableview pull-to-refresh feature. However, my layout need to have a larger "loading area". How can I make the area larger?? I have tried self.tableView.contentInset = UIEdgeInsetsMake(500, 0, 0, 0)…
Noob IT
  • 83
  • 1
  • 2
  • 7
3
votes
1 answer

RefreshControl sometimes does not hide and acts weirdly on iOS

after upgrading from react-native@0.26 activity indicator of RefreshControl sometimes appears in right corner of ScrollView on iOS. I am using RefreshControl as correctly as documentation says: ...
matusalem
  • 2,461
  • 2
  • 26
  • 35