17 lines
341 B
Dart
17 lines
341 B
Dart
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')
|
|
],
|
|
);
|
|
}
|
|
}
|