placeholder albums nav page
This commit is contained in:
parent
af4da894fc
commit
a556fe7e29
1 changed files with 26 additions and 8 deletions
|
@ -35,18 +35,36 @@ template $UiWindow: Adw.ApplicationWindow {
|
|||
}
|
||||
|
||||
content: Adw.ViewStack stack {
|
||||
Adw.ViewStackPage {
|
||||
icon-name: "audio-input-microphone";
|
||||
title: _("Artists");
|
||||
|
||||
child: Box {};
|
||||
}
|
||||
|
||||
Adw.ViewStackPage {
|
||||
icon-name: "media-optical-cd";
|
||||
title: _("Albums");
|
||||
|
||||
child: Box {};
|
||||
child: Adw.NavigationView {
|
||||
Adw.NavigationPage {
|
||||
title: _("Albums");
|
||||
|
||||
child: Adw.ToolbarView {
|
||||
[top]
|
||||
CenterBox {
|
||||
styles [ "toolbar" ]
|
||||
|
||||
[center]
|
||||
SearchEntry {
|
||||
placeholder-text: _("Search...");
|
||||
}
|
||||
|
||||
[end]
|
||||
Box {
|
||||
Button {
|
||||
icon-name: "view-refresh";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
GridView {}
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Adw.ViewStackPage {
|
||||
|
|
Loading…
Reference in a new issue