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

Unified Diff: sky/sdk/lib/framework/components2/floating_action_button.dart

Issue 1172173002: Clean up a bunch of our Dart code. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: upstream merge 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/sdk/lib/framework/components2/drawer_header.dart ('k') | sky/sdk/lib/framework/components2/icon.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/components2/floating_action_button.dart
diff --git a/sky/sdk/lib/framework/components2/floating_action_button.dart b/sky/sdk/lib/framework/components2/floating_action_button.dart
index c6611c41cadc98522b4241c869c018cdcba4ca00..e4be516755e90bebe92a8aef6f201ace3b200256 100644
--- a/sky/sdk/lib/framework/components2/floating_action_button.dart
+++ b/sky/sdk/lib/framework/components2/floating_action_button.dart
@@ -13,12 +13,13 @@ import 'material.dart';
const double _kSize = 56.0;
class FloatingActionButton extends Component {
- UINode content;
- int level;
FloatingActionButton({ Object key, this.content, this.level: 0 })
: super(key: key);
+ UINode content;
+ int level;
+
UINode build() {
List<UINode> children = [];
@@ -43,4 +44,5 @@ class FloatingActionButton extends Component {
child: new InkWell(children: children))),
level: level);
}
+
}
« no previous file with comments | « sky/sdk/lib/framework/components2/drawer_header.dart ('k') | sky/sdk/lib/framework/components2/icon.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698