Fixed kebab casing of previous appwindow.slint.

This commit is contained in:
Enyium 2024-09-19 11:37:44 +02:00 committed by Simon Hausmann
parent 844590cac8
commit 9894eca229
25 changed files with 33 additions and 33 deletions

View file

@ -0,0 +1,23 @@
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import {Button, AboutSlint} from "std-widgets.slint";
export component AppWindow inherits Window {
property <int> count;
preferred-width: 600px;
preferred-height: 300px;
VerticalLayout {
AboutSlint { }
Button {
clicked => { count += 1; }
text: "Press me";
}
Text { text: count; }
Rectangle { }
}
}