Module Intro & Starter project
⚠️ Video is partially outdated - read notes below ⚠️
Going forward, we’ll use Riverpod for state management and dependency injection.
As of December 2023, the project has been updated to flutter_riverpod 2.4.9.
Updated Code Snapshot
To get the updated code snapshot for the habit tracker app, run this on the terminal:
git clone https://github.com/bizz84/flutter_animations_course_materials
cd flutter_animations_course_materials/projects/habit_tracker_flutter
git checkout section06-starter
# Needed to run on Flutter 3.24 and higher
flutter pub upgrade --major-versions
code .
Or, if you already have a clone of the course repo, run this from the root folder:
# Discard any working changes
git reset --hard HEAD
git checkout section06-starter
cd projects/habit_tracker_flutter
# Needed to run on Flutter 3.24 and higher
flutter pub upgrade --major-versions