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

Side by Side Diff: sky/sdk/lib/widgets/flat_button.dart

Issue 1201273002: Add a confirmation dialog to stock app Settings page and style it by default (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « sky/sdk/lib/widgets/dialog.dart ('k') | sky/tests/widgets/buttons-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import '../theme/colors.dart'; 5 import '../theme/colors.dart';
6 import 'basic.dart'; 6 import 'basic.dart';
7 import 'material_button.dart'; 7 import 'material_button.dart';
8 import 'theme.dart'; 8 import 'theme.dart';
9 9
10 class FlatButton extends MaterialButton { 10 class FlatButton extends MaterialButton {
11 FlatButton({ 11 FlatButton({
12 String key, 12 String key,
13 Widget child, 13 Widget child,
14 bool enabled: true, 14 bool enabled: true,
15 Function onPressed 15 Function onPressed
16 }) : super(key: key, 16 }) : super(key: key,
17 child: child, 17 child: child,
18 enabled: enabled, 18 enabled: enabled,
19 onPressed: onPressed); 19 onPressed: onPressed);
20 20
21 Color get color { 21 Color get color {
22 if (!enabled || !highlight) 22 if (!enabled || !highlight)
23 return null; 23 return const Color(0x00000000);
24 switch (Theme.of(this).brightness) { 24 switch (Theme.of(this).brightness) {
25 case ThemeBrightness.light: 25 case ThemeBrightness.light:
26 return Grey[400]; 26 return Grey[400];
27 case ThemeBrightness.dark: 27 case ThemeBrightness.dark:
28 return Grey[200]; 28 return Grey[200];
29 } 29 }
30 } 30 }
31 31
32 int get level => null; 32 int get level => null;
33 } 33 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/widgets/dialog.dart ('k') | sky/tests/widgets/buttons-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698