Games page
This commit is contained in:
16
lib/pages/games_page.dart
Normal file
16
lib/pages/games_page.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class GamesPage extends StatelessWidget {
|
||||
const GamesPage({super.key});
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
children: [
|
||||
Text('Mario Kart'),
|
||||
Text('Exploding Kittens'),
|
||||
Text('Twister'),
|
||||
Text('Mario Party')
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user