| Index: sky/framework/components/fixed_height_scrollable.dart
|
| diff --git a/sky/framework/components/fixed_height_scrollable.dart b/sky/framework/components/fixed_height_scrollable.dart
|
| index fcb36da06c1763aa12e2261b34e21d582d93a913..4f3a9d9116cc7d9af231266704b5f335f667e536 100644
|
| --- a/sky/framework/components/fixed_height_scrollable.dart
|
| +++ b/sky/framework/components/fixed_height_scrollable.dart
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +import '../animation/scroll_curve.dart';
|
| import '../fn.dart';
|
| import 'dart:sky' as sky;
|
| import 'scrollable.dart';
|
| @@ -27,10 +28,8 @@ abstract class FixedHeightScrollable extends Scrollable {
|
|
|
| FixedHeightScrollable({
|
| Object key,
|
| - double minOffset,
|
| - double maxOffset
|
| - }) : super(key: key, minOffset: minOffset, maxOffset: maxOffset) {
|
| - }
|
| + ScrollCurve scrollCurve
|
| + }) : super(key: key, scrollCurve: scrollCurve);
|
|
|
| void didMount() {
|
| super.didMount();
|
|
|