// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import {Button, AboutSlint, LineEdit } 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; } LineEdit {} Rectangle { } } }