diff --git a/src/ui/window.blp b/src/ui/window.blp index d63e1c5..8b86f74 100644 --- a/src/ui/window.blp +++ b/src/ui/window.blp @@ -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 {