chess_interface 1.0.6
chess_interface: ^1.0.6 copied to clipboard
A chess interface for the chess engine with all basic functionalities like move, undo, redo, etc. and a chess board widget with custom themes.
example/main.dart
import 'package:flutter/material.dart';
import 'game_screen.dart';
void main() {
runApp(const ChessApp());
}
class ChessApp extends StatelessWidget {
const ChessApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(),
home: GameScreen(),
);
}
}