Flutter 3.44 at Google I/O 2026: What We Saw at the Conference

Notes from a Flutter dev on Agentic Hot Reload, Chrome APIs that matter for Flutter Web, and the gen-media demos on the floor.

7 min read

Flutter is now the #2 most popular SDK on both major app stores. Chrome shipped APIs that could quietly fix Flutter Web’s biggest limitations. And someone printed latte art on my cappuccino using Gemini. Here’s what I came back with from Google I/O 2026.

Audience at the Google I/O 2026 keynote at Shoreline Amphitheatre.

Sundar Pichai on stage during the Google I/O 2026 keynote at Shoreline Amphitheatre.

Flutter at I/O 2026

The headline stat from “What’s New in Flutter” landed right at the top of the session. Flutter is the #2 most popular app development SDK on both the App Store and Google Play, and it’s used by 1.5 million developers worldwide. For teams making framework decisions, a number like that is a useful long-term signal about ecosystem risk.

The "What's New in Flutter" session at Google I/O 2026.

Slide showing Flutter ranked #2 most popular mobile app development SDK on the App Store and Google Play.

Flutter 3.44 shipped alongside the conference. A few things caught my eye.

Agentic Hot Reload closes a feedback loop that has been annoying since AI-assisted coding became part of the daily workflow. The Dart and Flutter MCP server finds your running app automatically and triggers hot reloads after an agent makes changes. The manual copy-paste loop between agent output and your terminal disappears. The feedback cycle shrinks from minutes to seconds. That kind of improvement compounds over a full workday. We’ve been writing about MCP servers for Dart and Flutter developers for a while now, and Very Good CLI’s built-in MCP server sits in the same lineage of work.

Swift Package Manager is now the default for iOS and macOS. CocoaPods has been a steady source of pain for years. The CLI handles migration automatically.

The split of Material and Cupertino out of the core framework is progressing toward enforcement. Imports will soon move to package:material/material.dart instead of package:flutter/material.dart. We’ve covered this shift before, and it’s a necessary step toward cleaner API boundaries.

Toyota premiered a video on the work to bring Flutter to the 2026 RAV4 infotainment system, with more vehicles to follow. Seeing the platform land in production automotive hardware in front of a developer audience reinforces why teams are picking Flutter for surfaces well beyond phones. This is a very special project for VGV as well, as it demonstrates the results of multiple years of hard work teaming up with the Toyota team.

GenUI was again a popular topic from Cloud Next through I/O. The practitioner conversations I had were more specific than the headline concept. People were working through three recurring questions: how to keep token usage efficient when the model is generating UI on every interaction, whether on-device models are capable enough to handle it without a cloud round-trip, and how to identify which parts of an app actually benefit from generative UI versus which parts should stay deterministic. That third question is the hardest one. The appetite is clearly there, but the teams doing it well are the ones who are being deliberate about where to apply it.

The Antigravity Coffee Co. demo was the standout floor experience. Flutter ran across multiple screens at once: phone, tablet, laptop, and TV. The app asked a few questions, generated a personalized prompt, and Nano Banana (Google’s image generation model) produced custom latte art based on the answers. A printer then applied the image directly to the foam of a cappuccino. I asked it to make “Coding with my fellow unicorns.” The result was delightful, and the underlying point landed. A multi-screen Flutter app coordinating with image generation and physical hardware is exactly the kind of experience the framework is built for now.

The order confirmation for a cappuccino with custom AI-generated latte art, powered by Gemini, Firebase, and Flutter.

Marcus with the Antigravity Coffee Co. display showing the prompt "My happy place is: Coding with my fellow unicorns."

A cappuccino with AI-generated latte art printed directly on the foam.

HTML-in-Canvas and WebMCP: What They Mean for Flutter Web

Google is bringing several new web APIs to Chrome with real implications for Flutter Web.

HTML-in-Canvas could let Flutter Web’s Canvas-based renderer embed native HTML elements with much lower performance cost than today. That opens a path to real SEO and native text tools (including browser translation) for Flutter Web apps, which has been one of the framework’s longer-standing limitations on the platform. One of the Chrome engineers at the booth said it directly. “One of the first use cases we were interested in was Flutter Web.” Worth tracking as the API moves through the origin trial and toward standardization across browsers.

