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

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

Issue 1064983002: [Effen] basic layout container class for custom layout (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 | « no previous file | sky/framework/fn.dart » ('j') | sky/framework/layouts/block.dart » ('J')
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 0361ff1cda1311f1df60cc6561d83858f926e690..6a9f358004c1d5cefaa24832b3547865a2bf130a 100644
--- a/sky/framework/components/fixed_height_scrollable.dart
+++ b/sky/framework/components/fixed_height_scrollable.dart
@@ -9,6 +9,7 @@ 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('''
@@ -84,7 +85,7 @@ abstract class FixedHeightScrollable extends Scrollable {
return new Container(
style: _style,
children: [
- new Container(
+ new BlockLayout(
style: _scrollAreaStyle,
inlineStyle: transformStyle,
children: buildItems(itemNumber, drawCount)
« no previous file with comments | « no previous file | sky/framework/fn.dart » ('j') | sky/framework/layouts/block.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698