Flutter SDK Changelog & Widget Migration Guide (Flutter 1.0 to Modern Flutter)

SkillDev tools

Expert guide and lookup reference for Flutter framework versions, widget deprecations, API replacements, Material 3 migrations, and the unbundling of standalone material_ui and cupertino_ui packages from Flutter 1.0 to modern Flutter (3.44+ / 3.47+). Use this skill whenever the user asks "what's new in Flutter X", "what's new in 3.47", "what's new in 3.44", "what's new in 3.24", "what's new in 3.22", asks how to fix deprecated Flutter widgets (WillPopScope, withOpacity, MaterialState, FlatButton, accentColor), requests migration to the split or unbundled design packages ("migrate to split packages", "material_ui", "cupertino_ui"), needs assistance migrating to Material 3, or requires help rescuing legacy Flutter applications.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Flutter SDK Changelog & Widget Migration Guide (Flutter 1.0 to Modern Flutter) skill

What this skill tells your AI

The instructions your AI receives, as published by randalschwartz/dart-sdk-skills in skills/flutter-sdk-changelog/SKILL.md and read by ahel’s review.

This skill provides an authoritative, structured reference for Flutter framework releases, widget deprecations, API replacements, Material 3 design migrations, the decoupling of standalone material_ui and cupertino_ui packages, and legacy Flutter codebase rescue runbooks.


🎯 Fast Flutter Widget & API Replacement Matrix

Deprecated / Obsolete APIIntroduced / Deprecated InModern ReplacementReference
Color.withOpacity(o)Deprecated in Flutter 3.22Color.withValues(alpha: o)Widget Deprecations
MaterialState / MaterialStatePropertyDeprecated in Flutter 3.22WidgetState / WidgetStatePropertyWidget Deprecations
WillPopScopeDeprecated in Flutter 3.12+PopScope(canPop: ..., onPopInvokedWithResult: ...)Widget Deprecations
FlatButton, RaisedButton, OutlineButtonDeprecated in Flutter 2.0TextButton, ElevatedButton, OutlinedButtonWidget Deprecations
TextTheme.headline1...6, bodyText1/2Deprecated in Flutter 3.7+displayLarge...small, bodyLarge/MediumWidget Deprecations
ThemeData.accentColorDeprecated in Flutter 2.5+ColorScheme.secondaryWidget Deprecations
Scaffold.of(context).showSnackBar()Deprecated in Flutter 2.0ScaffoldMessenger.of(context).showSnackBar()Widget Deprecations
package:flutter/material.dartMonolithic Flutter SDKpackage:material_ui/material_ui.dartMaterial & Cupertino Migration
package:flutter/cupertino.dartMonolithic Flutter SDKpackage:cupertino_ui/cupertino_ui.dartMaterial & Cupertino Migration
BottomNavigationBarLegacy M2 NavigationNavigationBar (Material 3)Material 3 Guide
ToggleButtonsLegacy M2 ToggleSegmentedButton<T> (Material 3)Material 3 Guide
PopupMenuButtonLegacy popup menuMenuAnchor / SubmenuButtonMaterial 3 Guide

⚡ Subskill Spotlights

Subskill: Standalone material_ui & cupertino_ui Package Migration

  • Decoupled Architecture: Transition from monolithic framework design libraries to standalone pub packages with independent release cadences.
  • Automated Fix: Run dart fix --apply --code=migrate_design_widgets to update imports and dependencies automatically.
  • Headless Core Support: Construct purely custom design systems directly against package:flutter/widgets.dart. 👉 Read the full Material & Cupertino UI Migration Guide.

Subskill: Widget Deprecations & Modernization

  • Predictive Back Navigation: Replace WillPopScope with PopScope for zero-stutter predictive back gestures on Android 14+ and iOS.
  • Wide-Gamut Colors: Replace withOpacity with withValues(alpha: ...) to eliminate 8-bit precision loss and color clipping.
  • Unified State Management: Replace MaterialState with universal WidgetState. 👉 Read the full Widget Deprecations & Replacements Guide.

Subskill: Material 2 to Material 3 Migration

  • Seed-Based Theming: Generate tonal palettes with ColorScheme.fromSeed(seedColor: ...).
  • Component Modernization: Migrate from BottomNavigationBar to NavigationBar, ToggleButtons to SegmentedButton, and M2 buttons to FilledButton. 👉 Read the full Material 2 to Material 3 Guide.

Subskill: Rescuing Legacy Flutter Apps (Flutter 1.x / 2.x to Modern 3.x)

  • 5-Phase Upgrade Pipeline: Baseline toolchain check → null safety bridge → widget deprecation fixes → Material 3 update → modern state & routing. 👉 Read the full Legacy Flutter App Rescue Runbook.

📚 Table of Contents & Reference Archive

DocumentFocus AreaDescription
material-ui-and-cupertino-ui-migration.mdPackage DecouplingComplete runbook for migrating from SDK-bundled material/cupertino to standalone material_ui and cupertino_ui.
flutter-to-dart-version-matrix.mdVersion MappingFull mapping of Flutter 1.0–3.27+ to bundled Dart SDKs and engine milestones.
widget-deprecations-and-replacements.mdWidget DictionaryBefore/After code snippets for all deprecated Flutter widgets and properties.
material-2-to-material-3-guide.mdUI & ThemingComprehensive Material 3 migration guide, dynamic color schemes, and new components.
rescuing-legacy-flutter-apps.mdUpgrade Runbook5-phase structured runbook for stepping legacy Flutter apps to modern Flutter.

🛠️ Recommended Runbooks

1. Migrating to Standalone material_ui & cupertino_ui

  1. Execute dart fix --apply --code=migrate_design_widgets to rewrite imports.
  2. Confirm pubspec.yaml dependencies include material_ui and cupertino_ui.
  3. Consult the Material & Cupertino UI Migration Guide for localization updates and headless architectures.

2. Migrating Deprecated Widgets & Properties

  1. Identify the deprecated widget or property (for example WillPopScope, Color.withOpacity, MaterialStateProperty).
  2. Consult the Widget Deprecations Guide.
  3. Replace with the modern declarative equivalent (for example PopScope, Color.withValues(alpha: ...), WidgetStateProperty).

3. Migrating to Material 3

  1. Review the Material 2 to Material 3 Guide.
  2. Configure ThemeData using ColorScheme.fromSeed(seedColor: ...).
  3. Replace legacy navigation bars (BottomNavigationBarNavigationBar) and controls (ToggleButtonsSegmentedButton).

4. Upgrading / Rescuing Legacy Flutter Apps

  1. Determine current Flutter and Dart versions from pubspec.yaml environment block.
  2. Follow the 5-phase pipeline in the Legacy Flutter App Rescue Runbook:
    • Check toolchain → Sound Null Safety bridge → Widget deprecations → Material 3 theme → Modern routing & reactive state.

5. Answering "What's New in Flutter X.Y"

  1. Match the Flutter version in the Flutter to Dart Version Matrix.
  2. State the bundled Dart SDK version, major framework milestones, and engine updates.

Signals

GitHub stars
29
Forks
1
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
flutter-sdk-changelog
Source
github.com/randalschwartz/dart-sdk-skills