mod-manager/data/resources/ui/components/card.blp
Tine Jozelj 83c478cfd2
Some checks failed
CI / Rustfmt (push) Failing after 2m10s
CI / Flatpak (push) Failing after 10m55s
feat: loading images
Need to fix the threads as currently it locks the app while loading the images.
2024-01-07 22:35:39 +01:00

21 lines
263 B
Text

using Gtk 4.0;
using Adw 1;
template $Card: Box {
orientation: horizontal;
styles ["card"]
Image image {}
Box contents {
orientation: vertical;
Label heading {
styles ["heading"]
}
Label body {
styles ["body"]
}
}
}