// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import {Button, AboutSlint, LineEdit } from "std-widgets.slint"; export component App inherits Window { property count; preferred-width: 800px; preferred-height: 600px; VerticalLayout { AboutSlint { } Button { clicked => { count += 1; } text: "Hello"; } Text { text: count; } LineEdit {} Rectangle { } } }