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

Unified Diff: sky/sdk/lib/framework/components2/ink_well.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/ink_splash.dart ('k') | sky/sdk/lib/framework/components2/input.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/components2/ink_well.dart
diff --git a/sky/sdk/lib/framework/components2/ink_well.dart b/sky/sdk/lib/framework/components2/ink_well.dart
index 2b2efc750361f962c6f2ae984827e8f8c78afc5d..05120acddb1ba1a992190e5d6c830b52239a2c00 100644
--- a/sky/sdk/lib/framework/components2/ink_well.dart
+++ b/sky/sdk/lib/framework/components2/ink_well.dart
@@ -10,6 +10,9 @@ import 'dart:sky' as sky;
import 'scrollable.dart';
class InkWell extends Component implements ScrollClient {
+
+ InkWell({ Object key, this.children }) : super(key: key);
+
// static final Style _containmentStyleHack = new Style('''
// align-items: center;
// transform: translateX(0);''');
@@ -25,8 +28,6 @@ class InkWell extends Component implements ScrollClient {
// });
// }
- InkWell({ Object key, this.children }) : super(key: key);
-
UINode build() {
return new FlexContainer(
direction: FlexDirection.horizontal,
@@ -121,4 +122,5 @@ class InkWell extends Component implements ScrollClient {
// _splashes = null;
// });
// }
+
}
« no previous file with comments | « sky/sdk/lib/framework/components2/ink_splash.dart ('k') | sky/sdk/lib/framework/components2/input.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698