align_items.dart 2.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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:sky';

import 'package:sky/painting/text_style.dart';
import 'package:sky/rendering/box.dart';
import 'package:sky/rendering/flex.dart';
import 'package:sky/rendering/object.dart';
import 'package:sky/rendering/paragraph.dart';
import 'package:sky/rendering/sky_binding.dart';

import 'solid_color_box.dart';

void main() {
  var table = new RenderFlex(direction: FlexDirection.vertical);

Collin Jackson's avatar
Collin Jackson committed
19
  for(FlexAlignItems alignItems in FlexAlignItems.values) {
20
    TextStyle style = const TextStyle(color: const Color(0xFF000000));
Eric Seidel's avatar
Eric Seidel committed
21
    RenderParagraph paragraph = new RenderParagraph(new StyledTextSpan(style, [new PlainTextSpan("${alignItems}")]));
22
    table.add(new RenderPadding(child: paragraph, padding: new EdgeDims.only(top: 20.0)));
Adam Barth's avatar
Adam Barth committed
23
    var row = new RenderFlex(alignItems: alignItems, textBaseline: TextBaseline.alphabetic);
24 25 26

    style = new TextStyle(fontSize: 15.0, color: const Color(0xFF000000));
    row.add(new RenderDecoratedBox(
Collin Jackson's avatar
Collin Jackson committed
27
      decoration: new BoxDecoration(backgroundColor: const Color(0x7FFFCCCC)),
Eric Seidel's avatar
Eric Seidel committed
28
      child: new RenderParagraph(new StyledTextSpan(style, [new PlainTextSpan('foo foo foo')]))
29 30 31
    ));
    style = new TextStyle(fontSize: 10.0, color: const Color(0xFF000000));
    row.add(new RenderDecoratedBox(
Collin Jackson's avatar
Collin Jackson committed
32
      decoration: new BoxDecoration(backgroundColor: const Color(0x7FCCFFCC)),
Eric Seidel's avatar
Eric Seidel committed
33
      child: new RenderParagraph(new StyledTextSpan(style, [new PlainTextSpan('foo foo foo')]))
34
    ));
Adam Barth's avatar
Adam Barth committed
35
    var subrow = new RenderFlex(alignItems: alignItems, textBaseline: TextBaseline.alphabetic);
36
    style = new TextStyle(fontSize: 25.0, color: const Color(0xFF000000));
Collin Jackson's avatar
Collin Jackson committed
37 38
    subrow.add(new RenderDecoratedBox(
      decoration: new BoxDecoration(backgroundColor: const Color(0x7FCCCCFF)),
Eric Seidel's avatar
Eric Seidel committed
39
      child: new RenderParagraph(new StyledTextSpan(style, [new PlainTextSpan('foo foo foo foo')]))
40
    ));
Collin Jackson's avatar
Collin Jackson committed
41 42
    subrow.add(new RenderSolidColorBox(const Color(0x7FCCFFFF), desiredSize: new Size(30.0, 40.0)));
    row.add(subrow);
43 44 45 46 47 48 49 50 51 52 53
    table.add(row);
    row.parentData.flex = 1;
  }

  RenderDecoratedBox root = new RenderDecoratedBox(
    decoration: new BoxDecoration(backgroundColor: const Color(0xFFFFFFFF)),
    child: new RenderPadding(child: table, padding: new EdgeDims.symmetric(vertical: 50.0))
  );

  new SkyBinding(root: root);
}