# pop-pop-win
**Repository Path**: mirrors_dart-lang/pop-pop-win
## Basic Information
- **Project Name**: pop-pop-win
- **Description**: "Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-02-25
- **Last Updated**: 2026-04-25
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## 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
dart run build_runner serve
```
* To build with [dart2js](https://dart.dev/tools/dart2js) and minified output:
```console
dart run build_runner build --release --output web:build
```