mod-manager/data/resources/ui/windows/main/pages/games_and_mods.blp
Tine Jozelj 0be80bdaac
Some checks failed
CI / Rustfmt (push) Failing after 1m10s
CI / Flatpak (push) Failing after 4m53s
feat: intial work
2023-12-21 12:30:30 +01:00

45 lines
No EOL
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 {
}
content: Box {
Label {
label: "The Sims 4";
}
Label {
label: "The Sims 3";
}
Label {
label: "The Sims 2";
}
};
}
};
content: Adw.NavigationPage{
title: "Mods";
tag: "content";
Adw.ToolbarView {
[top]
Adw.HeaderBar {
}
content: Box {
Label {
label: "Mods";
}
};
}
};
}
}