What problem does it solve? Setting up internationalization in a Flutter project involves several error-prone manual steps: adding the right dependencies, enabling code generation, creating the l10n.yaml configuration, and wiring delegates into the app entry point. This Skill provides a complete, checklist-driven workflow that gets localization working correctly the first time. ## Core Features & Use Cases - Guided Setup Workflow: Adds flutter_localizations and intl dependencies, enables the generate flag in pubspec.yaml, creates l10n.yaml, and configures MaterialApp or CupertinoApp with localization delegates. - ARB File Management: Defines localized strings in App Resource Bundle files with descriptions, placeholders, plurals, and select expressions, then generates a type-safe AppLocalizations class. - Use Case: You are starting a new Flutter app that must ship in English and Spanish. Use this Skill to scaffold the full localization pipeline, define your first strings in app_en.arb and app_es.arb, and render them via AppLocalizations.of(context) in your widgets. ## Quick Start Set up localization in my Flutter project with English and Spanish support and show me how to display a translated greeting string.