2022-12-28 19:27:38 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2022-11-12 21:55:45 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-12-28 19:27:38 +00:00
|
|
|
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
2022-12-25 18:57:47 +00:00
|
|
|
import 'package:mchess/chess/chess_app.dart';
|
2022-11-12 21:55:45 +00:00
|
|
|
|
|
|
|
void main() {
|
2022-12-28 19:27:38 +00:00
|
|
|
if (kIsWeb) setUrlStrategy(PathUrlStrategy());
|
2022-12-25 18:57:47 +00:00
|
|
|
runApp(const ChessApp());
|
2022-11-12 21:55:45 +00:00
|
|
|
}
|