Flutter Blog Michael Thomsen May 21, 2025

Dart and Flutter Momentum at Google I/O 2025

Article Summary

Michael Thomsen from Google's Flutter team just dropped major news: Flutter now powers nearly 30% of all new free iOS apps. That's triple the market share from 2021.

At Google I/O 2025, the Flutter team unveiled significant momentum across enterprise adoption, language improvements, and AI integration. Major brands like NotebookLM, Google Cloud, and Universal theme parks are betting big on Flutter's cross-platform capabilities.

Key Takeaways

Critical Insight

Flutter has evolved from a mobile framework into a production-grade platform powering everything from theme park kiosks to AI-powered research tools, with major language improvements and native platform integration landing in 2025.

The article reveals how one team took their mobile app and transformed it into interactive museum kiosks serving 35 million users, plus a surprising new shape Flutter now supports that Apple keeps secret.

About This Article

Problem

Writing null checks in Dart collections was tedious. Developers had to use multiple if statements and null assertions, which made their code harder to read.

Solution

Dart 3.8 added null-aware elements with the ? operator. Now developers can conditionally add items to collections using just one character instead of writing multi-line if blocks.

Impact

This cuts down on boilerplate code. Developers can now write cleaner collections like [?promotableNullableValue, ?nullable.value] instead of nesting if statements with null checks.