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

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

Issue 1160763004: Add support for testing content in SkyView (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 UINode build() {
7 return new Container(
8 inlineStyle: 'background-color: green',
9 children: [
10 new Text('I am Text'),
11 new Image(src: 'resources/united.jpg')
12 ]
13 );
14 }
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698