mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
bba43773e2
We dropped Anchor support, and the markup changed a bit (mostly it got debug='' attributes to help debug output). TBR=eseidel Review URL: https://codereview.chromium.org/1129883004
16 lines
297 B
Dart
16 lines
297 B
Dart
import 'dart:sky';
|
|
|
|
import 'package:sky/framework/fn.dart';
|
|
|
|
class TestApp extends App {
|
|
UINode build() {
|
|
return new Container(
|
|
inlineStyle: 'background-color: green',
|
|
children: [
|
|
new Text('I am Text'),
|
|
new Image(src: 'resources/united.jpg')
|
|
]
|
|
);
|
|
}
|
|
}
|