19 lines
No EOL
498 B
Text
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;
|
|
}
|
|
}
|
|
}
|
|
} |