From 33fea5c19a4754bf96078cf479542340b2eae672 Mon Sep 17 00:00:00 2001 From: xster Date: Mon, 19 Mar 2018 17:03:56 -0700 Subject: [PATCH] Remove the 'demo' wording from gallery (#15640) --- examples/flutter_gallery/lib/gallery/item.dart | 10 +++++----- .../test/example_code_display_test.dart | 2 +- examples/flutter_gallery/test/simple_smoke_test.dart | 2 +- .../flutter_gallery/test_driver/scroll_perf_test.dart | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/flutter_gallery/lib/gallery/item.dart b/examples/flutter_gallery/lib/gallery/item.dart index 292013e2b6e..44b7120bae3 100644 --- a/examples/flutter_gallery/lib/gallery/item.dart +++ b/examples/flutter_gallery/lib/gallery/item.dart @@ -55,28 +55,28 @@ List _buildGalleryItems() { new GalleryItem( title: 'Shrine', subtitle: 'Basic shopping app', - category: 'Demos', + category: 'Vignettes', routeName: ShrineDemo.routeName, buildRoute: (BuildContext context) => new ShrineDemo(), ), new GalleryItem( title: 'Contact profile', subtitle: 'Address book entry with a flexible appbar', - category: 'Demos', + category: 'Vignettes', routeName: ContactsDemo.routeName, buildRoute: (BuildContext context) => new ContactsDemo(), ), new GalleryItem( title: 'Animation', subtitle: 'Section organizer', - category: 'Demos', + category: 'Vignettes', routeName: AnimationDemo.routeName, buildRoute: (BuildContext context) => const AnimationDemo(), ), new GalleryItem( title: 'Video', subtitle: 'Video playback', - category: 'Demos', + category: 'Vignettes', routeName: VideoDemo.routeName, buildRoute: (BuildContext context) => const VideoDemo(), ), @@ -373,7 +373,7 @@ List _buildGalleryItems() { new GalleryItem( title: 'Pesto', subtitle: 'Simple recipe browser', - category: 'Demos', + category: 'Vignettes', routeName: PestoDemo.routeName, buildRoute: (BuildContext context) => const PestoDemo(), ), diff --git a/examples/flutter_gallery/test/example_code_display_test.dart b/examples/flutter_gallery/test/example_code_display_test.dart index 1e614041b40..8b9624ef80c 100644 --- a/examples/flutter_gallery/test/example_code_display_test.dart +++ b/examples/flutter_gallery/test/example_code_display_test.dart @@ -20,7 +20,7 @@ void main() { // Scroll the Buttons demo into view so that a tap will succeed - final Offset allDemosOrigin = tester.getTopRight(find.text('Demos')); + final Offset allDemosOrigin = tester.getTopRight(find.text('Vignettes')); final Finder button = find.text('Buttons'); while (button.evaluate().isEmpty) { await tester.dragFrom(allDemosOrigin, const Offset(0.0, -200.0)); diff --git a/examples/flutter_gallery/test/simple_smoke_test.dart b/examples/flutter_gallery/test/simple_smoke_test.dart index 776c5a7bf1d..d889b30ea63 100644 --- a/examples/flutter_gallery/test/simple_smoke_test.dart +++ b/examples/flutter_gallery/test/simple_smoke_test.dart @@ -37,7 +37,7 @@ void main() { await tester.pump(const Duration(seconds: 1)); // end animation // Open Demos - await tester.tap(find.text('Demos')); + await tester.tap(find.text('Vignettes')); await tester.pump(); // start animation await tester.pump(const Duration(seconds: 1)); // end animation diff --git a/examples/flutter_gallery/test_driver/scroll_perf_test.dart b/examples/flutter_gallery/test_driver/scroll_perf_test.dart index 67c05bee2a1..d69662eeada 100644 --- a/examples/flutter_gallery/test_driver/scroll_perf_test.dart +++ b/examples/flutter_gallery/test_driver/scroll_perf_test.dart @@ -26,7 +26,7 @@ void main() { final SerializableFinder stockList = find.byValueKey('Gallery List'); expect(stockList, isNotNull); - await driver.tap(find.text('Demos')); + await driver.tap(find.text('Vignettes')); await driver.tap(find.text('Components')); await driver.tap(find.text('Style'));