From 8d0ec25eb6f3bbfa1175ffc89fd88bb8a67e6ae2 Mon Sep 17 00:00:00 2001 From: Hans Muller Date: Wed, 2 May 2018 11:09:28 -0700 Subject: [PATCH] Updated the error color in the Gallery themes (#17200) --- examples/flutter_gallery/lib/gallery/themes.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/flutter_gallery/lib/gallery/themes.dart b/examples/flutter_gallery/lib/gallery/themes.dart index 18d545c4ed0..d23c5412145 100644 --- a/examples/flutter_gallery/lib/gallery/themes.dart +++ b/examples/flutter_gallery/lib/gallery/themes.dart @@ -33,6 +33,7 @@ ThemeData _buildDarkTheme() { canvasColor: const Color(0xFF202124), scaffoldBackgroundColor: const Color(0xFF202124), backgroundColor: const Color(0xFF202124), + errorColor: const Color(0xFFB00020), buttonTheme: const ButtonThemeData( textTheme: ButtonTextTheme.primary, ), @@ -55,6 +56,7 @@ ThemeData _buildLightTheme() { canvasColor: Colors.white, scaffoldBackgroundColor: Colors.white, backgroundColor: Colors.white, + errorColor: const Color(0xFFB00020), buttonTheme: const ButtonThemeData( textTheme: ButtonTextTheme.primary, ),