Commit 6af9e6c9 authored by Hixie's avatar Hixie

RenderTable

parent 8cbeb2e9
......@@ -44,6 +44,7 @@ export 'src/rendering/rotated_box.dart';
export 'src/rendering/semantics.dart';
export 'src/rendering/shifted_box.dart';
export 'src/rendering/stack.dart';
export 'src/rendering/table.dart';
export 'src/rendering/view.dart';
export 'src/rendering/viewport.dart';
......
This diff is collapsed.
......@@ -14,6 +14,7 @@ import 'dart:collection';
/// [debugDumpApp]) and to the Dart [print] method can result in out-of-order
/// messages in the logs.
void debugPrint(String message) {
print(message);
_debugPrintBuffer.addAll(message.split('\n'));
if (!_debugPrintScheduled)
_debugPrintTask();
......
// 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 'package:flutter/rendering.dart';
import 'package:test/test.dart';
import 'rendering_tester.dart';
RenderBox sizedBox(double width, double height) {
return new RenderConstrainedBox(
additionalConstraints: new BoxConstraints.tight(new Size(width, height))
);
}
void main() {
test('Table control test; tight', () {
RenderTable table;
layout(table = new RenderTable());
expect(table.size.width, equals(800.0));
expect(table.size.height, equals(600.0));
});
test('Table control test; loose', () {
RenderTable table;
layout(new RenderPositionedBox(child: table = new RenderTable()));
expect(table.size, equals(const Size(800.0, 0.0)));
});
test('Table test: combinations', () {
RenderTable table;
layout(new RenderPositionedBox(child: table = new RenderTable(
columns: 5,
rows: 5,
defaultColumnWidth: const IntrinsicColumnWidth(),
defaultVerticalAlignment: TableCellVerticalAlignment.baseline,
textBaseline: TextBaseline.alphabetic
)));
expect(table.size, equals(const Size(800.0, 0.0)));
table.setChild(2, 4, sizedBox(100.0, 200.0));
pumpFrame();
expect(table.size, equals(new Size(800.0, 200.0)));
table.setChild(0, 0, sizedBox(10.0, 30.0));
table.setChild(1, 0, sizedBox(20.0, 20.0));
table.setChild(2, 0, sizedBox(30.0, 10.0));
pumpFrame();
expect(table.size, equals(new Size(800.0, 230.0)));
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment