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