Track the Flutter master windowing rename in the editor - #340
Merged
Conversation
|
The latest updates on your projects. Learn more about Argos notifications ↗︎
|
Master dropped the Regular prefix (RegularWindowController -> WindowController, RegularWindow -> Window, RegularWindowControllerDelegate -> WindowControllerDelegate) and now re-exports ScrollCacheExtent from material.dart. Signatures are unchanged, so the API change is a rename. main.dart also takes two tall-style method-chain reflows the master formatter requires.
bdero
force-pushed
the
bdero/master-window-api
branch
from
August 18, 2026 09:06
44180af to
dda5934
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Flutter master channel dropped the
Regularprefix from its experimental multi-window API, so the editor's floating-panel code stopped analyzing on the master lane (and master's own CI is red on it).RegularWindowControlleris nowWindowController,RegularWindowisWindow,RegularWindowControllerDelegateisWindowControllerDelegate, andScrollCacheExtentis re-exported frommaterial.dart. Signatures and delegate methods are unchanged, so this is a straight rename.Verified against flutter/flutter at the framework revision the failing run used; it could not be compiled locally since local Flutter is on stable, which still has the old names, so the master Lint check here is the real confirmation.