slint/examples/todo/wasm/index.html
Simon Hausmann a10cf5ca9a Add WASM build for the todo app
This makes it easier to test text input also for the wasm build
2020-09-15 12:28:30 +02:00

22 lines
510 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SixtyFPS Todo Demo (Web Assembly version)</title>
<style>
canvas {
border: solid;
}
</style>
</head>
<body>
<p>This is the SixtyFPS Todo Demo compiled to WebAssembly.</p>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p><a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/todo/ui/todo.60">View Source
Code</a></a></p>
<script src="index.js"></script>
</body>
</html>