PartsRS/ui/home.slint
2025-11-07 14:04:55 +01:00

19 lines
No EOL
498 B
Text

import { VerticalBox } from "std-widgets.slint";
import { MaterialPalette } from "../material-1.0/ui/styling/material_palette.slint";
export component ViewHome {
Rectangle {
border-radius: 10px;
background: MaterialPalette.surface;
VerticalBox {
alignment: center;
padding: 16px;
Text {
text: "Home View";
font-size: 28px;
font-weight: 700;
}
}
}
}