feat: impl design header

This commit is contained in:
2026-05-07 19:49:45 +05:00
parent 7cc2b8542d
commit f425145e81
13 changed files with 978 additions and 304 deletions
+41
View File
@@ -0,0 +1,41 @@
import {
Button,
HorizontalBox,
VerticalBox,
} from "std-widgets.slint";
export component Footer inherits Rectangle {
callback settings-clicked();
callback feedback-clicked();
callback open-clicked();
HorizontalBox {
spacing: 16px;
padding-top: 16px;
HorizontalBox {
spacing: 16px;
Button {
text: "⚙️ Настроить";
clicked => {
root.settings-clicked();
}
}
Button {
text: "💬 Обратная связь";
clicked => {
root.feedback-clicked();
}
}
}
Button {
text: "Открыть";
clicked => {
root.open-clicked();
}
}
}
}