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

Side by Side Diff: sky/tests/framework/basic.dart

Issue 1038583003: [Effen] Add a basic layout test (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 import 'dart:sky';
2
3 import 'package:sky/framework/fn.dart';
4
5 class TestApp extends App {
6 Node build() {
7 return new Container(
8 inlineStyle: 'background-color: green',
9 children: [
10 new Text('I am Text'),
11 new Image(src: 'foo.jpg'),
12 new Anchor(href: 'http://www.google.com')
13 ]
14 );
15 }
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698