17 lines
437 B
Plaintext
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!"; } }
|
|
}
|
|
}
|