Files
immich-app/ui/header.slint
2026-06-04 00:11:13 +02:00

15 lines
300 B
Plaintext

import { HorizontalBox, Palette } from "std-widgets.slint";
export component Header inherits Rectangle {
width: 100%;
height: 48px;
background: Palette.alternate-background;
HorizontalBox {
height: parent.height;
Text {
text: "immich";
}
}
}