flutter-custom-refresh-indicator icon indicating copy to clipboard operation
flutter-custom-refresh-indicator copied to clipboard

Widget that makes it easy to implement a custom pull to refresh gesture.

Results 11 flutter-custom-refresh-indicator issues
Sort by recently updated
recently updated
newest added

How can I move the children list down along with the RefreshIndicator as in your examples (Plane or IceCream)? In these examples you use the offsetToArmed property, however I didn't...

question

When using onRefresh, if the future returns an exception, but the CustomRefreshIndicator only has a 'Complete' state, is there any way to display the refresh error?

Similar to https://github.com/gonuit/flutter-custom-refresh-indicator/issues/51 The problem is different behaviour when list has one element and 100 elements. 1) One element I can scroll up and down during dragging 2) 100 elements...

bug
enhancement
help wanted

### Hello, I've been working with the CheckMarkIndicator example from your repository (there are really awesome exemples 🤩, btw), and I have encountered an issue. For context, I set the...

bug
question

An error occurs when using pullToRefreshKey.currentState?.hide() before onRefresh has completed. ``` 'package:custom_refresh_indicator/src/custom_refresh_indicator.dart': Failed assertion: line 580 pos 12: 'controller.state.isLoading': is not true. I/flutter ( 7139): #0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:51:61) I/flutter (...

bug

Hello team, I'm using the Bloc pattern in my project. How can I control the showing and hiding of an indicator with Bloc? (BlocConsumer, BlocListener,...). Using an async refresh function...

After the first pull-down refresh, tapping the screen will trigger the indicator to appear

I am unable to get the assets

in custom_material_indicator.dart around line 379 > ` /// If indicatorBuilder is not provided if (widget.indicatorBuilder != null) {`

When you pull down to refresh, you cannot pull up to cancel the refresh. You may need a controller to control it, but it's too troublesome. I just want to...