mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-02 01:13:19 +00:00
36 lines
736 B
Text
36 lines
736 B
Text
|
import { Backend } from "Backend.slint";
|
||
|
import { ToggleButton, VText, Palette } from "@vynui";
|
||
|
|
||
|
export component SideBar inherits Rectangle {
|
||
|
background: Palette.pane;
|
||
|
VerticalLayout {
|
||
|
alignment: start;
|
||
|
padding: 16px;
|
||
|
spacing: 16px;
|
||
|
VText {
|
||
|
text: "Sources";
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
VerticalLayout {
|
||
|
spacing: 4px;
|
||
|
for item[index] in Backend.resources: ToggleButton {
|
||
|
text: item;
|
||
|
text-alignment: left;
|
||
|
clicked => { Backend.source_clicked(index) }
|
||
|
}
|
||
|
}
|
||
|
/*VText {
|
||
|
text: "Tags";
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
VerticalLayout {
|
||
|
spacing: 4px;
|
||
|
for item[index] in Backend.tags: ToggleButton {
|
||
|
text: item;
|
||
|
text-alignment: left;
|
||
|
clicked => { Backend.tag_clicked(index) }
|
||
|
}
|
||
|
}*/
|
||
|
}
|
||
|
}
|