mod-manager/data/resources/ui/windows/main/pages/games_and_mods.blp
Tine Jozelj 807f4b668c
Some checks failed
CI / Rustfmt (push) Failing after 59s
CI / Flatpak (push) Failing after 4m40s
feat: progress on settings
2023-12-21 19:24:38 +01:00

47 lines
No EOL
1.1 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 {
label: "Add game";
}
}
content: ListBox games_list {
styles ["navigation-sidebar"]
};
}
};
content: Adw.NavigationPage{
title: "Mods";
tag: "content";
Adw.ToolbarView {
[top]
Adw.HeaderBar {
[title]
SearchEntry search {
}
}
content: Box {
Label {
label: "Mods";
}
Button remove_all_games {
label: "Remove all games";
}
};
}
};
}
}