diff options
Diffstat (limited to 'resource-viewer/ui/appwindow.slint')
-rw-r--r-- | resource-viewer/ui/appwindow.slint | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/resource-viewer/ui/appwindow.slint b/resource-viewer/ui/appwindow.slint new file mode 100644 index 0000000..4862c47 --- /dev/null +++ b/resource-viewer/ui/appwindow.slint @@ -0,0 +1,17 @@ +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 |