// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial import {Button, AboutSlint} from "std-widgets.slint"; export component AppWindow inherits Window { preferred-width: 600px; preferred-height: 300px; property count; VerticalLayout { AboutSlint { } Button { text: "Press me"; clicked => { count += 1; } } Text { text: count; } Rectangle { } } }