mod-manager/data/resources/ui/windows/main/pages/games_and_mods.blp
Tine Jozelj 2f09f3b093
Some checks failed
CI / Rustfmt (push) Failing after 4m51s
CI / Flatpak (push) Failing after 6m36s
feat: card design improvements
2024-01-11 21:36:44 +01:00

67 lines
1.8 KiB
Text

using Gtk 4.0;
using Adw 1;
template $GamesAndMods: Adw.Bin {
Adw.NavigationSplitView {
sidebar: Adw.NavigationPage {
title: "Games";
tag: "sidebar";
Adw.ToolbarView {
[top]
Adw.HeaderBar {
[end]
Button add_new_game {
icon-name: "list-add-symbolic";
}
Button remove_all_games {
icon-name: "list-remove-symbolic";
}
}
content: ListBox games_list {
styles ["navigation-sidebar"]
};
}
};
content: Adw.NavigationPage{
title: "Mods";
tag: "content";
Adw.ToolbarView {
[top]
Adw.HeaderBar {
[title]
SearchEntry search {
}
}
content: Box {
orientation: vertical;
Label title {
label: "List of Mods";
styles ["title-1"]
}
Label {
halign: start;
margin-bottom: 12;
label: "Latest mods";
styles ["title-2"]
}
ScrolledWindow {
vexpand: true;
hexpand: true;
FlowBox mods_list {
row-spacing: 12;
column-spacing: 12;
homogeneous: true;
}
}
};
}
};
}
}