27 lines
578 B
Plaintext
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!";
|
|
}
|
|
}
|
|
}
|
|
}
|