refresh_indicator.dart 17.6 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:async';
6
import 'dart:math' as math;
7 8 9

import 'package:flutter/widgets.dart';

10 11
import 'debug.dart';
import 'material_localizations.dart';
12
import 'progress_indicator.dart';
13
import 'theme.dart';
14 15 16 17 18 19 20 21 22 23

// The over-scroll distance that moves the indicator to its maximum
// displacement, as a percentage of the scrollable's container extent.
const double _kDragContainerExtentPercentage = 0.25;

// How much the scroll's drag gesture can overshoot the RefreshIndicator's
// displacement; max displacement = _kDragSizeFactorLimit * displacement.
const double _kDragSizeFactorLimit = 1.5;

// When the scroll ends, the duration of the refresh indicator's animation
Josh Soref's avatar
Josh Soref committed
24
// to the RefreshIndicator's displacement.
25
const Duration _kIndicatorSnapDuration = Duration(milliseconds: 150);
26 27 28

// The duration of the ScaleTransition that starts when the refresh action
// has completed.
29
const Duration _kIndicatorScaleDuration = Duration(milliseconds: 200);
30

31 32 33 34 35
/// The signature for a function that's called when the user has dragged a
/// [RefreshIndicator] far enough to demonstrate that they want the app to
/// refresh. The returned [Future] must complete when the refresh operation is
/// finished.
///
36
/// Used by [RefreshIndicator.onRefresh].
37
typedef RefreshCallback = Future<void> Function();
38

39 40
// The state machine moves through these modes only when the scrollable
// identified by scrollableKey has been scrolled to its min or max limit.
41
enum _RefreshIndicatorMode {
42 43 44 45 46 47
  drag,     // Pointer is down.
  armed,    // Dragged far enough that an up event will run the onRefresh callback.
  snap,     // Animating to the indicator's final "displacement".
  refresh,  // Running the refresh callback.
  done,     // Animating the indicator's fade-out after refreshing.
  canceled, // Animating the indicator's fade-out after not arming.
48 49
}

50 51
/// A widget that supports the Material "swipe to refresh" idiom.
///
Adam Barth's avatar
Adam Barth committed
52
/// When the child's [Scrollable] descendant overscrolls, an animated circular
53 54 55 56 57 58
/// progress indicator is faded into view. When the scroll ends, if the
/// indicator has been dragged far enough for it to become completely opaque,
/// the [onRefresh] callback is called. The callback is expected to update the
/// scrollable's contents and then complete the [Future] it returns. The refresh
/// indicator disappears after the callback's [Future] has completed.
///
59 60 61 62
/// If the [Scrollable] might not have enough content to overscroll, consider
/// settings its `physics` property to [AlwaysScrollableScrollPhysics]:
///
/// ```dart
63
/// ListView(
64 65 66 67 68 69 70 71 72
///   physics: const AlwaysScrollableScrollPhysics(),
///   children: ...
//  )
/// ```
///
/// Using [AlwaysScrollableScrollPhysics] will ensure that the scroll view is
/// always scrollable and, therefore, can trigger the [RefreshIndicator].
///
/// A [RefreshIndicator] can only be used with a vertical scroll view.
73 74 75
///
/// See also:
///
76
///  * <https://material.io/design/platform-guidance/android-swipe-to-refresh.html>
77
///  * [RefreshIndicatorState], can be used to programmatically show the refresh indicator.
78 79
///  * [RefreshProgressIndicator], widget used by [RefreshIndicator] to show
///    the inner circular progress spinner during refreshes.
80
///  * [CupertinoSliverRefreshControl], an iOS equivalent of the pull-to-refresh pattern.
81 82 83
///    Must be used as a sliver inside a [CustomScrollView] instead of wrapping
///    around a [ScrollView] because it's a part of the scrollable instead of
///    being overlaid on top of it.
84
class RefreshIndicator extends StatefulWidget {
85 86
  /// Creates a refresh indicator.
  ///
87 88
  /// The [onRefresh], [child], and [notificationPredicate] arguments must be
  /// non-null. The default
89
  /// [displacement] is 40.0 logical pixels.
90 91 92 93
  ///
  /// The [semanticsLabel] is used to specify an accessibility label for this widget.
  /// If it is null, it will be defaulted to [MaterialLocalizations.refreshIndicatorSemanticLabel].
  /// An empty string may be passed to avoid having anything read by screen reading software.
94
  /// The [semanticsValue] may be used to specify progress on the widget.
95
  const RefreshIndicator({
96
    Key key,
97
    @required this.child,
98
    this.displacement = 40.0,
99
    @required this.onRefresh,
100
    this.color,
101
    this.backgroundColor,
102
    this.notificationPredicate = defaultScrollNotificationPredicate,
103 104
    this.semanticsLabel,
    this.semanticsValue,
105 106
  }) : assert(child != null),
       assert(onRefresh != null),
107
       assert(notificationPredicate != null),
108
       super(key: key);
109

110 111
  /// The widget below this widget in the tree.
  ///
112 113
  /// The refresh indicator will be stacked on top of this child. The indicator
  /// will appear when child's Scrollable descendant is over-scrolled.
114 115
  ///
  /// Typically a [ListView] or [CustomScrollView].
116 117
  final Widget child;

118 119 120
  /// The distance from the child's top or bottom edge to where the refresh
  /// indicator will settle. During the drag that exposes the refresh indicator,
  /// its actual displacement may significantly exceed this value.
121 122 123 124
  final double displacement;