Chrome booth demoing HTML-in-Canvas and Built-in AI APIs at Google I/O 2026.

WebMCP is a proposed standard for exposing structured tools so browser-based AI agents can interact with web apps reliably. For Flutter specifically, this is significant. Flutter Web doesn’t have a DOM, so traditional in-browser agents have nothing to grab onto. WebMCP could let a Flutter web app explicitly declare its available actions so an agent can do something useful with it, like changing inputs or submitting orders.

WebMCP demo booth at Google I/O 2026.

Chrome 149 also ships APIs for calling AI models built directly into the browser, no server round-trip required. Together with improvements to running Gemma 4 on device for mobile apps, the direction is clear. On-device inference has real advantages for latency and privacy, and it removes token costs for calls that don’t need cloud-scale reasoning. The open question for teams is where the capability ceiling lands for production use cases, and how that ceiling interacts with GenUI patterns that have so far assumed a cloud round-trip.

Gen Media APIs

Project Genie was the standout floor experience for generative media. You described a world in natural language, and Gemini generated it as a fully interactive 3D environment. The crystal globes around the booth were how you made your prompt — you picked a character globe and an environment globe, put them on special stands, and that combination seeded your generation.

Wall of Project Genie crystal globes at Google I/O 2026 with the prompt "Pick your environment".

Project Genie crystal globes up close on the Google I/O 2026 floor.

There was an AI sticker generator where you picked two categories and Nano Banana combined them into a custom I/O sticker. I ended up with “Snowflake Motherboard.”

The AI sticker generation experience running on a Pixel tablet at Google I/O 2026.

The AI portrait experience generated you as a pixel art fighter, a toy-like action figure, and a Renaissance oil painting, all powered by Nano Banana.

Pixel art portrait generated by Nano Banana at Google I/O 2026.

Toy-line action figure portrait generated by Nano Banana at Google I/O 2026.

Renaissance oil painting portrait generated by Nano Banana at Google I/O 2026.

Coming Back

The last time I went to I/O was 2019, and it was the first time I felt like a real developer. I was surrounded by people who cared about the same problems I did, watching announcements that spoke directly to my work. I remember talking to the Flutter folks about project hummingbird, a demo of Flutter running in a web browser, that eventually became Flutter Web. I later learned VGV had built the original demo, which cemented in my mind I wanted to work for them.

Coming back in 2026 as a VGV Engineering Lead and GDE in Flutter felt like a homecoming of sorts. It also reinforced the thing I still believe about the Flutter community: it’s the best in the world! I chatted with dozens of devs that were generous with knowledge and invested in making everyone’s work better, the same way they always have been.

Big thanks to the GDE program for the invitation and to the Flutter team for the hospitality and for building something I’ve been proud to work with for years. And to Very Good Ventures for sending me. I’m lucky to work somewhere that invests in the community.


Resources:

Frequently Asked Questions

What is Flutter 3.44?

Flutter 3.44 is the framework release that shipped alongside Google I/O 2026. It introduces Agentic Hot Reload via the Flutter MCP server, makes Swift Package Manager the default for iOS and macOS, and continues the migration of Material and Cupertino out of the core framework.

How does Flutter Agentic Hot Reload work?

The Flutter MCP server finds your running app automatically and triggers hot reloads after a coding agent edits your code. That removes the manual copy-paste step between agent output and the terminal, shortening the feedback cycle from minutes to seconds.

What is GenUI in Flutter?

Generative UI (GenUI) is a pattern where an AI model produces UI components or assets at runtime instead of every screen being hand-built. In Flutter, it pairs naturally with Gemini and on-device models to generate adaptive interfaces across phone, tablet, web, and embedded surfaces.

What is HTML-in-Canvas and why does it matter for Flutter Web?

HTML-in-Canvas is a Chrome API that lets a Canvas-based renderer embed real HTML elements with lower performance cost. For Flutter Web, that opens a path to real SEO, native text selection, and native browser translation tooling for apps that use the CanvasKit or Skwasm renderers.

What is WebMCP?

WebMCP is a proposed standard for exposing structured tools so browser-based AI agents can interact with web apps reliably. It's significant for Flutter Web because Flutter Web doesn't render a DOM, so traditional in-browser agents have nothing to grab onto. WebMCP lets a Flutter web app declare its actions so an agent can invoke them directly.