mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Flights is not longer a good example of something you can build wity Sky. Restore the flights-app-pixel test and move the assets needed for the test into the tests directory. R=ojan@chromium.org Review URL: https://codereview.chromium.org/1034953003
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
<sky>
|
|
<import src="../resources/run-after-display.sky"/>
|
|
|
|
<img src="http://storage.googleapis.com/mojo/sky-pngs/a4dc155c6a26016292a09dfc7271d871c1780e30" />
|
|
|
|
<script>
|
|
import "dart:sky";
|
|
import "dart:sky.internals" as internals;
|
|
|
|
void main() {
|
|
window.addEventListener("load", (_) {
|
|
runAfterDisplay(() {
|
|
internals.notifyTestComplete("");
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</sky>
|