games: Add loading of games from disk

This commit is contained in:
Zoey Ahmed
2025-11-28 21:10:06 +00:00
parent a5721e41e7
commit 958558d1b6
9 changed files with 81 additions and 7 deletions

View File

@@ -28,12 +28,18 @@ template $Window: Adw.ApplicationWindow {
}
}
content: Label {
label: _("Hello, World!");
content: GridView {
model: NoSelection {
model: bind template.games;
};
styles [
"title-1",
]
factory: BuilderListItemFactory {
template ListItem {
child: Label {
label: bind template.item as <$Game>.name;
};
}
};
};
};
}