Init of the game resource viewer

This commit is contained in:
2023-10-27 23:58:12 +04:00
parent a97d68b0e1
commit 9708d73199
6 changed files with 4054 additions and 12 deletions

View File

@ -0,0 +1,17 @@
import { Button, VerticalBox } from "std-widgets.slint";
export component AppWindow inherits Window {
in-out property<int> counter: 42;
callback request-increase-value();
VerticalBox {
Text {
text: "Counter: \{root.counter}";
}
Button {
text: "Increase value";
clicked => {
root.request-increase-value();
}
}
}
}