  /// A function that's called when the user has dragged the refresh indicator
  /// far enough to demonstrate that they want the app to refresh. The returned
125
  /// [Future] must complete when the refresh operation is finished.
126
  final RefreshCallback onRefresh;
127

128
  /// The progress indicator's foreground color. The current theme's
129
  /// [ThemeData.accentColor] by default.
130 131 132 133 134
  final Color color;

  /// The progress indicator's background color. The current theme's
  /// [ThemeData.canvasColor] by default.
  final Color backgroundColor;
135

136 137 138 139 140 141
  /// A check that specifies whether a [ScrollNotification] should be
  /// handled by this widget.
  ///
  /// By default, checks whether `notification.depth == 0`. Set it to something
  /// else for more complicated layouts.
  final ScrollNotificationPredicate notificationPredicate;
142

143 144 145 146 147 148 149 150 151
  /// {@macro flutter.material.progressIndicator.semanticsLabel}
  ///
  /// This will be defaulted to [MaterialLocalizations.refreshIndicatorSemanticLabel]
  /// if it is null.
  final String semanticsLabel;

  /// {@macro flutter.material.progressIndicator.semanticsValue}
  final String semanticsValue;

152
  @override
153
  RefreshIndicatorState createState() => RefreshIndicatorState();
154 155
}

156 157
/// Contains the state for a [RefreshIndicator]. This class can be used to
/// programmatically show the refresh indicator, see the [show] method.
158
class RefreshIndicatorState extends State<RefreshIndicator> with TickerProviderStateMixin<RefreshIndicator> {
159
  AnimationController _positionController;
160
  AnimationController _scaleController;
161
  Animation<double> _positionFactor;
162
  Animation<double> _scaleFactor;
163
  Animation<double> _value;
164 165
  Animation<Color> _valueColor;

166
  _RefreshIndicatorMode _mode;
167
  Future<void> _pendingRefreshFuture;
168 169
  bool _isIndicatorAtTop;
  double _dragOffset;
170

171 172 173 174
  static final Animatable<double> _threeQuarterTween = Tween<double>(begin: 0.0, end: 0.75);
  static final Animatable<double> _kDragSizeFactorLimitTween = Tween<double>(begin: 0.0, end: _kDragSizeFactorLimit);
  static final Animatable<double> _oneToZeroTween = Tween<double>(begin: 1.0, end: 0.0);

175 176 177
  @override
  void initState() {
    super.initState();
178
    _positionController = AnimationController(vsync: this);
179 180
    _positionFactor = _positionController.drive(_kDragSizeFactorLimitTween);
    _value = _positionController.drive(_threeQuarterTween); // The "value" of the circular progress indicator during a drag.
181

182
    _scaleController = AnimationController(vsync: this);
183
    _scaleFactor = _scaleController.drive(_oneToZeroTween);
184 185 186
  }

