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

Unified Diff: sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports Created 5 years, 6 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
Index: sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
diff --git a/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart b/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
deleted file mode 100644
index e03495937da679b95ad6caee8a4c76cd54c14d09..0000000000000000000000000000000000000000
--- a/sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import 'dart:math' as math;
-
-import 'package:vector_math/vector_math.dart';
-
-import '../animation/scroll_behavior.dart';
-import 'scrollable.dart';
-import 'basic.dart';
-
-abstract class FixedHeightScrollable extends Scrollable {
-
- FixedHeightScrollable({ this.itemHeight, Object key }) : super(key: key) {
- assert(itemHeight != null);
- }
-
- double itemHeight;
-
- void syncFields(FixedHeightScrollable source) {
- itemHeight = source.itemHeight;
- super.syncFields(source);
- }
-
- ScrollBehavior createScrollBehavior() => new OverscrollBehavior();
- OverscrollBehavior get scrollBehavior => super.scrollBehavior as OverscrollBehavior;
-
- int _itemCount = 0;
- int get itemCount => _itemCount;
- void set itemCount (int value) {
- if (_itemCount != value) {
- _itemCount = value;
- scrollBehavior.contentsHeight = itemHeight * _itemCount;
- }
- }
-
- double _height;
- void _handleSizeChanged(Size newSize) {
- setState(() {
- _height = newSize.height;
- scrollBehavior.containerHeight = _height;
- });
- }
-
- UINode buildContent() {
- var itemShowIndex = 0;
- var itemShowCount = 0;
-
- Matrix4 transform = new Matrix4.identity();
-
- if (_height != null && _height > 0.0) {
- if (scrollOffset < 0.0) {
- double visibleHeight = _height + scrollOffset;
- itemShowCount = (visibleHeight / itemHeight).round() + 1;
- transform.translate(0.0, -scrollOffset);
- } else {
- itemShowCount = (_height / itemHeight).ceil() + 1;
- double alignmentDelta = -scrollOffset % itemHeight;
- if (alignmentDelta != 0.0)
- alignmentDelta -= itemHeight;
-
- double drawStart = scrollOffset + alignmentDelta;
- itemShowIndex = math.max(0, (drawStart / itemHeight).floor());
-
- transform.translate(0.0, alignmentDelta);
- }
- }
-
- return new SizeObserver(
- callback: _handleSizeChanged,
- child: new ClipRect(
- child: new Transform(
- transform: transform,
- child: new Block(buildItems(itemShowIndex, itemShowCount))
- )
- )
- );
- }
-
- List<UINode> buildItems(int start, int count);
-
-}
« no previous file with comments | « sky/sdk/lib/framework/widgets/drawer_header.dart ('k') | sky/sdk/lib/framework/widgets/floating_action_button.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698