Files
shadcn-slint/ui/appwindow.slint
2026-01-26 09:05:48 +08:00

27 lines
578 B
Plaintext

import { VerticalBox, Button } from "std-widgets.slint";
export component AppWindow inherits Window {
in-out property <string> greeting: "Hello, World!";
width: 400px;
height: 300px;
title: "Slint Hello World";
VerticalBox {
alignment: center;
Text {
text: greeting;
font-size: 24px;
horizontal-alignment: center;
}
Button {
text: "Click Me!";
clicked => {
greeting = "Hello from Slint!";
}
}
}
}