Initial commit

This commit is contained in:
Alexey 2025-09-03 20:43:19 +03:00
commit 8cec608e21
8 changed files with 137 additions and 0 deletions

18
ui/app-window.slint Normal file
View file

@ -0,0 +1,18 @@
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();
}
}
}
}