Add background images for games

This commit is contained in:
2025-02-22 16:58:03 +01:00
parent 0a40e5bbcf
commit e5fc67ef43
12 changed files with 414 additions and 139 deletions

View File

@@ -5,10 +5,7 @@ import 'package:gamer_updater/widgets/game_card.dart';
class NewGameCard extends StatelessWidget {
final Function(Game) onGameCreated;
const NewGameCard({
super.key,
required this.onGameCreated,
});
const NewGameCard({super.key, required this.onGameCreated});
@override
Widget build(BuildContext context) {
@@ -25,4 +22,4 @@ class NewGameCard extends StatelessWidget {
onGameUpdated: onGameCreated,
);
}
}
}