Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: sky/sdk/lib/widgets/dialog.dart

Issue 1241483002: Improve drawer menu items (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/sdk/lib/widgets/dialog.dart
diff --git a/sky/sdk/lib/widgets/dialog.dart b/sky/sdk/lib/widgets/dialog.dart
index d9253dfbc1bcccdf64b7cd314948b36bde4b7dd2..4328190a6195bf034d59754ead161ff2ed70b73c 100644
--- a/sky/sdk/lib/widgets/dialog.dart
+++ b/sky/sdk/lib/widgets/dialog.dart
@@ -39,7 +39,7 @@ class Dialog extends Component {
Color get _color {
switch (Theme.of(this).brightness) {
case ThemeBrightness.light:
- return colors.White;
+ return colors.white;
case ThemeBrightness.dark:
return colors.Grey[800];
}

Powered by Google App Engine
This is Rietveld 408576698