// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { LineEdit } from "std-widgets.slint"; // The window the user interacts with. Edits to the inputs propagate to // the SystemTrayIcon instance via the host language's callbacks. export component MainWindow inherits Window { title: "Dashboard"; preferred-width: 1024px; preferred-height: 600px; in property text: "Hello World"; callback set-label(string); Text { text: text; } }