What problem does it solve? Flutter developers often struggle with deprecated theme properties, inconsistent component styling, and platform-specific UI expectations when defining global app appearance. This Skill provides structured guidance for implementing modern Material 3 themes and adaptive design patterns. ## Core Features & Use Cases - Material 3 Migration: Replace deprecated properties like accentColor and AppBarTheme.color with modern ColorScheme.fromSeed and backgroundColor equivalents. - Component Theme Normalization: Apply the correct *ThemeData classes (CardThemeData, DialogThemeData, AppBarThemeData) when defining ThemeData. - Adaptive Platform Design: Implement platform-idiomatic behaviors such as scrollbar visibility, selectable text, and Windows versus macOS button ordering. - Use Case: When modernizing a legacy Flutter app, follow the migration workflow to remove useMaterial3 flags, regenerate color schemes from seed colors, and swap legacy buttons like RaisedButton for ElevatedButton. ## Quick Start Apply the flutter-theming-apps skill to migrate my Flutter app's ThemeData to Material 3 with a seed-based color scheme.