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

Unified Diff: sky/sdk/lib/framework/widgets/fixed_height_scrollable.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/widgets/fixed_height_scrollable.dart
diff --git a/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart b/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
index 70df8523d8d28039a319935c18c28f2f3ec2909c..a12b2c96ec552563cc939cb95694aaa6bf2cf8c3 100644
--- a/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
+++ b/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
@@ -70,14 +70,9 @@ abstract class FixedHeightScrollable extends Scrollable {
return new SizeObserver(
callback: _handleSizeChanged,
child: new ClipRect(
- child: new DecoratedBox(
- decoration: const BoxDecoration(
- backgroundColor: const Color(0xFFFFFFFF)
- ),
- child: new Transform(
- transform: transform,
- child: new Block(buildItems(itemShowIndex, itemShowCount))
- )
+ child: new Transform(
+ transform: transform,
+ child: new Block(buildItems(itemShowIndex, itemShowCount))
)
)
);
« no previous file with comments | « sky/sdk/lib/framework/widgets/drawer.dart ('k') | sky/sdk/lib/framework/widgets/floating_action_button.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698