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

Side by Side Diff: sky/sdk/lib/framework/widgets/raised_button.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports 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/framework/widgets/radio.dart ('k') | sky/sdk/lib/framework/widgets/scaffold.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 import '../theme2/edges.dart';
6 import '../theme2/colors.dart';
7 import 'button_base.dart';
8 import 'ink_well.dart';
9 import 'material.dart';
10 import 'basic.dart';
11
12 enum RaisedButtonTheme { light, dark }
13
14 class RaisedButton extends ButtonBase {
15
16 RaisedButton({ Object key, this.child, this.onPressed, this.theme: RaisedButto nTheme.light }) : super(key: key);
17
18 UINode child;
19 int level;
20 Function onPressed;
21 RaisedButtonTheme theme;
22
23 void syncFields(RaisedButton source) {
24 child = source.child;
25 level = source.level;
26 onPressed = source.onPressed;
27 super.syncFields(source);
28 }
29
30 UINode buildContent() {
31 return new EventListenerNode(
32 new Container(
33 height: 36.0,
34 constraints: new BoxConstraints(minWidth: 88.0),
35 margin: new EdgeDims.all(4.0),
36 child: new Material(
37 edge: MaterialEdge.card,
38 child: new InkWell(
39 child: new Container(
40 padding: new EdgeDims.symmetric(horizontal: 8.0),
41 child: new Center(child: child)
42 )
43 ),
44 level: highlight ? 2 : 1,
45 color: theme == RaisedButtonTheme.light
46 ? (highlight ? Grey[350] : Grey[300])
47 : (highlight ? Blue[700] : Blue[600])
48 )
49 ),
50 onGestureTap: (_) { if (onPressed != null) onPressed(); }
51 );
52 }
53
54 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/widgets/radio.dart ('k') | sky/sdk/lib/framework/widgets/scaffold.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698