Added provider for games

This commit is contained in:
SomnusVeritas
2023-10-21 11:14:28 +02:00
parent 781c92faf0
commit f2e0ce1694
6 changed files with 83 additions and 21 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class GamesButton extends StatelessWidget {
const GamesButton({super.key});
@override
Widget build(BuildContext context) {
return Expanded(
child: Card(
child: Row(children: [
const Text('Title'),
TextButton(
child: const Text('I won'),
onPressed: () {},
)
]),
));
}
}