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

Unified Diff: sky/sdk/lib/framework/rendering/box.dart

Issue 1179713004: Material and RaisedButton. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
Index: sky/sdk/lib/framework/rendering/box.dart
diff --git a/sky/sdk/lib/framework/rendering/box.dart b/sky/sdk/lib/framework/rendering/box.dart
index abc6c65e399108590b5862507c5365213fde5863..90523eb9605a78159576bf8e84e730c118aaad5b 100644
--- a/sky/sdk/lib/framework/rendering/box.dart
+++ b/sky/sdk/lib/framework/rendering/box.dart
@@ -53,7 +53,8 @@ class BoxConstraints {
this.minWidth: 0.0,
this.maxWidth: double.INFINITY,
this.minHeight: 0.0,
- this.maxHeight: double.INFINITY});
+ this.maxHeight: double.INFINITY
+ });
BoxConstraints.tight(Size size)
: minWidth = size.width,

Powered by Google App Engine
This is Rietveld 408576698