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

Unified Diff: sky/framework/components/checkbox.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/components/button_base.dart ('k') | sky/framework/components/drawer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/components/checkbox.dart
diff --git a/sky/examples/fn/widgets/checkbox.dart b/sky/framework/components/checkbox.dart
similarity index 67%
rename from sky/examples/fn/widgets/checkbox.dart
rename to sky/framework/components/checkbox.dart
index aa76471e014679af2469af1dd373da8cd0438278..c1695704f2f8679d7c32a4ce7cbf78bf45ed3061 100644
--- a/sky/examples/fn/widgets/checkbox.dart
+++ b/sky/framework/components/checkbox.dart
@@ -1,11 +1,14 @@
-part of widgets;
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
-class Checkbox extends ButtonBase {
+import '../fn.dart';
+import 'button_base.dart';
- bool checked;
- ValueChanged onChanged;
+typedef void ValueChanged(value);
- static Style _style = new Style('''
+class Checkbox extends ButtonBase {
+ static final Style _style = new Style('''
transform: translateX(0);
display: flex;
justify-content: center;
@@ -16,14 +19,14 @@ class Checkbox extends ButtonBase {
height: 30px;'''
);
- static Style _containerStyle = new Style('''
+ static final Style _containerStyle = new Style('''
border: solid 2px;
border-color: rgba(90, 90, 90, 0.25);
width: 10px;
height: 10px;'''
);
- static Style _containerHighlightStyle = new Style('''
+ static final Style _containerHighlightStyle = new Style('''
border: solid 2px;
border-color: rgba(90, 90, 90, 0.25);
width: 10px;
@@ -33,12 +36,12 @@ class Checkbox extends ButtonBase {
border-color: orange;'''
);
- static Style _uncheckedStyle = new Style('''
+ static final Style _uncheckedStyle = new Style('''
top: 0px;
left: 0px;'''
);
- static Style _checkedStyle = new Style('''
+ static final Style _checkedStyle = new Style('''
top: 0px;
left: 0px;
transform: translate(2px, -15px) rotate(45deg);
@@ -52,7 +55,16 @@ class Checkbox extends ButtonBase {
border-color: #0f9d58;'''
);
- Checkbox({ Object key, this.onChanged, this.checked }) : super(key: key);
+ bool checked;
+ ValueChanged onChanged;
+
+ Checkbox({ Object key, this.onChanged, this.checked }) : super(key: key) {
+ events.listen('click', _handleClick);
+ }
+
+ void _handleClick(sky.Event e) {
+ onChanged(!checked);
+ }
Node build() {
return new Container(
@@ -60,7 +72,7 @@ class Checkbox extends ButtonBase {
children: [
super.build(),
new Container(
- style: _highlight ? _containerHighlightStyle : _containerStyle,
+ style: highlight ? _containerHighlightStyle : _containerStyle,
children: [
new Container(
style: checked ? _checkedStyle : _uncheckedStyle
@@ -68,10 +80,6 @@ class Checkbox extends ButtonBase {
]
)
]
- )..events.listen('click', _handleClick);
- }
-
- void _handleClick(sky.Event e) {
- onChanged(!checked);
+ )
}
}
« no previous file with comments | « sky/framework/components/button_base.dart ('k') | sky/framework/components/drawer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698