  @override
187
  void didChangeDependencies() {
188
    final ThemeData theme = Theme.of(context);
189 190 191
    _valueColor = _positionController.drive(
      ColorTween(
        begin: (widget.color ?? theme.accentColor).withOpacity(0.0),
192
        end: (widget.color ?? theme.accentColor).withOpacity(1.0),
193 194 195 196
      ).chain(CurveTween(
        curve: const Interval(0.0, 1.0 / _kDragSizeFactorLimit)
      )),
    );
197
    super.didChangeDependencies();
198 199 200 201
  }

  @override
  void dispose() {
202
    _positionController.dispose();
203 204 205 206
    _scaleController.dispose();
    super.dispose();
  }

Adam Barth's avatar
Adam Barth committed
207
  bool _handleScrollNotification(ScrollNotification notification) {
208
    if (!widget.notificationPredicate(notification))
209 210
      return false;
    if (notification is ScrollStartNotification && notification.metrics.extentBefore == 0.0 &&
211
        _mode == null && _start(notification.metrics.axisDirection)) {
212 213 214
      setState(() {
        _mode = _RefreshIndicatorMode.drag;
      });
215
      return false;
216 217
    }
    bool indicatorAtTopNow;
218
    switch (notification.metrics.axisDirection) {
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
      case AxisDirection.down:
        indicatorAtTopNow = true;
        break;
      case AxisDirection.up:
        indicatorAtTopNow = false;
        break;
      case AxisDirection.left:
      case AxisDirection.right:
        indicatorAtTopNow = null;
        break;
    }
    if (indicatorAtTopNow != _isIndicatorAtTop) {
      if (_mode == _RefreshIndicatorMode.drag || _mode == _RefreshIndicatorMode.armed)
        _dismiss(_RefreshIndicatorMode.canceled);
    } else if (notification is ScrollUpdateNotification) {
      if (_mode == _RefreshIndicatorMode.drag || _mode == _RefreshIndicatorMode.armed) {
        if (notification.metrics.extentBefore > 0.0) {
          _dismiss(_RefreshIndicatorMode.canceled);
        } else {
          _dragOffset -= notification.scrollDelta;
          _checkDragOffset(notification.metrics.viewportDimension);
        }
      }
242 243 244 245 246 247
      if (_mode == _RefreshIndicatorMode.armed && notification.dragDetails == null) {
        // On iOS start the refresh when the Scrollable bounces back from the
        // overscroll (ScrollNotification indicating this don't have dragDetails
        // because the scroll activity is not directly triggered by a drag).
        _show();
      }
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    } else if (notification is OverscrollNotification) {
      if (_mode == _RefreshIndicatorMode.drag || _mode == _RefreshIndicatorMode.armed) {
        _dragOffset -= notification.overscroll / 2.0;
        _checkDragOffset(notification.metrics.viewportDimension);
      }
    } else if (notification is ScrollEndNotification) {
      switch (_mode) {
        case _RefreshIndicatorMode.armed:
          _show();
          break;
        case _RefreshIndicatorMode.drag:
          _dismiss(_RefreshIndicatorMode.canceled);
          break;
        default:
          // do nothing
          break;
      }
265 266
    }
    return false;
267 268
  }

269 270 271 272 273 274
  bool _handleGlowNotification(OverscrollIndicatorNotification notification) {
    if (notification.depth != 0 || !notification.leading)
      return false;
    if (_mode == _RefreshIndicatorMode.drag) {
      notification.disallowGlow();
      return true;
275
    }
276
    return false;
277 278
  }

279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
  bool _start(AxisDirection direction) {
    assert(_mode == null);
    assert(_isIndicatorAtTop == null);
    assert(_dragOffset == null);
    switch (direction) {
      case AxisDirection.down:
        _isIndicatorAtTop = true;
        break;
      case AxisDirection.up:
        _isIndicatorAtTop = false;
        break;
      case AxisDirection.left:
      case AxisDirection.right:
        _isIndicatorAtTop = null;
        // we do not support horizontal scroll views.
        return false;
    }
296 297
    _dragOffset = 0.0;
    _scaleController.value = 0.0;
298 299
    _positionController.value = 0.0;
    return true;
300 301
  }

302 303 304 305 306
  void _checkDragOffset(double containerExtent) {
    assert(_mode == _RefreshIndicatorMode.drag || _mode == _RefreshIndicatorMode.armed);
    double newValue = _dragOffset / (containerExtent * _kDragContainerExtentPercentage);
    if (_mode == _RefreshIndicatorMode.armed)
      newValue = math.max(newValue, 1.0 / _kDragSizeFactorLimit);
307
    _positionController.value = newValue.clamp(0.0, 1.0) as double; // this triggers various rebuilds
308 309
    if (_mode == _RefreshIndicatorMode.drag && _valueColor.value.alpha == 0xFF)
      _mode = _RefreshIndicatorMode.armed;
310 311
  }

312
  // Stop showing the refresh indicator.
313
  Future<void> _dismiss(_RefreshIndicatorMode newMode) async {
314
    await Future<void>.value();
315 316 317 318
    // This can only be called from _show() when refreshing and
    // _handleScrollNotification in response to a ScrollEndNotification or
    // direction change.
    assert(newMode == _RefreshIndicatorMode.canceled || newMode == _RefreshIndicatorMode.done);
319
    setState(() {
320
      _mode = newMode;
321
    });
322 323
    switch (_mode) {
      case _RefreshIndicatorMode.done:
324 325
        await _scaleController.animateTo(1.0, duration: _kIndicatorScaleDuration);
        break;
326 327 328 329 330
      case _RefreshIndicatorMode.canceled:
        await _positionController.animateTo(0.0, duration: _kIndicatorScaleDuration);
        break;
      default:
        assert(false);
331
    }
332 333 334
    if (mounted && _mode == newMode) {
      _dragOffset = null;
      _isIndicatorAtTop = null;
335 336 337 338
      setState(() {
        _mode = null;
      });
    }
339 340
  }

341 342 343
  void _show() {
    assert(_mode != _RefreshIndicatorMode.refresh);
    assert(_mode != _RefreshIndicatorMode.snap);
344
    final Completer<void> completer = Completer<void>();
345
    _pendingRefreshFuture = completer.future;
346
    _mode = _RefreshIndicatorMode.snap;
347
    _positionController
348
      .animateTo(1.0 / _kDragSizeFactorLimit, duration: _kIndicatorSnapDuration)
349
      .then<void>((void value) {
350
        if (mounted && _mode == _RefreshIndicatorMode.snap) {
351
          assert(widget.onRefresh != null);
352 353 354 355 356
          setState(() {
            // Show the indeterminate progress indicator.
            _mode = _RefreshIndicatorMode.refresh;
          });

357
          final Future<void> refreshResult = widget.onRefresh();
358 359
          assert(() {
            if (refreshResult == null)
360 361
              FlutterError.reportError(FlutterErrorDetails(
                exception: FlutterError(
362 363 364
                  'The onRefresh callback returned null.\n'
                  'The RefreshIndicator onRefresh callback must return a Future.'
                ),
365
                context: ErrorDescription('when calling onRefresh'),
366 367 368
                library: 'material library',
              ));
            return true;
369
          }());
370 371 372
          if (refreshResult == null)
            return;
          refreshResult.whenComplete(() {
373 374
            if (mounted && _mode == _RefreshIndicatorMode.refresh) {
              completer.complete();
375
              _dismiss(_RefreshIndicatorMode.done);
376 377 378
            }
          });
        }
379 380 381 382 383 384 385
      });
  }

