We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0275e5 commit 36cede5Copy full SHA for 36cede5
examples/flutter_gallery/lib/gallery/demos.dart
@@ -107,6 +107,14 @@ List<GalleryDemo> _buildGalleryDemos() {
107
routeName: ContactsDemo.routeName,
108
buildRoute: (BuildContext context) => ContactsDemo(),
109
),
110
+ GalleryDemo(
111
+ title: 'Shrine',
112
+ subtitle: 'Basic shopping app',
113
+ icon: GalleryIcons.shrine,
114
+ category: _kDemos,
115
+ routeName: ShrineDemo.routeName,
116
+ buildRoute: (BuildContext context) => const ShrineDemo(),
117
+ ),
118
GalleryDemo(
119
title: 'Animation',
120
subtitle: 'Section organizer',
0 commit comments