| Index: sky/sdk/lib/widgets/scrollable.dart
|
| diff --git a/sky/sdk/lib/widgets/scrollable.dart b/sky/sdk/lib/widgets/scrollable.dart
|
| index 08d2881566724245109cdd2396304ca56232f0c1..c63005226ecca9b52192533b2618bd208b81361f 100644
|
| --- a/sky/sdk/lib/widgets/scrollable.dart
|
| +++ b/sky/sdk/lib/widgets/scrollable.dart
|
| @@ -35,6 +35,7 @@ abstract class Scrollable extends StatefulComponent {
|
| Color backgroundColor;
|
| ScrollDirection direction;
|
|
|
| + @override
|
| void syncFields(Scrollable source) {
|
| backgroundColor = source.backgroundColor;
|
| direction == source.direction;
|
| @@ -55,6 +56,7 @@ abstract class Scrollable extends StatefulComponent {
|
|
|
| Widget buildContent();
|
|
|
| + @override
|
| Widget build() {
|
| return new Listener(
|
| child: new Material(
|
| @@ -117,6 +119,7 @@ abstract class Scrollable extends StatefulComponent {
|
| return scrollTo(newScrollOffset);
|
| }
|
|
|
| + @override
|
| void didUnmount() {
|
| _stopSimulation();
|
| super.didUnmount();
|
|
|