From 2c00e5f21884cddfa25ee53976d5d61585adac11 Mon Sep 17 00:00:00 2001 From: xster Date: Wed, 11 Jul 2018 17:05:24 -0700 Subject: [PATCH] Add a doc describing where CupertinoSliverRefreshControl should be in a list of slivers (#19282) --- packages/flutter/lib/src/cupertino/refresh.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/flutter/lib/src/cupertino/refresh.dart b/packages/flutter/lib/src/cupertino/refresh.dart index 3069f7beaa6..607f79165eb 100644 --- a/packages/flutter/lib/src/cupertino/refresh.dart +++ b/packages/flutter/lib/src/cupertino/refresh.dart @@ -250,6 +250,10 @@ typedef Future RefreshCallback(); /// other words, refreshes can't be triggered with lists using /// [ClampingScrollPhysics]. /// +/// In a typical application, this sliver should be inserted between the app bar +/// sliver such as [CupertinoSliverNavigationBar] and your main scrollable +/// content's sliver. +/// /// See also: /// /// * [CustomScrollView], a typical sliver holding scroll view this control