mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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')
|
|
]
|
|
);
|
|
}
|
|
}
|