chess_interface 1.0.5 copy "chess_interface: ^1.0.5" to clipboard
chess_interface: ^1.0.5 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(),
    );
  }
}
2
likes
0
points
135
downloads

Publisher

verified publisherdilipyadav.xyz

Weekly Downloads

A chess interface for the chess engine with all basic functionalities like move, undo, redo, etc. and a chess board widget with custom themes.

Homepage

License

unknown (license)

Dependencies

flutter, gradient_circular_progress_indicator

More

Packages that depend on chess_interface