https://github.com/dart-lang/sample-pop_pop_win
"Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
https://github.com/dart-lang/sample-pop_pop_win
dart game games-2d
Last synced: 2 months ago
JSON representation
"Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
- Host: GitHub
- URL: https://github.com/dart-lang/sample-pop_pop_win
- Owner: dart-lang
- License: bsd-3-clause
- Created: 2012-10-08T00:24:56.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T18:30:35.000Z (3 months ago)
- Last Synced: 2025-03-28T07:09:28.726Z (2 months ago)
- Topics: dart, game, games-2d
- Language: Dart
- Homepage: https://dart-lang.github.io/sample-pop_pop_win/
- Size: 90.5 MB
- Stars: 151
- Watchers: 45
- Forks: 59
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-open-source-games - Pop Pop Win - Implementation of Minesweeper in Dart. (Browser-Based / Puzzle)
README
An implementation of
Minesweeper
in [Dart](https://dart.dev/).## Interaction
* Click on hidden squares to reveal them.
* Shift-click on squares to flag them.
* Shift-click on revealed numbers to go fast--but be careful. If you've flagged
incorrectly, you'll hit a bomb.## Assets
* Art - Pete Parisi, [fuzzycube software](http://fuzzycubesoftware.com/)
* Sound Effects - Alistair Hirst,
[OMNI Audio](https://www.linkedin.com/in/alistairhirst/)
* Winning Sax Riff - Brian Moore## Running and building
* Clone the repository.
* Run `pub get`.
* To run locally with [dartdevc](https://dart.dev/tools/dartdevc):
```console
$ pub run build_runner serve
```* To build with [dart2js](https://dart.dev/tools/dart2js) and minified output:
```console
$ pub run build_runner build --release --output web:build
```