Files
dashboard/ui/main.slint
2026-08-06 12:56:06 +02:00

17 lines
437 B
Plaintext

import { AboutSlint, Button, VerticalBox } from "std-widgets.slint";
export component AppWindow inherits Window {
VerticalBox {
alignment: start;
Text {
text: "Hello World!";
font-size: 24px;
horizontal-alignment: center;
}
AboutSlint {
preferred-height: 150px;
}
HorizontalLayout { alignment: center; Button { text: "OK!"; } }
}
}