sudoku_generator 1.0.0 copy "sudoku_generator: ^1.0.0" to clipboard
sudoku_generator: ^1.0.0 copied to clipboard

A modern, identifiable Sudoku game widget built with Flutter and Riverpod.

Sudoku Generator #

A modern, highly customizable Sudoku game built with Flutter and Riverpod.

Features #

  • Modern UI: Smooth animations, rounded corners, and adaptive theming.
  • State Management: Built on top of flutter_riverpod for robust logic handling.
  • Game Logic: Complete Sudoku generation and validation algorithm.
  • Configurable: Adjustable max mistakes and difficulty levels (code-level).

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
  sudoku_generator: ^1.0.0

Usage #

Import the package:

import 'package:sudoku_generator/sudoku_generator.dart';

And use the GamePage widget in your app. Note: Ensure your app is wrapped in a ProviderScope.

void main() {
  runApp(
    const ProviderScope(
      child: MaterialApp(
        home: GamePage(),
      ),
    ),
  );
}

Dependencies #

License #

MIT

6
likes
0
points
232
downloads

Publisher

unverified uploader

Weekly Downloads

A modern, identifiable Sudoku game widget built with Flutter and Riverpod.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter, flutter_riverpod

More

Packages that depend on sudoku_generator