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

Side by Side Diff: sky/examples/fn/widgets/button.dart

Issue 993033003: Move example fn widgets into sky/framework/components (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/examples/fn/widgets/box.dart ('k') | sky/examples/fn/widgets/buttonbase.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 part of widgets;
2
3 class Button extends ButtonBase {
4
5 static Style _style = new Style('''
6 transform: translateX(0);
7 display: inline-flex;
8 border-radius: 4px;
9 justify-content: center;
10 align-items: center;
11 border: 1px solid blue;
12 -webkit-user-select: none;
13 margin: 5px;'''
14 );
15
16 static Style _highlightStyle = new Style('''
17 transform: translateX(0);
18 display: inline-flex;
19 border-radius: 4px;
20 justify-content: center;
21 align-items: center;
22 border: 1px solid blue;
23 -webkit-user-select: none;
24 margin: 5px;
25 background-color: orange;'''
26 );
27
28 Node content;
29
30 Button({ Object key, this.content }) : super(key: key);
31
32 Node build() {
33 return new Container(
34 key: 'Button',
35 style: _highlight ? _highlightStyle : _style,
36 children: [super.build(), content]
37 );
38 }
39 }
OLDNEW
« no previous file with comments | « sky/examples/fn/widgets/box.dart ('k') | sky/examples/fn/widgets/buttonbase.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698