  /// Show the refresh indicator and run the refresh callback as if it had
  /// been started interactively. If this method is called while the refresh
  /// callback is running, it quietly does nothing.
  ///
386
  /// Creating the [RefreshIndicator] with a [GlobalKey<RefreshIndicatorState>]
387
  /// makes it possible to refer to the [RefreshIndicatorState].
388
  ///
389 390
  /// The future returned from this method completes when the
  /// [RefreshIndicator.onRefresh] callback's future completes.
391 392 393 394 395 396 397
  ///
  /// If you await the future returned by this function from a [State], you
  /// should check that the state is still [mounted] before calling [setState].
  ///
  /// When initiated in this manner, the refresh indicator is independent of any
  /// actual scroll view. It defaults to showing the indicator at the top. To
  /// show it at the bottom, set `atTop` to false.
398
  Future<void> show({ bool atTop = true }) {
399 400
    if (_mode != _RefreshIndicatorMode.refresh &&
        _mode != _RefreshIndicatorMode.snap) {
401 402
      if (_mode == null)
        _start(atTop ? AxisDirection.down : AxisDirection.up);
403
      _show();
404
    }
405
    return _pendingRefreshFuture;
406 407
  }

408
  final GlobalKey _key = GlobalKey();
409

410 411
  @override
  Widget build(BuildContext context) {
412
    assert(debugCheckHasMaterialLocalizations(context));
413
    final Widget child = NotificationListener<ScrollNotification>(
414 415
      key: _key,
      onNotification: _handleScrollNotification,
416
      child: NotificationListener<OverscrollIndicatorNotification>(
417
        onNotification: _handleGlowNotification,
418
        child: widget.child,
419 420 421 422 423 424 425 426 427
      ),
    );
    if (_mode == null) {
      assert(_dragOffset == null);
      assert(_isIndicatorAtTop == null);
      return child;
    }
    assert(_dragOffset != null);
    assert(_isIndicatorAtTop != null);
428

429 430 431
    final bool showIndeterminateIndicator =
      _mode == _RefreshIndicatorMode.refresh || _mode == _RefreshIndicatorMode.done;

432
    return Stack(
433 434
      children: <Widget>[
        child,
435
        Positioned(
436 437 438 439
          top: _isIndicatorAtTop ? 0.0 : null,
          bottom: !_isIndicatorAtTop ? 0.0 : null,
          left: 0.0,
          right: 0.0,
440
          child: SizeTransition(
441
            axisAlignment: _isIndicatorAtTop ? 1.0 : -1.0,
442
            sizeFactor: _positionFactor, // this is what brings it down
443
            child: Container(
444
              padding: _isIndicatorAtTop
445 446
                ? EdgeInsets.only(top: widget.displacement)
                : EdgeInsets.only(bottom: widget.displacement),
447
              alignment: _isIndicatorAtTop
448 449
                ? Alignment.topCenter
                : Alignment.bottomCenter,
450
              child: ScaleTransition(
451
                scale: _scaleFactor,
452
                child: AnimatedBuilder(
453 454
                  animation: _positionController,
                  builder: (BuildContext context, Widget child) {
455
                    return RefreshProgressIndicator(
456 457
                      semanticsLabel: widget.semanticsLabel ?? MaterialLocalizations.of(context).refreshIndicatorSemanticLabel,
                      semanticsValue: widget.semanticsValue,
458 459
                      value: showIndeterminateIndicator ? null : _value.value,
                      valueColor: _valueColor,
460
                      backgroundColor: widget.backgroundColor,
461 462 463 464 465
                    );
                  },
                ),
              ),
            ),
466
          ),
467 468
        ),
      ],
469 470 471
    );
  }
}