| 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))
|
| )
|
| )
|
| );
|
|
|