2024-04-09 19:47:10 +00:00
|
|
|
import { Theme } from "theme.slint";
|
2024-04-09 19:52:34 +00:00
|
|
|
import { VerticalSeparator } from "widgets/separator.slint";
|
2024-04-09 19:47:10 +00:00
|
|
|
|
|
|
|
export component StatusBar inherits Rectangle {
|
|
|
|
border-color: black;
|
|
|
|
border-width: 1px;
|
|
|
|
height: Theme.size-lg;
|
|
|
|
HorizontalLayout {
|
|
|
|
alignment: start;
|
|
|
|
padding-left: Theme.padding-lg;
|
|
|
|
padding-right: Theme.padding-lg;
|
|
|
|
spacing: Theme.padding-lg;
|
|
|
|
Text {
|
2024-04-09 20:55:39 +00:00
|
|
|
font-size: Theme.font-md;
|
2024-04-09 19:47:10 +00:00
|
|
|
vertical-alignment: center;
|
|
|
|
text: "Last saved: 18:50";
|
|
|
|
}
|
|
|
|
|
2024-04-09 19:52:34 +00:00
|
|
|
VerticalSeparator { }
|
2024-04-09 19:47:10 +00:00
|
|
|
|
|
|
|
Text {
|
2024-04-09 20:55:39 +00:00
|
|
|
font-size: Theme.font-md;
|
2024-04-09 19:47:10 +00:00
|
|
|
vertical-alignment: center;
|
|
|
|
text: "Saved by: Jayrude";
|
|
|
|
}
|
|
|
|
|
2024-04-09 19:52:34 +00:00
|
|
|
VerticalSeparator { }
|
2024-04-09 19:47:10 +00:00
|
|
|
}
|
|
|
|
}
|