| Index: sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
|
| diff --git a/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart b/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
|
| index fc1fc72712e922b29be1608452d2a6c1004d9846..b70932e918802f1cee32649eaa3a20cfa5cc070b 100644
|
| --- a/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
|
| +++ b/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
|
| @@ -6,7 +6,6 @@ import '../animation/scroll_behavior.dart';
|
| import '../fn2.dart';
|
| import 'dart:async';
|
| import 'dart:math' as math;
|
| -import 'dart:sky' as sky;
|
| import 'package:vector_math/vector_math.dart';
|
| import 'scrollable.dart';
|
|
|
| @@ -30,7 +29,7 @@ abstract class FixedHeightScrollable extends Scrollable {
|
| }
|
| }
|
|
|
| - void _handleSizeChanged(sky.Size newSize) {
|
| + void _handleSizeChanged(Size newSize) {
|
| setState(() {
|
| _height = newSize.height;
|
| scrollBehavior.containerHeight = _height;
|
|
|