Update Jul 28, 2026 tracked by Updatify
3.7.9
This hotfix release addresses the following issues:
-
dart/51798 - Fixes a false
Out of Memoryexception causing slowdowns.
Flutter is Google's SDK for crafting beautiful, fast user experiences for mobile, web, and desktop from a single codebase. is free and open source.
Building with Flutter? Show release notes in your app with updatify_flutter package
pub.devUpdate Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Out of Memory exception causing slowdowns. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Toolbar widget is incorrectly positioned when inside of a textfield in the Appbar. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
flutter doctor --android-licenses on macOS. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
/. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
FLUTTER_STORAGE_BASE_URL is overridden. NavigationBar widget when using Material 3. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
flutter pub get Update Jul 28, 2026 tracked by Updatify
The following changes happened in this release:
PopupRoute docs and add an example by @TahaTesser in https://github.com/flutter/flutter/pull/106948 ClipBehavior by @TahaTesser in https://github.com/flutter/flutter/pull/107466 ListTile and ListTile based widget docs for Material usage by @TahaTesser in https://github.com/flutter/flutter/pull/107104 ListTile docs for color animation issues and add example by @TahaTesser in https://github.com/flutter/flutter/pull/106955 Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
ClipRRect in CanvasKit mode when using Flutter web on Safari. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
FadeInImage switches from cached to uncached images. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
late variables in catch blocks. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
The following changes happened in this release:
FadeInImage to follow gapless playback by @werainkhatri in https://github.com/flutter/flutter/pull/94601 ListTile tests, remove duplicate test and fix typos by @TahaTesser in https://github.com/flutter/flutter/pull/101141 DrawerHeader decoration not inheriting ColorScheme.primary by @TahaTesser in https://github.com/flutter/flutter/pull/101280 ListTile debugFillProperties by @TahaTesser in https://github.com/flutter/flutter/pull/100765 Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
flutter doctor crashes for Windows users using Visual Studio 2022. dart pub login fails when attempting to publish a package. dart analyze throws errors when using enhance Enums feature. Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
When migrating to Flutter 3, you might see warnings like the following:
Warning: Operand of null-aware operation '!' has type 'SchedulerBinding' which excludes null.
These are caused by a simplification of the API
(the instance property on bindings is now non-nullable),
combined with an eager compiler that wants to report
any case where redundant null-aware operators
(such as ! and ?.) that are used when
they’re not necessary.
If this happens, there might be several causes with different solutions:
If your dependencies use bindings, they might need updating to silence the warnings. Your builds should be unaffected except for the verbose warnings. You can ignore the warnings for now (maybe reach out to your dependency’s developers to convince them to update).
If the problem refers to your own code,
you can update it by running dart fix --apply.
This should resolve all the warnings.
If you need your code to support both
Flutter 3 and earlier versions
(maybe because your code is a library),
then you can wrap calls to binding.instance
with calls to a method such as the following:
/// This allows a value of type T or T?
/// to be treated as a value of type T?.
///
/// We use this so that APIs that have become
/// non-nullable can still be used with `!` and `?`
/// to support older versions of the API as well.
T? _ambiguate<T>(T? value) => value;
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
TextField. TextField. Update Jul 28, 2026 tracked by Updatify
flutter/flutter72919 Add CupertinoTabBar.height (severe: new feature, framework, cla: yes, f: cupertino, waiting for tree to go green)
77103 [web] Allow the usage of url strategies without conditional imports (cla: yes, f: routes, platform-web, waiting for tree to go green)
83860 Added onDismiss callback to ModalBarrier. (framework, f: material design, cla: yes, waiting for tree to go green)
87643 Updated IconButton.iconSize to get value from theme (framework, f: material design, cla: yes, waiting for tree to go green)
88508 Do not crash when dragging ReorderableListView with two fingers simultaneously (framework, f: material design, cla: yes, waiting for tree to go green)
89045 feat: enable flavor option on test command (tool, cla: yes, waiting for tree to go green)
90178 update the scrollbar that support always show the track even not on hover (framework, f: material design, cla: yes, waiting for tree to go green)
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
google_sign_in or google_maps don’t build in iOS Simulator on ARM macOS dart pub publish with custom pub package server that has URL containing a path may fail. Update Jul 28, 2026 tracked by Updatify
flutter/flutter65015 PageView resize from zero-size viewport should not lose state (framework, f: material design, f: scrolling, cla: yes, waiting for tree to go green, a: state restoration)
75110 use FadeTransition instead of Opacity where applicable (framework, f: material design, cla: yes, f: cupertino, waiting for tree to go green)
79350 Indicate that only physical iOS devices are supported (team, cla: yes, waiting for tree to go green)
82670 Android Q transition by default (framework, f: material design, cla: yes, waiting for tree to go green)
83028 Fix comments (framework, f: material design, cla: yes, f: cupertino, waiting for tree to go green, documentation)
83047 [Material 3] Add Navigation Bar component to flutter framework. (framework, f: material design, cla: yes, waiting for tree to go green)
84307 Restart input connection after EditableText.onSubmitted (a: text input, platform-android, platform-ios, framework, f: material design, a: fidelity, cla: yes, waiting for tree to go green)
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
flutter/flutter69826 Added enableFeedback property to FloatingActionButton (framework, f: material design, cla: yes, waiting for tree to go green)
69880 Added enableFeedback property to DropdownButton (framework, f: material design, cla: yes)
71947 Improve the performances of ChangeNotifier (framework, cla: yes, waiting for tree to go green)
73440 Hardware keyboard: codegen (a: text input, team, framework, cla: yes)
75091 Calculate the system overlay style based on the AppBar background color (framework, f: material design, cla: yes, waiting for tree to go green)
75460 Added TabBar padding property (framework, f: material design, cla: yes, waiting for tree to go green)
75497 Added axisOrientation property to Scrollbar (framework, f: material design, f: scrolling, cla: yes, f: cupertino, waiting for tree to go green)
76145 Add support for pointer scrolling to trigger floats & snaps (framework, a: fidelity, f: scrolling, cla: yes, a: quality, platform-web, waiting for tree to go green, a: desktop, a: mouse)
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
transferable_throws_oom_test crashing after upgrade from Ubuntu 16) Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
flutter/flutter70171 [Checkbox] Adds shape property (cla: yes, f: material design, framework, waiting for tree to go green)
71138 Let InkWell/Ink/ancestor support GlobalKey so that splash does not stop when changing position. (cla: yes, f: material design, framework, waiting for tree to go green)
71217 Added checkboxHorizontalMargin to DataTable and PaginatedDataTable (cla: yes, f: material design, framework)
71864 ignore sliver underflow if the last children is no longer at the previous last index (cla: yes, framework, waiting for tree to go green)
72008 added debugDisableShadows usage explaination (cla: yes, framework)
72052 Feature refresh indicator padding (cla: yes, f: material design, framework)
72707 Fix/ValueListenableBuilder rebuilds (cla: yes, framework, waiting for tree to go green)
72828 Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issue:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issue:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issues:
Update Jul 28, 2026 tracked by Updatify
This hotfix release addresses the following issue:
Update Jul 28, 2026 tracked by Updatify
flutter/flutter48223 Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
55209 Updated SearchDelegate to follow custom InputDecorationTheme (cla: yes, f: material design, framework)
56024 Pass RouteSettings to the internal Route in showCupertinoModalPopup (cla: yes, f: cupertino, framework)
61366 Continue the clipBehavior breaking change (cla: yes, f: cupertino, framework, severe: API break)
61981 Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
62616 Migrate foundation test to nullsafety (a: accessibility, a: null-safety, cla: yes, framework)
62694 Convert services tests to NNBD (cla: yes, framework, team)
62701 Migrate gestures, physics and scheduler tests to null safety. (a: null-safety, cla: yes, framework)
62927 AutocompleteCore (a: text input, cla: yes, framework, severe: new feature)