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
- Flutter is most used multi-platform framework since 2021 per JetBrains survey
- New dot shorthands feature cuts Flutter boilerplate code significantly
- Stateful hot reload now available for Flutter web in preview
- Direct native interop completed: platform and UI threads now merged
- LG launching webOS Flutter SDK for TV app development in 2026
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.
About This Article
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.
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.
This cuts down on boilerplate code. Developers can now write cleaner collections like [?promotableNullableValue, ?nullable.value] instead of nesting if statements with null checks.