23 lines
469 B
Plaintext
23 lines
469 B
Plaintext
import { Button, VerticalBox } from "std-widgets.slint";
|
|
|
|
export component HelloWorld inherits Window {
|
|
width: 400px;
|
|
height: 300px;
|
|
|
|
VerticalBox {
|
|
alignment: center;
|
|
|
|
Text {
|
|
text: "Hello, World!";
|
|
font-size: 24px;
|
|
}
|
|
|
|
abc := Button {
|
|
text: "Click me";
|
|
clicked => {
|
|
debug("Button clicked!");
|
|
abc.absolute-position;
|
|
}
|
|
}
|
|
}
|
|
} |