Files
CHAMP/ui/template.slint
T
2025-01-24 10:52:05 -05:00

13 lines
261 B
Plaintext

import { AboutSlint, VerticalBox } from "std-widgets.slint";
export component MainWindow inherits Window {
VerticalBox {
Text {
text: "Hello World!";
}
AboutSlint {
preferred-height: 150px;
}
}
}