Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Unified Diff: sky/framework/components/fixed_height_scrollable.dart

Issue 1104233003: [Effen] fix some dart warnings (mostly unused imports) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/components/drawer.dart ('k') | sky/framework/components/ink_splash.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ed46122c80786ce13f1676657e54c2619384224a..3f3e973d8b3e3d36c1f46ed81ce5b515aaf037cb 100644
--- a/sky/framework/components/fixed_height_scrollable.dart
+++ b/sky/framework/components/fixed_height_scrollable.dart
@@ -9,7 +9,6 @@ import 'dart:math' as math;
import 'dart:sky' as sky;
import 'dart:async';
import 'scrollable.dart';
-import '../layouts/block.dart';
abstract class FixedHeightScrollable extends Scrollable {
static final Style _style = new Style('''
@@ -28,6 +27,7 @@ abstract class FixedHeightScrollable extends Scrollable {
}) : super(key: key);
ScrollBehavior createScrollBehavior() => new OverscrollBehavior();
+ OverscrollBehavior get scrollBehavior => super.scrollBehavior as OverscrollBehavior;
double _height = 0.0;
double _itemHeight;
@@ -106,4 +106,6 @@ abstract class FixedHeightScrollable extends Scrollable {
]
);
}
+
+ List<UINode> buildItems(int start, int count);
}
« no previous file with comments | « sky/framework/components/drawer.dart ('k') | sky/framework/components/ink_splash.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698