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

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

Issue 1233703003: add initState, rename animated_container (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove print statement 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 unified diff | Download patch
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 {
(...skipping 11 matching lines...) Expand all
22 if (!enabled || !highlight) 22 if (!enabled || !highlight)
23 return null; 23 return null;
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 => 0;
33 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698