From 76ea70a123799dced8da35b52c23b950572c746a Mon Sep 17 00:00:00 2001 From: Hans Muller Date: Tue, 26 Jul 2016 11:00:11 -0700 Subject: [PATCH] Change the Gallery AnimationDemo category (#5041) --- examples/flutter_gallery/lib/gallery/item.dart | 13 +++++++------ .../test_driver/transitions_perf_test.dart | 1 + 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/examples/flutter_gallery/lib/gallery/item.dart b/examples/flutter_gallery/lib/gallery/item.dart index 1458c267120..95d330599ce 100644 --- a/examples/flutter_gallery/lib/gallery/item.dart +++ b/examples/flutter_gallery/lib/gallery/item.dart @@ -66,12 +66,6 @@ final List kAllGalleryItems = [ buildRoute: (BuildContext context) => new ContactsDemo() ), // Components - new GalleryItem( - title: 'Animation', - subtitle: 'Material motion for points and rectangles', - routeName: AnimationDemo.routeName, - buildRoute: (BuildContext context) => new AnimationDemo() - ), new GalleryItem( title: 'Buttons', subtitle: 'All kinds: flat, raised, dropdown, icon, etc', @@ -229,6 +223,13 @@ final List kAllGalleryItems = [ buildRoute: (BuildContext context) => new TooltipDemo() ), // Styles + new GalleryItem( + title: 'Animation', + subtitle: 'Material motion for points and rectangles', + category: 'Style', + routeName: AnimationDemo.routeName, + buildRoute: (BuildContext context) => new AnimationDemo() + ), new GalleryItem( title: 'Colors', subtitle: 'All of the predefined colors', diff --git a/examples/flutter_gallery/test_driver/transitions_perf_test.dart b/examples/flutter_gallery/test_driver/transitions_perf_test.dart index 3ad973ccc77..204cb5a7195 100644 --- a/examples/flutter_gallery/test_driver/transitions_perf_test.dart +++ b/examples/flutter_gallery/test_driver/transitions_perf_test.dart @@ -54,6 +54,7 @@ final List demoTitles = [ 'Time picker', 'Tooltips', // Style + 'Animation', 'Colors', 'Typography' ];