Commit 2de2ce35 authored by Hans Muller's avatar Hans Muller Committed by GitHub

It is not easy being green (#4606)

parent 69b4bcaf
...@@ -34,7 +34,7 @@ class IconsDemoState extends State<IconsDemo> { ...@@ -34,7 +34,7 @@ class IconsDemoState extends State<IconsDemo> {
Colors.blueGrey Colors.blueGrey
]; ];
int iconColorIndex = 9; // green int iconColorIndex = 8; // teal
double iconOpacity = 1.0; double iconOpacity = 1.0;
Color get iconColor => iconColorSwatches[iconColorIndex][400]; Color get iconColor => iconColorSwatches[iconColorIndex][400];
......
...@@ -16,12 +16,12 @@ final Map<String, WidgetBuilder> _kRoutes = new Map<String, WidgetBuilder>.fromI ...@@ -16,12 +16,12 @@ final Map<String, WidgetBuilder> _kRoutes = new Map<String, WidgetBuilder>.fromI
final ThemeData _kGalleryLightTheme = new ThemeData( final ThemeData _kGalleryLightTheme = new ThemeData(
brightness: Brightness.light, brightness: Brightness.light,
primarySwatch: Colors.green primarySwatch: Colors.teal
); );
final ThemeData _kGalleryDarkTheme = new ThemeData( final ThemeData _kGalleryDarkTheme = new ThemeData(
brightness: Brightness.dark, brightness: Brightness.dark,
primarySwatch: Colors.green primarySwatch: Colors.teal
); );
class GalleryApp extends StatefulWidget { class GalleryApp extends StatefulWidget {
......
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