├── .github └── FUNDING.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── all_lint_rules.yaml ├── analysis_options.yaml ├── assets ├── brain.obj ├── dash.jpg ├── mattis.jpeg ├── people │ ├── people01.jpg │ ├── people02.jpg │ ├── people03.jpg │ ├── people04.jpg │ ├── people05.jpg │ ├── people06.jpg │ ├── people07.jpg │ ├── people08.jpg │ ├── people09.jpg │ ├── people10.jpg │ ├── people11.jpg │ ├── people12.jpg │ ├── people13.jpg │ ├── people14.jpg │ ├── people15.jpg │ ├── people16.jpg │ ├── people17.jpg │ ├── people18.jpg │ ├── people19.jpg │ ├── people20.jpg │ ├── people21.jpg │ ├── people22.jpg │ ├── people23.jpg │ ├── people24.jpg │ ├── people25.jpg │ ├── people26.jpg │ ├── people27.jpg │ ├── people28.jpg │ ├── people29.jpg │ ├── people30.jpg │ ├── people31.jpg │ ├── people32.jpg │ ├── people33.jpg │ ├── people34.jpg │ ├── people35.jpg │ ├── people36.jpg │ ├── people37.jpg │ ├── people38.jpg │ ├── people39.jpg │ ├── people40.jpg │ ├── people41.jpg │ ├── people42.jpg │ ├── people43.jpg │ ├── people44.jpg │ ├── people45.jpg │ └── people46.jpg ├── tim_sneath.jpg └── volcano.png ├── images ├── blocks.gif ├── circle_wave.gif ├── creatures.gif ├── disks.gif ├── image_bubble.gif ├── mattis.gif ├── particles.gif ├── portrait.gif ├── rotating_bubbles.gif ├── rotating_planets.gif ├── triangles.gif ├── volcano.gif └── wave.gif ├── lib ├── common.dart ├── demo_blocks.dart ├── demo_circle_wave.dart ├── demo_creature.dart ├── demo_disks.dart ├── demo_image_bubble.dart ├── demo_mattis.dart ├── demo_particles.dart ├── demo_portrait.dart ├── demo_rotating_bubbles.dart ├── demo_rotating_planets.dart ├── demo_triangles.dart ├── demo_volcano.dart ├── demo_wave.dart └── main.dart ├── pubspec.lock └── pubspec.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/README.md -------------------------------------------------------------------------------- /all_lint_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/all_lint_rules.yaml -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/brain.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/brain.obj -------------------------------------------------------------------------------- /assets/dash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/dash.jpg -------------------------------------------------------------------------------- /assets/mattis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/mattis.jpeg -------------------------------------------------------------------------------- /assets/people/people01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people01.jpg -------------------------------------------------------------------------------- /assets/people/people02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people02.jpg -------------------------------------------------------------------------------- /assets/people/people03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people03.jpg -------------------------------------------------------------------------------- /assets/people/people04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people04.jpg -------------------------------------------------------------------------------- /assets/people/people05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people05.jpg -------------------------------------------------------------------------------- /assets/people/people06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people06.jpg -------------------------------------------------------------------------------- /assets/people/people07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people07.jpg -------------------------------------------------------------------------------- /assets/people/people08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people08.jpg -------------------------------------------------------------------------------- /assets/people/people09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people09.jpg -------------------------------------------------------------------------------- /assets/people/people10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people10.jpg -------------------------------------------------------------------------------- /assets/people/people11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people11.jpg -------------------------------------------------------------------------------- /assets/people/people12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people12.jpg -------------------------------------------------------------------------------- /assets/people/people13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people13.jpg -------------------------------------------------------------------------------- /assets/people/people14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people14.jpg -------------------------------------------------------------------------------- /assets/people/people15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people15.jpg -------------------------------------------------------------------------------- /assets/people/people16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people16.jpg -------------------------------------------------------------------------------- /assets/people/people17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people17.jpg -------------------------------------------------------------------------------- /assets/people/people18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people18.jpg -------------------------------------------------------------------------------- /assets/people/people19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people19.jpg -------------------------------------------------------------------------------- /assets/people/people20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people20.jpg -------------------------------------------------------------------------------- /assets/people/people21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people21.jpg -------------------------------------------------------------------------------- /assets/people/people22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people22.jpg -------------------------------------------------------------------------------- /assets/people/people23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people23.jpg -------------------------------------------------------------------------------- /assets/people/people24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people24.jpg -------------------------------------------------------------------------------- /assets/people/people25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people25.jpg -------------------------------------------------------------------------------- /assets/people/people26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people26.jpg -------------------------------------------------------------------------------- /assets/people/people27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people27.jpg -------------------------------------------------------------------------------- /assets/people/people28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people28.jpg -------------------------------------------------------------------------------- /assets/people/people29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people29.jpg -------------------------------------------------------------------------------- /assets/people/people30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people30.jpg -------------------------------------------------------------------------------- /assets/people/people31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people31.jpg -------------------------------------------------------------------------------- /assets/people/people32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people32.jpg -------------------------------------------------------------------------------- /assets/people/people33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people33.jpg -------------------------------------------------------------------------------- /assets/people/people34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people34.jpg -------------------------------------------------------------------------------- /assets/people/people35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people35.jpg -------------------------------------------------------------------------------- /assets/people/people36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people36.jpg -------------------------------------------------------------------------------- /assets/people/people37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people37.jpg -------------------------------------------------------------------------------- /assets/people/people38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people38.jpg -------------------------------------------------------------------------------- /assets/people/people39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people39.jpg -------------------------------------------------------------------------------- /assets/people/people40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people40.jpg -------------------------------------------------------------------------------- /assets/people/people41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people41.jpg -------------------------------------------------------------------------------- /assets/people/people42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people42.jpg -------------------------------------------------------------------------------- /assets/people/people43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people43.jpg -------------------------------------------------------------------------------- /assets/people/people44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people44.jpg -------------------------------------------------------------------------------- /assets/people/people45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people45.jpg -------------------------------------------------------------------------------- /assets/people/people46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/people/people46.jpg -------------------------------------------------------------------------------- /assets/tim_sneath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/tim_sneath.jpg -------------------------------------------------------------------------------- /assets/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/assets/volcano.png -------------------------------------------------------------------------------- /images/blocks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/blocks.gif -------------------------------------------------------------------------------- /images/circle_wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/circle_wave.gif -------------------------------------------------------------------------------- /images/creatures.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/creatures.gif -------------------------------------------------------------------------------- /images/disks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/disks.gif -------------------------------------------------------------------------------- /images/image_bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/image_bubble.gif -------------------------------------------------------------------------------- /images/mattis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/mattis.gif -------------------------------------------------------------------------------- /images/particles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/particles.gif -------------------------------------------------------------------------------- /images/portrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/portrait.gif -------------------------------------------------------------------------------- /images/rotating_bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/rotating_bubbles.gif -------------------------------------------------------------------------------- /images/rotating_planets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/rotating_planets.gif -------------------------------------------------------------------------------- /images/triangles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/triangles.gif -------------------------------------------------------------------------------- /images/volcano.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/volcano.gif -------------------------------------------------------------------------------- /images/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/images/wave.gif -------------------------------------------------------------------------------- /lib/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/common.dart -------------------------------------------------------------------------------- /lib/demo_blocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_blocks.dart -------------------------------------------------------------------------------- /lib/demo_circle_wave.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_circle_wave.dart -------------------------------------------------------------------------------- /lib/demo_creature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_creature.dart -------------------------------------------------------------------------------- /lib/demo_disks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_disks.dart -------------------------------------------------------------------------------- /lib/demo_image_bubble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_image_bubble.dart -------------------------------------------------------------------------------- /lib/demo_mattis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_mattis.dart -------------------------------------------------------------------------------- /lib/demo_particles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_particles.dart -------------------------------------------------------------------------------- /lib/demo_portrait.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_portrait.dart -------------------------------------------------------------------------------- /lib/demo_rotating_bubbles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_rotating_bubbles.dart -------------------------------------------------------------------------------- /lib/demo_rotating_planets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_rotating_planets.dart -------------------------------------------------------------------------------- /lib/demo_triangles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_triangles.dart -------------------------------------------------------------------------------- /lib/demo_volcano.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_volcano.dart -------------------------------------------------------------------------------- /lib/demo_wave.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/demo_wave.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/lib/main.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsar/flutter_counter_challenge_2020/HEAD/pubspec.yaml --------------------------------------------------------------------------------