| Index: sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| diff --git a/sky/sdk/lib/widgets/fixed_height_scrollable.dart b/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| index e35cfb92b09a43bc28510151f6038a52fbe99f3a..06ce7d35ae2171492a073d37a9e2b6d6d843323a 100644
|
| --- a/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| +++ b/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| @@ -85,6 +85,9 @@ abstract class FixedHeightScrollable extends Scrollable {
|
| List<Widget> items = buildItems(itemShowIndex, itemShowCount);
|
| assert(items.every((item) => item.key != null));
|
|
|
| + // TODO(ianh): Refactor this so that it does the building in the
|
| + // same frame as the size observing, similar to BlockViewport, but
|
| + // keeping the fixed-height optimisations.
|
| return new SizeObserver(
|
| callback: _handleSizeChanged,
|
| child: new Viewport(
|
|
|