This repository implements the Conway’s Game of Life. I will use this to learn about Flutter performance optimizations.
- Not the best benchmark, I just create the list, then draw a bit and make some evolutions.
const int kCellCount = 10000;
const int kMaxCellsPerRow = 80;-
Initial commit:
- Average: 11 FPS
- Coding time: Around 1 hour
-
Multithreaded game setup:
- Average: 16 FPS
- Coding time: 35 minutes