dart_board_minesweeper 0.9.7+7
dart_board_minesweeper: ^0.9.7+7 copied to clipboard
A minesweeper implementation ported to DartBoard. It provides a Redux app state and a /minesweep route to play the game
import 'package:dart_board_core/dart_board_core.dart';
import 'package:dart_board_minesweeper/dart_board_minesweeper.dart';
import 'package:flutter/material.dart';
/// Simple minesweep runner
void main() => runApp(
DartBoard(initialPath: '/minesweep', features: [MinesweeperFeature()]));
copied to clipboard