Advertisement
Guest User

Untitled

a guest
Sep 6th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.66 KB | None | 0 0
  1. makeTestContainer(color: 0,
  2.           child: makeVBox(children: [
  3.             makeHBox(children: [
  4.               makeTestElement(layoutProblem: makeFixedSizeLayoutProblem(dimensions: new Vec2(200.0, 200.0)), color: 1),
  5.               makeTestElement(layoutProblem: unconstrainedLayoutProblem, color: 3),
  6.               makeTestElement(layoutProblem: makeFixedSizeLayoutProblem(dimensions: new Vec2(200.0, 200.0)), color: 2),
  7.             ]),
  8.             makeHBox(children: [
  9.               makeTestElement(layoutProblem: unconstrainedLayoutProblem, color: 1),
  10.               makeTestElement(layoutProblem: unconstrainedLayoutProblem, color: 2),
  11.             ]),
  12.           ]))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement