25 lines
455 B
Plaintext
25 lines
455 B
Plaintext
import { Button } from "std-widgets.slint";
|
|
|
|
|
|
export component MainWindow inherits Window {
|
|
width: 400px;
|
|
height: 300px;
|
|
title: "My Slint App :3";
|
|
|
|
VerticalLayout {
|
|
Text {
|
|
text: "Hello nya~ from Slint!";
|
|
horizontal-alignment: center;
|
|
}
|
|
|
|
Button {
|
|
text: "Click me!";
|
|
clicked => {
|
|
root.clicked();
|
|
}
|
|
}
|
|
}
|
|
|
|
callback clicked();
|
|
}
|