aboutsummaryrefslogtreecommitdiff
path: root/resource-viewer/ui
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-01-05 19:47:24 +0300
committerValentin Popov <valentin@popov.link>2024-01-05 19:47:24 +0300
commit58b6314dec29debf8e595f3d75c5818ead648d49 (patch)
tree291aba82c1e76906e7f9f6e655d2728920396b00 /resource-viewer/ui
parent7e76448cb7b48a045b712549d8a1869699898edd (diff)
downloadfparkan-58b6314dec29debf8e595f3d75c5818ead648d49.tar.xz
fparkan-58b6314dec29debf8e595f3d75c5818ead648d49.zip
Removed the rudiments of the project
Diffstat (limited to 'resource-viewer/ui')
-rw-r--r--resource-viewer/ui/appwindow.slint17
1 files changed, 0 insertions, 17 deletions
diff --git a/resource-viewer/ui/appwindow.slint b/resource-viewer/ui/appwindow.slint
deleted file mode 100644
index 4862c47..0000000
--- a/resource-viewer/ui/appwindow.slint
+++ /dev/null
@@ -1,17 +0,0 @@
-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();
- }
- }
- }
-} \ No newline at end of file