9 lines
225 B
Dart
9 lines
225 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:mchess/chess/chess_app.dart';
|
|
|
|
void main() {
|
|
GoRouter.optionURLReflectsImperativeAPIs = true;
|
|
runApp(const ChessApp());
|
|
}
|