finished wishlist

This commit is contained in:
2025-12-08 23:35:12 +01:00
parent 16523c2915
commit 59367bac5f
22 changed files with 356 additions and 27 deletions

View File

@@ -0,0 +1,24 @@
using Gtk 4.0;
using Adw 1;
template $WishlistPage: Gtk.Box {
orientation: vertical;
baseline-position: center;
Adw.Clamp {
Adw.PreferencesGroup wishlist {
header-suffix: Button btn_wishlist_add {
icon-name: 'plus-circle-outline-symbolic';
styles [
'flat',
'circular',
'suggested-action'
]
};
separate-rows: true;
title: _("Wishlist");
styles [
"list-title"
]
}
}
}