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

Side by Side Diff: sky/tests/framework/resources/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, 7 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
1 import 'dart:sky'; 1 import 'dart:sky';
2 2
3 import 'package:sky/framework/fn.dart'; 3 import 'package:sky/framework/fn.dart';
4 4
5 class TestApp extends App { 5 class TestApp extends App {
6 UINode build() { 6 UINode build() {
7 return new Container( 7 return new Container(
8 inlineStyle: 'background-color: green', 8 inlineStyle: 'background-color: green',
9 children: [ 9 children: [
10 new Text('I am Text'), 10 new Text('I am Text'),
11 new Image(src: 'resources/united.jpg') 11 new Image(src: 'resources/united.jpg')
12 ] 12 ]
13 ); 13 );
14 } 14 }
15 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698