Commit 76ea70a1 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Change the Gallery AnimationDemo category (#5041)

parent 4c3018f7
...@@ -66,12 +66,6 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[ ...@@ -66,12 +66,6 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[
buildRoute: (BuildContext context) => new ContactsDemo() buildRoute: (BuildContext context) => new ContactsDemo()
), ),
// Components // Components
new GalleryItem(
title: 'Animation',
subtitle: 'Material motion for points and rectangles',
routeName: AnimationDemo.routeName,
buildRoute: (BuildContext context) => new AnimationDemo()
),
new GalleryItem( new GalleryItem(
title: 'Buttons', title: 'Buttons',
subtitle: 'All kinds: flat, raised, dropdown, icon, etc', subtitle: 'All kinds: flat, raised, dropdown, icon, etc',
...@@ -229,6 +223,13 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[ ...@@ -229,6 +223,13 @@ final List<GalleryItem> kAllGalleryItems = <GalleryItem>[
buildRoute: (BuildContext context) => new TooltipDemo() buildRoute: (BuildContext context) => new TooltipDemo()
), ),
// Styles // Styles
new GalleryItem(
title: 'Animation',
subtitle: 'Material motion for points and rectangles',
category: 'Style',
routeName: AnimationDemo.routeName,
buildRoute: (BuildContext context) => new AnimationDemo()
),
new GalleryItem( new GalleryItem(
title: 'Colors', title: 'Colors',
subtitle: 'All of the predefined colors', subtitle: 'All of the predefined colors',
......
...@@ -54,6 +54,7 @@ final List<String> demoTitles = <String>[ ...@@ -54,6 +54,7 @@ final List<String> demoTitles = <String>[
'Time picker', 'Time picker',
'Tooltips', 'Tooltips',
// Style // Style
'Animation',
'Colors', 'Colors',
'Typography' 'Typography'
]; ];
......
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