Add Files

This commit is contained in:
2026-04-28 21:11:51 +02:00
parent 2e75ef05a4
commit 1ff71bc9a1
7 changed files with 6965 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { Button, LineEdit, 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}";
}
LineEdit {
placeholder-text: "Search for Software"
}
Button {
text: "Increase value";
clicked => {
root.request-increase-value();
}
}
}
}