alcro 0.5.4

A library to create desktop apps using rust and modern web technologies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>

<head>
    <title>Multiple Windows</title>
</head>

<body>
    <button onclick="increment().then(c=>document.getElementById('count').innerText=`Count: ${c}`)">Increment</button>
    <p id="count">Count: 0</p>
    <button onclick="decrement().then(c=>document.getElementById('count').innerText=`Count: ${c}`)">Decrement</button>
</body>

</html>