mod-manager/data/resources/ui/windows/main/pages/welcome.blp

24 lines
550 B
Text
Raw Normal View History

2023-12-21 11:30:30 +00:00
using Gtk 4.0;
using Adw 1;
template $Welcome: Adw.Bin {
Adw.ToolbarView {
[top]
Adw.HeaderBar {
}
content: Adw.Clamp {
Adw.StatusPage {
title: "No games added yet.";
description: "Click the button below to add a new game.";
icon-name: "start-here-symbolic";
Button add_new_game {
label: "Add new game";
styles ["suggested-action", "pill"]
}
2023-12-21 11:30:30 +00:00
}
};
}
}