2022-11-12 21:55:45 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-12-25 18:57:47 +00:00
|
|
|
import 'package:mchess/chess/chess_app.dart';
|
2024-12-26 17:39:40 +00:00
|
|
|
import 'package:package_info_plus/package_info_plus.dart';
|
2022-11-12 21:55:45 +00:00
|
|
|
|
2024-12-26 17:39:40 +00:00
|
|
|
void main() async {
|
|
|
|
final info = await PackageInfo.fromPlatform();
|
|
|
|
|
|
|
|
runApp(ChessApp(version: info.version));
|
2022-11-12 21:55:45 +00:00
|
|
|
}
|