persmgr/persmgr-gui-rs/ui/main.slint
2025-09-02 19:41:06 +03:00

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();
}