Initial commit

This commit is contained in:
Margret Riegert
2026-02-21 21:47:37 -05:00
commit 6a28b7f2d8
11 changed files with 6486 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();
}
}
}
}