A bare Flutter app everyone starts from, so we can compare coding style and architecture instead of raw problem-solving. No AI tooling set up here on purpose — see REQUIREMENTS.md for the rules and the actual task.
Platform folders (android/, ios/, web/, etc.) aren't checked in, so you'll need to generate them locally first:
flutter create .
flutter pub get
flutter run- Clone this repo.
- Create your own branch off
main, named after you:git checkout -b yourname
- Work on
REQUIREMENTS.mdindependently on your branch. Commit as often as you like, the history is part of what we'll look at too. - Push your branch when you're done (or when time's up):
git push origin yourname
- At the end we'll go through branches together and compare approaches.
Please don't merge into main. Every branch should stay its own independent solution so the comparison stays clean.