pull_to_refresh_notification
pull_to_refresh_notification copied to clipboard
Flutter plugin for building pull to refresh effects with PullToRefreshNotification and PullToRefreshContainer quickly.
当我正在下拉过程中,nestedScrollview的header中有一个自动滚动的banner,如果这时候banner发生了滚动,正在下拉的动作会被取消
Hello! I have a vertical CustomScrollView wrapped with PullToRefreshNotification, and inside CustomScrollView there is a widget with horizontal SingleChildScrollView. Which of them PullToRefreshNotification will be listening to? Does it work...
```dart headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) { return [ SliverAppBar( // forceElevated: innerBoxIsScrolled, title: Text(widget.title), actions: widget.actions, flexibleSpace: widget.flexibleSpace, expandedHeight: widget.expandedHeight, ), PullToRefreshContainer((info) => PullToRefreshHeader(info: info)), SliverTabBar( child: TabBar( controller:...
Hey, Currently the refresher pulls back immediately after returning true in the onRefresh function. It would be nice to have a little delay to the pull back, so the user...
If I have some tabs, all tabs does not work after first refresh with `_refreshIndicatorMode = RefreshIndicatorMode.error;`
SDK
The argument type 'Widget Function(PullToRefreshScrollNotificationInfo)' can't be assigned to the parameter type 'Widget
### Version 3.0.1 ### Platforms dart, Android, iOS ### Device Model iPhone13 ### flutter info ```sh [✓] Flutter (Channel stable, 3.10.4, on macOS 12.6.3 21G419 darwin-x64, locale zh-Hans-CN) • Flutter...