mirror of
https://github.com/slint-ui/slint.git
synced 2025-07-12 23:55:23 +00:00
24 lines
491 B
Text
24 lines
491 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import {Button, AboutSlint, LineEdit } from "std-widgets.slint";
|
|
|
|
export component App inherits Window {
|
|
property <int> count;
|
|
|
|
preferred-width: 800px;
|
|
preferred-height: 600px;
|
|
|
|
VerticalLayout {
|
|
AboutSlint { }
|
|
|
|
Button {
|
|
clicked => { count += 1; }
|
|
text: "Hello";
|
|
}
|
|
|
|
Text { text: count; }
|
|
LineEdit {}
|
|
Rectangle { }
|
|
}
|
|
}
|