An open API service indexing awesome lists of open source software.

https://github.com/ztomz/game_of_life


https://github.com/ztomz/game_of_life

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# Game of Life

This repository implements the [Conway’s Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). I will use this to learn about Flutter performance optimizations.

### Performance

##### Settings
- Not the best benchmark, I just create the list, then draw a bit and make some evolutions.

```dart
const int kCellCount = 10000;
const int kMaxCellsPerRow = 80;
```

##### Results

- Initial commit:
- Average: 11 FPS
- Coding time: Around 1 hour

- Multithreaded game setup:
- Average: 16 FPS
- Coding time: 35 minutes