Added mocked views
This commit is contained in:
10
lib/presentation/views/main_menu/game_history_view.dart
Normal file
10
lib/presentation/views/main_menu/game_history_view.dart
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class GameHistoryView extends StatelessWidget {
|
||||||
|
const GameHistoryView({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Center(child: Text('Game History View'));
|
||||||
|
}
|
||||||
|
}
|
||||||
10
lib/presentation/views/main_menu/groups_view.dart
Normal file
10
lib/presentation/views/main_menu/groups_view.dart
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class GroupsView extends StatelessWidget {
|
||||||
|
const GroupsView({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Center(child: Text('Groups View'));
|
||||||
|
}
|
||||||
|
}
|
||||||
10
lib/presentation/views/main_menu/home_view.dart
Normal file
10
lib/presentation/views/main_menu/home_view.dart
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class HomeView extends StatelessWidget {
|
||||||
|
const HomeView({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Center(child: Text('Home View'));
|
||||||
|
}
|
||||||
|
}
|
||||||
10
lib/presentation/views/main_menu/settings_view.dart
Normal file
10
lib/presentation/views/main_menu/settings_view.dart
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class SettingsView extends StatelessWidget {
|
||||||
|
const SettingsView({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Center(child: Text('Settings View'));
|
||||||
|
}
|
||||||
|
}
|
||||||
10
lib/presentation/views/main_menu/statistics_view.dart
Normal file
10
lib/presentation/views/main_menu/statistics_view.dart
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class StatisticsView extends StatelessWidget {
|
||||||
|
const StatisticsView({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Center(child: Text('Statistics View'));
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user