Fix indent.

This commit is contained in:
Mehmet Akin 2015-10-03 22:56:30 +02:00
parent 3eafa823a7
commit bc6bbee6e3

View File

@ -66,10 +66,10 @@ class MineDiggerState extends State<MineDigger> {
detectedCount = 0;
// Initialize matrices.
cells = new List<List>.generate(rows, (int row) {
return new List<bool>.filled(cols, false);
return new List<bool>.filled(cols, false);
});
uiState = new List<List>.generate(rows, (int row) {
return new List<CellState>.filled(cols, CellState.covered);
return new List<CellState>.filled(cols, CellState.covered);
});
// Place the mines.
Random random = new Random();