mchess-client/lib/utils/chess_router.dart

49 lines
1.2 KiB
Dart
Raw Normal View History

2022-12-25 15:16:23 +00:00
import 'package:go_router/go_router.dart';
2023-06-29 23:49:18 +00:00
import 'package:mchess/pages/chess_game.dart';
2022-12-25 15:16:23 +00:00
import 'package:mchess/pages/lobby_selector.dart';
2023-06-29 23:49:18 +00:00
import 'package:mchess/pages/host_game.dart';
2022-12-25 15:16:23 +00:00
2022-12-25 19:30:42 +00:00
class ChessAppRouter {
static final ChessAppRouter _instance = ChessAppRouter._internal();
ChessAppRouter._internal();
static ChessAppRouter getInstance() {
return _instance;
}
final router = GoRouter(
2023-12-27 14:46:15 +00:00
debugLogDiagnostics: true,
2022-12-25 19:30:42 +00:00
routes: [
GoRoute(
path: '/',
name: 'lobbySelector',
builder: (context, state) {
return const LobbySelector();
},
2023-12-27 14:46:15 +00:00
routes: [
GoRoute(
path: 'host',
name: 'host',
builder: (context, state) {
return const HostGameWidget();
}),
GoRoute(
path: 'game',
name: 'game',
builder: (context, state) {
var args = state.extra as ChessGameArguments;
2023-06-29 23:49:18 +00:00
2023-12-27 14:46:15 +00:00
return ChessGame(
lobbyID: args.lobbyID,
playerID: args.playerID,
passphrase: args.passphrase,
);
},
)
],
),
2022-12-25 19:30:42 +00:00
],
);
}