OLD | NEW |
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 | 8 import 'theme.dart'; |
9 export 'material_button.dart' show MaterialButtonTheme; | |
10 | 9 |
11 class FlatButton extends MaterialButton { | 10 class FlatButton extends MaterialButton { |
12 FlatButton({ | 11 FlatButton({ |
13 String key, | 12 String key, |
14 Widget child, | 13 Widget child, |
15 bool enabled: true, | 14 bool enabled: true, |
16 Function onPressed, | 15 Function onPressed |
17 MaterialButtonTheme theme: MaterialButtonTheme.light | |
18 }) : super(key: key, | 16 }) : super(key: key, |
19 child: child, | 17 child: child, |
20 enabled: enabled, | 18 enabled: enabled, |
21 onPressed: onPressed, | 19 onPressed: onPressed); |
22 theme: theme); | |
23 | 20 |
24 Color get color { | 21 Color get color { |
25 if (!enabled || !highlight) | 22 if (!enabled || !highlight) |
26 return null; | 23 return null; |
27 switch (theme) { | 24 switch (Theme.of(this).brightness) { |
28 case MaterialButtonTheme.light: | 25 case ThemeBrightness.light: |
29 return Grey[400]; | 26 return Grey[400]; |
30 case MaterialButtonTheme.dark: | 27 case ThemeBrightness.dark: |
31 return Grey[200]; | 28 return Grey[200]; |
32 } | 29 } |
33 } | 30 } |
34 | 31 |
35 int get level => null; | 32 int get level => null; |
36 } | 33 } |
OLD | NEW |