diff options
Diffstat (limited to 'resource-viewer/ui/appwindow.slint')
-rw-r--r-- | resource-viewer/ui/appwindow.slint | 17 |
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 |