engine
engine copied to clipboard
The Flutter engine
During some new development work that might make transform resets more expensive we realized that the resets were mostly coming from the calls to snap the transform to a pixel...
Handle `viewId` for text fields. Part of https://github.com/flutter/flutter/issues/137344
This PR adds `FlutterWindowMetricsEvent.viewId` to the embedder API. This PR only tests the ability to send metrics event for the implicit view. Once multiple views can be added via embedder...
This pull request introduces platform channel support for predictive back route transitions on Android, as part of the ongoing efforts in flutter/flutter#131961. - For Android SDK 33: Utilizes [`OnBackInvokedCallback`](https://developer.android.com/reference/android/window/OnBackInvokedCallback) to...
This does not fix the emulator weirdness! Today we automatically select the first memory type index requested by an AHB. The device in question may lack that memory type index,...
fixes https://github.com/flutter/flutter/issues/145017 This works by removing the conditional compilation for validation and turning them to be fatal in the test runner's main. ## Pre-launch Checklist - [x] I read the...
Fixes https://github.com/flutter/flutter/issues/143531 Also fixes a random typo I found TODO to test this: -test the framework against this as well, probably with a dummy PR changing the engine commit to...
Adds `FlutterCompositor.present_view_callback` to the embedder API. This new present callback adds a `view_id` member to allow embedders know which view is being presented. The embedder API does not allow embedders...
Adds `dilate` and `erode` ImageFilters. Fixes https://github.com/flutter/flutter/issues/101085 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read...
Right now, when semantics are enabled in flutter web, anchor tags are created around anything that is `Semantics(link: true)`. These anchor tags have an `href="#"`. Right now, when these anchor...