7 lines
119 B
Dart
7 lines
119 B
Dart
import 'package:flutter/material.dart';
|
|
import 'chessapp/chess_app.dart';
|
|
|
|
void main() {
|
|
runApp(const ChessApp());
|
|
}
|