Focused Agent Skills for complete Flutter and Dart app delivery.
72
90%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Flavors allow building distinct variants of an application (e.g., development, staging, production) with separate bundle IDs, service configurations, app names, and backend endpoints from the same codebase.
Every flavor requires synchronized configuration across three layers:
--dart-define or --dart-define-from-file.productFlavors grouped under flavorDimensions.Debug-staging, Release-staging).| Flavor | Android Application ID | iOS Bundle ID | Android Flavor | Xcode Scheme |
|---|---|---|---|---|
| Development | com.example.app.dev | com.example.app.dev | dev | dev |
| Staging | com.example.app.staging | com.example.app.staging | staging | staging |
| Production | com.example.app | com.example.app | prod | prod |
google-services.json in android/app/src/<flavor>/ (e.g., src/staging/google-services.json).GoogleService-Info.plist based on ${CONFIGURATION} or ${SCHEME_NAME}.res/values/strings.xml on Android.CFBundleDisplayName and ASSETCATALOG_COMPILER_APPICON_NAME in Xcode configurations.Always build with explicit flavor and target specification:
flutter build appbundle --flavor staging --target lib/main_staging.dart --dart-define=ENVIRONMENT=staging
flutter build ipa --flavor staging --target lib/main_staging.dart --dart-define=ENVIRONMENT=staging.p8 private keys, provisioning profiles, or production API keys to source control.key.properties (added to .gitignore) or retrieve them from secure environment variables in CI/CD..tessl-plugin
skills
dart-concurrency
dart-language
flutter-accessibility
flutter-ai-integration
flutter-animation
flutter-app-workflow
flutter-architecture
flutter-authentication
flutter-background-execution
flutter-build-release
flutter-ci-cd
flutter-code-review
flutter-dependency-upgrades
flutter-device-testing
flutter-figma-workflow
flutter-in-app-purchases
flutter-localization
references
flutter-networking
references
flutter-notifications
flutter-observability
flutter-openapi-client
flutter-package-development
flutter-performance
flutter-persistence
references
flutter-platform-integration
flutter-product-analytics
flutter-responsive-layout
flutter-runtime-debugging
flutter-security
flutter-state-management
flutter-testing
flutter-ui-design
flutter-ui-patterns
flutter-visual-effects