flutter-isar-clean-arch-setup
Installation
SKILL.md
Flutter + Isar + Clean Architecture Setup
Use this skill when scaffolding or repairing a Flutter project that uses Isar DB with Standard Riverpod and Clean Architecture layers.
Step-by-Step Setup
1. Platform Folders (Critical)
If files are created manually (no flutter create), the project lacks .dart_tool/package_config.json and platform folders. Always run:
flutter create . --project-name <name> --platforms=ios,macos
flutter pub get
Without this, every import shows uri_does_not_exist and build_runner fails.