Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |