mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
17 lines
335 B
Dart
17 lines
335 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: 'foo.jpg'),
|
|
new Anchor(href: 'http://www.google.com')
|
|
]
|
|
);
|
|
}
|
|
}
|