pull-to-refresh Questions

6

A blank grey circle of PullToRefreshContainer is always displaying even first time or after refreshing. Here is my code val pullRefreshState = rememberPullToRefreshState() Box( modifier = Modifie...
Commonage asked 31/3 at 0:43

7

Solved

iOS 15 is out and so is the new release of Safari that brings the ubiquitous pull-to-refresh. Like it or not, single-page apps don't like that too much. Here's how to disable it on Chrome for iPhon...
Clubby asked 20/9, 2021 at 21:25

16

Solved

I added the RefreshIndicator to my page, but there is no indicator visible when pull to refresh. The code is below: class HomePage extends StatefulWidget { HomePage({Key key, this.title}) : super...
Puttier asked 5/1, 2019 at 10:36

3

How to prevent pull-to-refresh in web applications for Chrome android? I tried the answers from Disabling android's chrome pull-down-to-refresh feature body { overflow-y: hidden; } or b...
Emeric asked 13/10, 2016 at 3:38

8

here in the controller: RefreshController refreshController = RefreshController(initialRefresh: false); @override void onInit() { fetchServices(); fetchCategory(); super.onInit(); } Fut...
Lennox asked 17/9, 2021 at 15:43

4

Solved

I am using FutureBuilder to show the data loaded from server. I want to show the loading state only once when the app starts, that is why I am calling the API from initState. The data I get from se...
Cluster asked 12/1, 2021 at 10:50

6

Solved

I'm starting to learn about Jetpack Compose. I put together this app where I explore different day-to-day use cases, each of the feature modules within this project is supposed to tackle different ...

8

Solved

I implemeted a custom refresh control (my own class, not a subclass), and for some reason since moving to iOS 8, setting the contentInset of the scroll view (specifically, UICollectionView) to star...
Barbabra asked 26/9, 2014 at 1:57

2

I am using pullToRefreshLibrary provided by Chris Banes. I have gridView which is containg whole list of data. I tried pullToRefreshGridViewActivity but it was too slow so I am trying to use pullTo...
Martyry asked 5/9, 2013 at 14:57

6

Solved

I'm wondering why I still see a lot of apps (including fb & instagram) that use pull to refresh feature for updating content? I mean, they have notification system that can tell itself to refre...

18

Solved

In Android applications such as Twitter (official app), when you encounter a ListView, you can pull it down (and it will bounce back when released) to refresh the content. I wonder what is the bes...
Purdy asked 3/1, 2011 at 9:51

0

I wonder if there's a simple way to make visible the activity indicator used by the refresh control of a SwiftUI List? This would provide a consistent appearance of a refreshing UI, regardless of h...

7

Solved

Hi I've a tabbed activity, and in the first tab I fetch data from server and show it in a recyclerview within card views. For fetching the data from server I use the volley library. I want to imple...

8

Solved

I will add pull to refresh on my webview so it refresh my webview. i have seen all questions on this page but i can't find the good way to add pull to refresh... Mainactivity.java package com.vv...
Grau asked 12/6, 2016 at 14:12

3

Solved

I am new to Riverpod and trying to implement pull to refresh with Riverpod in my Flutter app and can't seem to find any good tutorial online. Has anyone implemented pull-to-refresh in their Flutter...
Hesychast asked 6/12, 2020 at 8:38

6

Solved

There are many "pull to refresh" plugins. I have already tested 5 of them. But none of them running fast (especially on old smartphones). What is the best (buttery UX performance and responsivenes...
Heterolysis asked 13/9, 2017 at 6:35

3

Solved

According to Apple the refresh control should be part of the large title navigation bar in iOS 11. The refresh control is part of the navigation bar (on pull to refresh) when I enabled the refresh...
Hokeypokey asked 6/7, 2017 at 7:26

8

Solved

In my app I have a UISearchBar under UINavigationBar so it is always visible to user. In that case I had to set contentInset with extra 44px so the UIScrollView will be scrolling under UISearchBar ...

3

Solved

I'm trying to add pull to Refresh to WKWebView. Where in this code would I add something that would allow me to trigger pull to refresh? I haven't found any viable ways to add it to my code so you ...
Balakirev asked 12/11, 2018 at 18:54

3

Solved

I have a static group of cells, a few groups actually, and for some reason the pull to refresh function is enabled, I can't figure out where, at least in Xcode Interface builder an option is to dis...
Oxtail asked 10/10, 2015 at 22:19

4

I am implementing a drawing app on my site and trying to prevent overscroll while the user draws on the canvas. Despite trying several reported solutions, I cannot disable Chrome's pull-to-refresh....
Fellner asked 8/6, 2018 at 15:22

2

Solved

I'm building an app that loads images from JSON and displays them as grid view. the problem is that there are hundreds of images and i want to load 20 each time, I want to download more pictures f...
Tavie asked 28/11, 2013 at 23:53

7

I have created a UIRefreshcontrol in my tableviewcontroller as follows in the viewdidload method : refresh = [UIRefreshControl.alloc init]; refresh.attributedTitle = [[NSAttributedString alloc] ...
Ulmaceous asked 6/3, 2014 at 12:55

6

I've implemented a straight forward WKWebView in iOS. var refreshControl = UIRefreshControl() refreshControl.addTarget(self, action: Selector("refreshWebView"), forControlEvents: UIControlEvents...
Purtenance asked 2/7, 2016 at 5:47

4

I have a controller embedded in a navigation controller with Large Titles and a UIRefreshControl. When I pull-to-refresh on my tableView, the animation of the activity indicator is very glitchy. I...
Sontich asked 5/12, 2017 at 9:9

© 2022 - 2024 — McMap. All rights reserved.