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
3
votes
0 answers

Required Pull Down To Refresh and Pull Up to Load More ListView in Android

My Application requires to fetch Data from Server in bulk. So I cannot get them all together and using paging concept. As data on my server changes frequently, I want to update it as soon as data changed. So I implemented Pull To Refresh Listview in…
Nagaraj436
  • 33
  • 1
  • 5
3
votes
1 answer

Chris Banes Pull To Refresh ListView/GridView in Fragment

I am trying to include Chris Banes Pull to refresh implementation inside a Fragment and I am getting the following error at creating the PullToRefreshListView: java.lang.NoSuchFieldError:…
user1524261
  • 31
  • 1
  • 4
3
votes
3 answers

How to add a custom update on a pull refresh?

In the standard "Pull to Refresh" plugin, the list store gets updated. However, I have two lists and I need to update a different store for my detail list. How can I override the update event and reload my other store? I tried adding a simple…
user568866
2
votes
1 answer

Table View Pull Refresh added to the bottom of the view

I was looking at EGOTableViewPullRefresh where when we hold down the tableview, and it gets refreshed. I need to do the following; I need the user to scroll to the bottom of the Table View and hold-on and then the page to add more records. Is this…
Illep
  • 16,375
  • 46
  • 171
  • 302
2
votes
2 answers

Pull down to refresh in table-view in iphone doubts

I am creating a bible application. There are lots of chapters in the bible (e.g. genesis, exodus etc). I created a button for each chapter loading. I load the verses and chapter in table-view cell. When the button is tapped it loads the next chapter…
ICoder
  • 1,347
  • 2
  • 13
  • 23
2
votes
2 answers

PullRefreshIndicator does not disappear after Refreshing

I have migrated from Accompanist SwipeRefresh (deprecated) to PullRefreshIndicator which is now the default indicator for Compose. The first issue I encountered was PullRefreshIndicator overlapping other components, but I managed this by using…
Tonnie
  • 4,865
  • 3
  • 34
  • 50
2
votes
1 answer

Pull to refresh in SwiftUI WebView

I'm looking for the best approach to implement "pull to refresh" mechanism to SwiftUI WebView. This is the closest solution I could wrote, however the refreshing process is not ended (activity indicator is present and nothing else is…
2
votes
2 answers

Pull down to refresh on mobile web browser

I am giving mobile support for a web application. I have a requirement in my application that pull down screen to refresh the page to get the latest updates. I have seen this feature in iPhone native applications and it was also implemented in…
Chandra Kiran
  • 299
  • 1
  • 6
  • 14
2
votes
2 answers

The argument type 'Future>' can't be assigned to the parameter type 'Future Function()' in onRefresh when using RefreshIndicator

I am having a Future that is fetching and populating users below Future> _fetchUsersListUsingLoop() async { try { var response = await http.get( Uri.parse( …
2
votes
2 answers

SwiftUI - Use .refreshable on ForEach to empower pull to refresh experience

I'm making use of the new .refreshable() function. For Testing purposes I'm having this simple sleep function: func load() async { await Task.sleep(2 * 1_000_000_000) } Appending this to a list works fine: .refreshable { …
SwiftUIRookie
  • 591
  • 7
  • 16
2
votes
2 answers

Pull to Refresh on Webview for Updating Content

Probably this is only a simple matter but please bear with me. I just started to learn about coding and Android Studio. Right now I am building a WebView Android App and I want it to have pull to refresh feature to show new contents that just…
2
votes
0 answers

How to refresh the data&UI of views while users enter it every time in SwiftUI?

I have a ContentView that included five TabView. I want to complete the function like... User clicks the different tab of TabView every time, it should refreshing at the first time(show loadingView and initialize those variables of this TabView).…
Spencer Reid
  • 409
  • 3
  • 14
2
votes
1 answer

Render child component or call child component's method from parent component and vice versa[React Native]

I'm trying to re-render the child component when pull down refresh from parent but no idea how to do so. Here is what I currently have in my code. From parent : OnRefresh = () => { this.setState({refresh: true}); // call function…
Emerald
  • 864
  • 1
  • 14
  • 37
2
votes
0 answers

Using React-Native - Pull to refresh not hiding on iOS, working fine on Android

React-native : I am using refresh-control for Scrollview, when pull to refresh triggers it won't hide even after data is updated on iOS. Same code works fine on Android. I have tried debugging but didn't reach anywhere. Loading is being set to…
Sahil Jaidka
  • 271
  • 1
  • 5
  • 13
2
votes
0 answers

Pull to refresh doesn't work at page load up or after refresh

I have used pulltorefresh.js plugin to use pull to refresh on my app. It works great but the only problem is it doesn't work on page load up or after the page is loaded. Works only after I navigate to some other tab and come back to home page & try.…
Arun Nair
  • 69
  • 2
  • 9