From 346036cdb95a98208f13572bcda58d23ab81fb29 Mon Sep 17 00:00:00 2001 From: "sanfan.hx" Date: Sun, 20 Jan 2019 17:24:25 +0800 Subject: [PATCH] feat(CupertinoSliverRefreshControl demo) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CupertinoSliverRefreshControl demo与CupertinoSliverNavigationBar无差别, 所以二者路由引到同一个位置 --- lib/widgets/themes/Cupertino/index.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/widgets/themes/Cupertino/index.dart b/lib/widgets/themes/Cupertino/index.dart index 1e4281dc..f2494a44 100644 --- a/lib/widgets/themes/Cupertino/index.dart +++ b/lib/widgets/themes/Cupertino/index.dart @@ -25,4 +25,9 @@ List widgetPoints = [ routerName: CupertinoSliverNavigationBar.Demo.routeName, buildRouter: (BuildContext context) => CupertinoSliverNavigationBar.Demo(), ), + WidgetPoint( + name: 'CupertinoSliverRefreshControl', + routerName: CupertinoSliverNavigationBar.Demo.routeName, + buildRouter: (BuildContext context) => CupertinoSliverNavigationBar.Demo(), + ), ];