fmeditor-slint/ui/editor_bar.slint

19 lines
477 B
Plaintext
Raw Normal View History

2024-04-09 19:47:10 +00:00
import { Theme } from "theme.slint";
export component EditorBar inherits Rectangle {
height: Theme.size-xl;
border-color: black;
border-width: 1px;
HorizontalLayout {
alignment: start;
padding: Theme.padding-md;
spacing: Theme.padding-xl;
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: "Damn look at all the options and shit here it's like Hammer 2!!";
}
}
}