audrey/src/play_queue.blp

30 lines
502 B
Text
Raw Normal View History

2024-10-10 10:12:43 +00:00
using Gtk 4.0;
using Adw 1;
template $WaveletPlayQueue: Adw.NavigationPage {
title: _("Play queue");
Adw.ToolbarView {
[top]
Adw.HeaderBar {}
ScrolledWindow {
ListView list_view {
styles [
"view",
]
factory: BuilderListItemFactory {
2024-10-10 10:18:54 +00:00
template ListItem {
child: Label {
halign: start;
label: bind template.item as <$WaveletSong>.name;
};
}
2024-10-10 10:12:43 +00:00
};
}
}
}
}