Tong Mu
Tong Mu
"Module not found" will occur when _all_ of the following conditions are met: - Using a named re-export, such as `export { a } from ...` - Re-exporting from an...
*Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* *List which issues are fixed by this PR. You must...
This PR implements `keyCode` and `defaultPrevented` of `FlutterHtmlKeyboardEvent`. The `keyCode` was deemed useful in [an earlier PR](https://github.com/flutter/engine/pull/30801) but was missing from this class, while `defaultPrevented` replaces a long-standing hack used...
Cherrypick https://github.com/flutter/engine/pull/35046 ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree Hygiene]...
Part of https://github.com/flutter/flutter/issues/100456 ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree...
This PR changes `macos/FlutterCompositor` so that instead of getting `FlutterViewController*` at construction, it gets a callback that provides the `FlutterView*` lazily. Part of [the multiwindow project](https://github.com/flutter/flutter/issues/30701) ([design doc](https://docs.google.com/document/d/1U_ciMTHJgDrnw8kIo9sGKhiKFOycWRmz1yVVI_osCXg/edit)): This is...
This PR merges `AccessibilityBridgeDelegate` into `AccessibilityBridge`, and isolates accessibility bridge's delegates and node delegates from embedding engines. **This is still a draft.** TODO: - [x] Isolate FlutterPlatformNodeDelegateMac from the engine...
This PR changes the accessibility bridge and its delegate classes, so that they no longer assume that the embedding engine only has one view or one bridge, but instead receive...
This PR changes `FlutterRenderer` so that it can no longer be set a view, but instead the methods receive a view as an argument. Part of [the multiwindow project](https://github.com/flutter/flutter/issues/30701) ([design...
_This PR is based on https://github.com/flutter/engine/pull/36392 and currently contains parent PRs . See https://github.com/dkwingsmt/engine/pull/8 for net changes._ This PR turns backing store and compositor to fitting the multi-view world. The...