What problem does it solve?
This Skill provides a reproducible workflow to initialize a new Flutter mobile application with a maintainable feature-first structure, strict linting, recommended packages, and optional flavors so developers avoid common setup mistakes and inconsistent toolchains.
Core Features & Use Cases
- Project creation: Guidance for flutter create with empty templates and platform selection to bootstrap apps for iOS and Android.
- Architecture: Recommended feature-first lib/ layout with core, features, and shared modules to keep code organized as the app grows.
- Tooling & Lints: A strict analysis_options.yaml and dev dependency suggestions to enforce code quality and consistent formatting.
- Packages & Codegen: Instructions for adding navigation, state management, and codegen packages (go_router, riverpod, freezed, json_serializable) and running build_runner.
- Flavors & IDE: Flavor entry points and VS Code settings to run environment-specific builds and maintain consistent developer workflows.
Quick Start
Create a new Flutter app named my_app for iOS and Android with a feature-first lib layout, analysis_options, go_router, riverpod, and freezed configured.