mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix indent.
This commit is contained in:
parent
3eafa823a7
commit
bc6bbee6e3
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user