fmeditor-slint/ui/status_bar.slint

28 lines
666 B
Plaintext
Raw Normal View History

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 {
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 {
vertical-alignment: center;
text: "Saved by: Jayrude";
}
2024-04-09 19:52:34 +00:00
VerticalSeparator { }
2024-04-09 19:47:10 +00:00
}
}