Unverified Commit 5f465897 authored by Per Classon's avatar Per Classon Committed by GitHub

Update RefreshIndicator documentation to clarify the need for the child for be scrollable (#50345)

parent 038762bd
...@@ -56,19 +56,23 @@ enum _RefreshIndicatorMode { ...@@ -56,19 +56,23 @@ enum _RefreshIndicatorMode {
/// scrollable's contents and then complete the [Future] it returns. The refresh /// scrollable's contents and then complete the [Future] it returns. The refresh
/// indicator disappears after the callback's [Future] has completed. /// indicator disappears after the callback's [Future] has completed.
/// ///
/// If the [Scrollable] might not have enough content to overscroll, consider /// ## Troubleshooting
/// settings its `physics` property to [AlwaysScrollableScrollPhysics]: ///
/// ### Refresh indicator does not show up
///
/// The [RefreshIndicator] will appear if its scrollable descendant can be
/// overscrolled, i.e. if the scrollable's content is bigger than its viewport.
/// To ensure that the [RefreshIndicator] will always appear, even if the
/// scrollable's content fits within its viewport, set the scrollable's
/// [Scrollable.physics] property to [AlwaysScrollableScrollPhysics]:
/// ///
/// ```dart /// ```dart
/// ListView( /// ListView(
/// physics: const AlwaysScrollableScrollPhysics(), /// physics: const AlwaysScrollableScrollPhysics(),
/// children: ... /// 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. /// A [RefreshIndicator] can only be used with a vertical scroll view.
/// ///
/// See also: /// See also:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment