| 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 e4dc1f4c7f7be38dc2dcafac64bbb5afabebd4c0..bc81eacfda69f50cd3ba2598d903c54b06c669e0 100644
|
| --- a/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| +++ b/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| @@ -38,7 +38,7 @@ abstract class FixedHeightScrollable extends Scrollable {
|
| void _handleSizeChanged(Size newSize) {
|
| setState(() {
|
| _height = newSize.height;
|
| - scrollBehavior.containerHeight = _height;
|
| + scrollBehavior.containerSize = _height;
|
| });
|
| }
|
|
|
| @@ -46,7 +46,7 @@ abstract class FixedHeightScrollable extends Scrollable {
|
| double contentsHeight = itemHeight * itemCount;
|
| if (padding != null)
|
| contentsHeight += padding.top + padding.bottom;
|
| - scrollBehavior.contentsHeight = contentsHeight;
|
| + scrollBehavior.contentsSize = contentsHeight;
|
| }
|
|
|
| void _updateScrollOffset() {
|
|
|