text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
import 'dart:io' show Platform;
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:universal_platform/universal_platform.dart';
class DeviceType {
// Syntax sugar, proxy the UniversalPlatform methods so our views can reference a single class
static bool isIOS = UniversalPlatform.isIOS;
static bool isAndroid = UniversalPlatform.isAndroid;
static bool isMacOS = UniversalPlatform.isMacOS;
static bool isLinux = UniversalPlatform.isLinux;
static bool isWindows = UniversalPlatform.isWindows;
// Higher level device class abstractions (more syntax sugar for the views)
static bool isWeb = UniversalPlatform.isWeb;
static bool get isDesktop => isWindows || isMacOS || isLinux;
static bool get isMobile => isAndroid || isIOS;
static bool get isDesktopOrWeb => isDesktop || isWeb;
static bool get isMobileOrWeb => isMobile || isWeb;
// #docregion Platforms
bool get isMobileDevice => !kIsWeb && (Platform.isIOS || Platform.isAndroid);
bool get isDesktopDevice =>
!kIsWeb && (Platform.isMacOS || Platform.isWindows || Platform.isLinux);
bool get isMobileDeviceOrWeb => kIsWeb || isMobileDevice;
bool get isDesktopDeviceOrWeb => kIsWeb || isDesktopDevice;
// #enddocregion Platforms
}
// #docregion Styling
class Insets {
static const double xsmall = 3;
static const double small = 4;
static const double medium = 5;
static const double large = 10;
static const double extraLarge = 20;
// etc
}
class Fonts {
static const String raleway = 'Raleway';
// etc
}
class TextStyles {
static const TextStyle raleway = TextStyle(
fontFamily: Fonts.raleway,
);
static TextStyle buttonText1 =
const TextStyle(fontWeight: FontWeight.bold, fontSize: 14);
static TextStyle buttonText2 =
const TextStyle(fontWeight: FontWeight.normal, fontSize: 11);
static TextStyle h1 =
const TextStyle(fontWeight: FontWeight.bold, fontSize: 22);
static TextStyle h2 =
const TextStyle(fontWeight: FontWeight.bold, fontSize: 16);
static TextStyle body1 = raleway.copyWith(color: const Color(0xFF42A5F5));
// etc
}
// #enddocregion Styling
class MyWidget extends StatelessWidget {
const MyWidget({super.key});
@override
Widget build(BuildContext context) {
// #docregion UseConstants
return Padding(
padding: const EdgeInsets.all(Insets.small),
child: Text('Hello!', style: TextStyles.body1),
);
// #enddocregion UseConstants
}
}
| website/examples/ui/layout/adaptive_app_demos/lib/global/device_type.dart/0 | {
"file_path": "website/examples/ui/layout/adaptive_app_demos/lib/global/device_type.dart",
"repo_id": "website",
"token_count": 795
} | 1,212 |
{% comment %}
Embeds breadcrumb RDFa, follows ARIA guidelines. References:
- https://developers.google.com/search/docs/data-types/breadcrumb
- https://schema.org/BreadcrumbList
- https://www.w3.org/TR/wai-aria-practices/examples/breadcrumb/index.html
- https://search.google.com/structured-data/testing-tool
{% endcomment %}
{% assign url = page.url | regex_replace: '/index$|/index.html$|/$' -%}
{% if url.size > 0 -%}
<nav aria-label="breadcrumb">
<ol class="breadcrumb" vocab="http://schema.org/" typeof="BreadcrumbList">
{% assign position = 0 -%}
{% for crumb in breadcrumbs -%}
{% if forloop.first -%}
{% comment %}Skip site root{% endcomment -%}
{% continue -%}
{% endif -%}
<li class="breadcrumb-item {%- if forloop.last %} active {%- endif %}"
property="itemListElement" typeof="ListItem"
{%- if forloop.last %} aria-current="page"{% endif %}>
{%- comment %}Avoid spaces here, it messes up formatting{% endcomment -%}
<a href="{{ crumb.url | regex_replace: '/index$|/index.html$|/$' }}" property="item" typeof="WebPage">
{%- comment %}Avoid spaces here, it messes up formatting{% endcomment -%}
<span property="name">{{crumb.title}}</span>
</a>
<meta property="position" content="{{forloop.index0}}" />
</li>
{% endfor %}
</ol>
</nav>
{%- endif -%}
| website/src/_includes/breadcrumbs.html/0 | {
"file_path": "website/src/_includes/breadcrumbs.html",
"repo_id": "website",
"token_count": 541
} | 1,213 |
{{site.alert.note}}
If you want to use the [GNU Project Debugger][] to debug the
Flutter engine running within an Android app process,
check out [`flutter_gdb`][].
{{site.alert.end}}
[GNU Project Debugger]: https://www.sourceware.org/gdb/
[`flutter_gdb`]: {{site.repo.engine}}/blob/main/sky/tools/flutter_gdb
#### Build the Android version of the Flutter app in the Terminal
To generate the needed Android platform dependencies,
run the `flutter build` command.
```terminal
flutter build appbundle --debug
```
```terminal
Running Gradle task 'bundleDebug'... 27.1s
β Built build/app/outputs/bundle/debug/app-debug.aab.
```
{% comment %} Nav tabs {% endcomment -%}
<ul class="nav nav-tabs" id="vscode-to-android-studio-setup" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="from-vscode-to-android-studio-tab" href="#from-vscode-to-android-studio" role="tab" aria-controls="from-vscode-to-android-studio" aria-selected="true">Start from VS Code</a>
</li>
<li class="nav-item">
<a class="nav-link" id="from-android-studio-to-vscode-tab" href="#from-android-studio-to-vscode" role="tab" aria-controls="from-android-studio-to-vscode" aria-selected="false">Start from Android Studio</a>
</li>
</ul>
{% comment %} Tab panes {% endcomment -%}
<div class="tab-content">
<div class="tab-pane active" id="from-vscode-to-android-studio" role="tabpanel" aria-labelledby="from-vscode-to-android-studio-tab" markdown="1">
#### Start debugging with VS Code first {#from-vscode-to-android-studio}
If you use VS Code to debug most of your code, start with this section.
{% include docs/debug/debug-flow-vscode-as-start.md %}
#### Attach to the Flutter process in Android Studio
{% include docs/debug/debug-android-attach-process.md %}
</div>
<div class="tab-pane" id="from-android-studio-to-vscode" role="tabpanel" aria-labelledby="from-android-studio-to-vscode-tab" markdown="1">
#### Start debugging with Android Studio first {#from-android-studio}
If you use Android Studio to debug most of your code, start with this section.
1. To open the Flutter app directory, go to
**File** <span aria-label="and then">></span>
**Open...** and choose the `my_app` directory.
1. Open the `lib/main.dart` file.
1. Choose a virtual Android device.
Go to the toolbar, open the leftmost dropdown menu, and click on
**Open Android Emulator: \<device\>**.
You can choose any installed emulator that's doesn't include `arm64`.
1. From that same menu, select the virtual Android device.
1. From the toolbar, click **Run 'main.dart'**.
You can also press <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd>.
After the app displays in the emulator, continue to the next step.
{% include docs/debug/debug-android-attach-process.md %}
</div>
</div>
{% comment %} End: Tab panes. {% endcomment -%}
| website/src/_includes/docs/debug/debug-flow-android.md/0 | {
"file_path": "website/src/_includes/docs/debug/debug-flow-android.md",
"repo_id": "website",
"token_count": 1055
} | 1,214 |
#### Set up the Android emulator
{% include docs/help-link.md location='android-emulator' section='#android-setup' %}
{% assign devos = include.devos %}
{% assign target = include.target %}
{% assign compiler = include.compiler %}
{% assign attempt = include.attempt %}
{% case devos %}
{% when 'Windows','Linux' -%}
{% assign images = '**x86 Images**' -%}
{% when 'macOS' -%}
{% assign images = '**x86 Images** if your Mac runs on an Intel CPU or **ARM Images** if your Mac runs on an Apple CPU' -%}
{% endcase -%}
To configure your Flutter app to run in an Android emulator,
follow these steps to create and select an emulator.
1. Enable
[VM acceleration]({{site.android-dev}}/studio/run/emulator-acceleration#accel-vm)
on your development computer.
1. Start **Android Studio**.
1. Go to the **Settings** dialog to view the **SDK Manager**.
1. If you have a project open,
go to **Tools** <span aria-label="and then">></span>
**Device Manager**.
1. If the **Welcome to Android Studio** dialog displays,
click the **More Options** icon that follows the **Open** button
and click **Device Manager** from the dropdown menu.
1. Click **Virtual**.
1. Click **Create Device**.
The **Virtual Device Configuration** dialog displays.
1. Select either **Phone** or **Tablet** under **Category**.
1. Select a device definition. You can browse or search for the device.
1. Click **Next**.
1. Click {{images}}.
1. Click one system image for the Android version you want to emulate.
{:type="a"}
1. If the desired image has a **Download** icon to the right
of the **Release Name**, click it.
The **SDK Quickfix Installation** dialog displays with a
completion meter.
1. When the download completes, click **Finish**.
1. Click **Next**.
The **Virtual Device Configuration** displays its
**Verify Configuration** step.
1. To rename the Android Virtual Device (AVD), change the value in the
**AVD Name** box.
1. Click **Show Advanced Settings** and scroll to **Emulated Performance**.
1. From the **Graphics** dropdown menu, select **Hardware - GLES 2.0**.
This enables [hardware acceleration][] and improves rendering performance.
1. Verify your AVD configuration. If it is correct, click **Finish**.
To learn more about AVDs, check out
[Managing AVDs]({{site.android-dev}}/studio/run/managing-avds).
1. In the **Device Manager** dialog, click the **Run** icon to the right
of your desired AVD.
The emulator starts up and displays the default canvas for your
selected Android OS version and device.
[hardware acceleration]: {{site.android-dev}}/studio/run/emulator-acceleration
| website/src/_includes/docs/install/devices/android-emulator.md/0 | {
"file_path": "website/src/_includes/docs/install/devices/android-emulator.md",
"repo_id": "website",
"token_count": 831
} | 1,215 |
<img src='/assets/images/docs/get-started/hot-reload.svg'
alt='lightning bolt'
style="height: 1.6rem"
class="bg-dark p-1">
| website/src/_includes/docs/install/test-drive/hot-reload-icon.md/0 | {
"file_path": "website/src/_includes/docs/install/test-drive/hot-reload-icon.md",
"repo_id": "website",
"token_count": 63
} | 1,216 |
{% if include.next or include.prev -%}
{% if include.next and include.prev -%}
{% assign nav_class = 'site-nextprev-nav' -%}
{% else -%}
{% assign nav_class = 'site-nextprev-nav__single' -%}
{% endif -%}
<nav class="{{nav_class}}">
<ul>
{% if include.prev.path -%}
<li class="prev">
<a href="{{ include.prev.path }}">{{ include.prev.title }}</a>
</li>
{% endif -%}
{% if include.next.path -%}
<li class="next">
<a href="{{ include.next.path }}">{{ include.next.title }}</a>
</li>
{% endif -%}
</ul>
</nav>
{% endif -%}
| website/src/_includes/next-prev-nav.html/0 | {
"file_path": "website/src/_includes/next-prev-nav.html",
"repo_id": "website",
"token_count": 293
} | 1,217 |
# Copyright (c) 2018, the project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
require 'liquid/tag/parser' # https://github.com/envygeeks/liquid-tag-parser
require_relative 'code_diff_core'
module Jekyll
module Tags
class CodeDiff < Liquid::Block
def initialize(tag_name, string_of_args, tokens)
super
@args = Liquid::Tag::Parser.new(string_of_args).args
@log_diffs = false
end
def render(liquid_context)
helper = DartSite::CodeDiffCore.new
helper.render(@args, super)
end
end
end
end
Liquid::Template.register_tag('diff'.freeze, Jekyll::Tags::CodeDiff)
| website/src/_plugins/code_diff.rb/0 | {
"file_path": "website/src/_plugins/code_diff.rb",
"repo_id": "website",
"token_count": 280
} | 1,218 |
// Overrides for printing so only page content is printed
@media print {
// Ignore navigation elements and other non-necessary interactive ones
.site-header, .subnav, .site-footer, .site-sidebar, .navbar,
#site-toc--side, #page-github-links, #cookie-notice, .site-banner,
.code-excerpt__copy-btn, .breadcrumb {
display: none !important;
}
// Make sure content fills up 100% of width
.site-content {
max-width: 100% !important;
margin-left: 0;
padding-left: 0;
border: none;
flex: 1;
}
// Remove DartPad iframes since they are not functional.
iframe[src^="https://dartpad"]:not(#try-dart-pad),
iframe[src^="https://old-dartpad"] {
display: none;
}
// Display underlines under links
a {
text-decoration: underline;
}
// Show borders around notes and code blocks
.alert, pre {
border: 1px solid black;
}
}
| website/src/_sass/base/_print-overrides.scss/0 | {
"file_path": "website/src/_sass/base/_print-overrides.scss",
"repo_id": "website",
"token_count": 314
} | 1,219 |
@use '../base/variables' as *;
@use '../vendor/bootstrap';
.landing-page {
background-color: $site-color-codeblock-bg;
h2 {
font-size: 2rem;
margin-top: 0;
@include bootstrap.media-breakpoint-up(lg) {
font-size: 2.25rem;
}
@include bootstrap.media-breakpoint-up(xl) {
font-size: 2.75rem;
}
}
h3 {
font-size: 1.25rem;
@include bootstrap.media-breakpoint-up(lg) {
font-size: 1.75rem;
}
&:first-child {
margin-top: 0;
}
}
.card {
margin-bottom: bootstrap.bs-spacer(8);
.card-body {
padding: 40px 20px;
@include bootstrap.media-breakpoint-up(md) {
padding: 40px;
}
@include bootstrap.media-breakpoint-up(lg) {
padding: 60px;
}
@include bootstrap.media-breakpoint-up(xl) {
padding: 80px;
}
}
}
.card.card--case-study {
margin-bottom: bootstrap.bs-spacer(6);
padding: bootstrap.bs-spacer(8) bootstrap.bs-spacer(6);
.card-header {
align-items: center;
border: none;
background-color: transparent;
display: flex;
margin-bottom: bootstrap.bs-spacer(8);
min-height: 46px;
padding: 0;
}
.card-body {
margin-bottom: bootstrap.bs-spacer(4);
padding: 0;
}
.card-footer {
padding: 0;
}
}
&__card-graphic {
margin-bottom: bootstrap.bs-spacer(5);
@include bootstrap.media-breakpoint-up(lg) {
margin-bottom: 0;
}
&--fill {
align-items: center;
display: flex;
justify-content: center;
img,
video {
max-width: 100%;
pointer-events: none;
}
}
&__logo-row {
&:not(:last-child) {
margin-bottom: bootstrap.bs-spacer(2);
}
}
}
&__hero {
background-color: $site-color-black;
left: 50%;
margin-bottom: 40px;
margin-left: -50vw;
margin-right: -50vw;
position: relative;
right: 50%;
width: 100vw;
@include bootstrap.media-breakpoint-up(md) {
margin-bottom: 80px;
}
.card {
.card-body {
padding: bootstrap.bs-spacer(6);
}
.card-category {
color: $site-color-primary;
font-size: bootstrap.$font-size-base;
font-weight: bootstrap.$font-weight-base;
margin-bottom: bootstrap.bs-spacer(4);
}
.btn.btn-link {
padding: 0;
}
}
}
&__case-studies {
&__logo {
max-width: 50%;
max-height: 40px;
height: auto;
img {
max-height: 40px;
}
}
.card-deck {
margin-top: bootstrap.bs-spacer(12);
.col-lg-4 {
padding-left: bootstrap.bs-spacer(3);
padding-right: bootstrap.bs-spacer(3);
}
}
}
&__cta {
&__headline {
margin-bottom: bootstrap.bs-spacer(2);
@include bootstrap.media-breakpoint-up(md) {
margin-bottom: bootstrap.bs-spacer(4);
}
}
&__body {
font-size: 1.25rem;
@include bootstrap.media-breakpoint-up(md) {
font-size: 1.35rem;
}
@include bootstrap.media-breakpoint-up(lg) {
font-size: 1.5rem;
}
}
&__button {
margin-top: bootstrap.bs-spacer(4);
@include bootstrap.media-breakpoint-up(md) {
margin-top: bootstrap.bs-spacer(8);
}
}
}
}
| website/src/_sass/pages/_landing-page.scss/0 | {
"file_path": "website/src/_sass/pages/_landing-page.scss",
"repo_id": "website",
"token_count": 1678
} | 1,220 |
---
title: Integrate a Flutter module into your iOS project
short-title: Integrate Flutter
description: Learn how to integrate a Flutter module into your existing iOS project.
---
Flutter UI components can be incrementally added into your existing iOS
application as embedded frameworks. There are a few ways to embed Flutter
in your existing application.
1. **Use the CocoaPods dependency manager and installed Flutter SDK.**
In this case, the `flutter_module` is compiled from
the source each time the app is built. (Recommended.)
1. **Create frameworks for the Flutter engine, your compiled Dart code,
and all Flutter plugins.** Here, you manually embed the frameworks,
and update your existing application's build settings in Xcode.
This can be useful for teams that don't want to require every developer
to have the Flutter SDK and Cocoapods installed locally.
1. **Create frameworks for your compiled Dart code,
and all Flutter plugins. Use CocoaPods for the Flutter engine.**
With this option, embed the frameworks for your application
and the plugins in Xcode, but distribute the
Flutter engine as a CocoaPods podspec.
This is similar to the second option, but it provides
an alternative to distributing the large Flutter.xcframework.
For examples using an app built with UIKit,
see the iOS directories in the [add_to_app code samples][].
For an example using SwiftUI, see the iOS directory in [News Feed App][].
## System requirements
Your development environment must meet the
[macOS system requirements for Flutter][]
with [Xcode installed][].
Flutter supports iOS 12 and later.
Additionally, you will need [CocoaPods][]
version 1.10 or later.
## Create a Flutter module
To embed Flutter into your existing application,
using any of the methods mentioned above,
first create a Flutter module.
From the command line, run:
```terminal
cd some/path/
flutter create --template module my_flutter
```
A Flutter module project is created at `some/path/my_flutter/`.
If you are using the first method mentioned above,
the module should be created in the same parent directory
as your existing iOS app.
From the Flutter module directory, you can run the same `flutter`
commands you would in any other Flutter project,
like `flutter run --debug` or `flutter build ios`.
You can also run the module in
[Android Studio/IntelliJ][] or [VS Code][] with
the Flutter and Dart plugins. This project contains a
single-view example version of your module before it's
embedded in your existing application,
which is useful for incrementally
testing the Flutter-only parts of your code.
### Module organization
The `my_flutter` module directory structure is similar to a
normal Flutter application:
```text
my_flutter/
βββ .ios/
β βββ Runner.xcworkspace
β βββ Flutter/podhelper.rb
βββ lib/
β βββ main.dart
βββ test/
βββ pubspec.yaml
```
Add your Dart code to the `lib/` directory.
Add Flutter dependencies to `my_flutter/pubspec.yaml`,
including Flutter packages and plugins.
The `.ios/` hidden subfolder contains an Xcode workspace where
you can run a standalone version of your module.
It is a wrapper project to bootstrap your Flutter code,
and contains helper scripts to facilitate building frameworks or
embedding the module into your existing application with CocoaPods.
{{site.alert.note}}
Add custom iOS code to your own existing application's
project or to a plugin, not to the module's `.ios/`
directory. Changes made in your module's `.ios/`
directory don't appear in your existing iOS project
using the module, and might be overwritten by Flutter.
Do not source control the `.ios/` directory since it's autogenerated.
Before building the module on a new machine, run `flutter pub get`
in the `my_flutter` directory first to regenerate the `.ios/`
directory before building iOS project using the Flutter module.
{{site.alert.end}}
## Embed the Flutter module in your existing application
After you have developed your Flutter module,
you can embed it using the methods described at the top of the page.
{{site.alert.note}}
You can run in Debug mode on a simulator or a real device,
and Release on a real device. Learn more about
[Flutter's build modes][build modes of Flutter]
To leverage Flutter debugging functionality
such as hot reload, see [Debugging your add-to-app module][].
{{site.alert.end}}
Using Flutter [increases your app size][].
### Option A - Embed with CocoaPods and the Flutter SDK
This method requires every developer working on your
project to have a locally installed version of the Flutter SDK.
The Flutter module is compiled from source each time the app is built.
Simply build your application in Xcode to automatically
run the script to embed your Dart and plugin code.
This allows rapid iteration with the most up-to-date
version of your Flutter module without running additional
commands outside of Xcode.
The following example assumes that your existing
application and the Flutter module are in sibling
directories. If you have a different directory structure,
you might need to adjust the relative paths.
```text
some/path/
βββ my_flutter/
β βββ .ios/
β βββ Flutter/
β βββ podhelper.rb
βββ MyApp/
βββ Podfile
```
If your existing application (`MyApp`) doesn't
already have a Podfile, run `pod init` in the
`MyApp` directory to create one.
You can find more details on using
CocoaPods in the [CocoaPods getting started guide][].
<ol markdown="1">
<li markdown="1">
Add the following lines to your `Podfile`:
<?code-excerpt title="MyApp/Podfile"?>
```ruby
flutter_application_path = '../my_flutter'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
```
</li>
<li markdown="1">
For each [Podfile target][] that needs to
embed Flutter, call `install_all_flutter_pods(flutter_application_path)`.
<?code-excerpt title="MyApp/Podfile"?>
```ruby
target 'MyApp' do
install_all_flutter_pods(flutter_application_path)
end
```
</li>
<li markdown="1">
In the `Podfile`'s `post_install` block, call `flutter_post_install(installer)`.
<?code-excerpt title="MyApp/Podfile"?>
```ruby
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end
```
{{site.alert.note}}
The `flutter_post_install` method (added in Flutter 3.1.0),
adds build settings to support native Apple Silicon `arm64` iOS simulators.
Include the `if defined?(flutter_post_install)` check to ensure your `Podfile`
is valid if you are running on older versions of Flutter that don't have this method.
{{site.alert.end}}
</li>
<li markdown="1">
Run `pod install`.
{{site.alert.note}}
When you change the Flutter plugin dependencies in
`my_flutter/pubspec.yaml`, run `flutter pub get`
in your Flutter module directory to refresh the list
of plugins read by the `podhelper.rb` script.
Then, run `pod install` again from
your application at `some/path/MyApp`.
{{site.alert.end}}
</li>
</ol>
The `podhelper.rb` script embeds your plugins,
`Flutter.framework`, and `App.framework` into your project.
Your app's Debug and Release build configurations embed
the Debug or Release [build modes of Flutter][], respectively.
Add a Profile build configuration
to your app to test in profile mode.
{{site.alert.tip}}
`Flutter.framework` is the bundle for the Flutter engine,
and `App.framework` is the compiled Dart code for this project.
{{site.alert.end}}
Open `MyApp.xcworkspace` in Xcode.
You can now build the project using `βB`.
### Option B - Embed frameworks in Xcode
Alternatively, you can generate the necessary frameworks
and embed them in your application by manually editing
your existing Xcode project. You might do this if members of your
team can't locally install Flutter SDK and CocoaPods,
or if you don't want to use CocoaPods
as a dependency manager in your existing applications.
You must run `flutter build ios-framework`
every time you make code changes in your Flutter module.
The following example assumes that you want to generate the
frameworks to `some/path/MyApp/Flutter/`.
```terminal
flutter build ios-framework --output=some/path/MyApp/Flutter/
```
```text
some/path/MyApp/
βββ Flutter/
βββ Debug/
β βββ Flutter.xcframework
βΒ Β βββ App.xcframework
βΒ Β βββ FlutterPluginRegistrant.xcframework (only if you have plugins with iOS platform code)
βΒ Β βββ example_plugin.xcframework (each plugin is a separate framework)
βββ Profile/
β βββ Flutter.xcframework
β βββ App.xcframework
β βββ FlutterPluginRegistrant.xcframework
β βββ example_plugin.xcframework
βββ Release/
βββ Flutter.xcframework
βββ App.xcframework
βββ FlutterPluginRegistrant.xcframework
βββ example_plugin.xcframework
```
{{site.alert.warning}}
Always use `Flutter.xcframework` and `App.xcframework`
from the same directory. Mixing `.xcframework` imports
from different directories (such as `Profile/Flutter.xcframework`
with `Debug/App.xcframework`) causes runtime crashes.
{{site.alert.end}}
Link and embed the generated frameworks into your existing
application in Xcode. There are multiple ways to do
this—use the method that is best for your project.
#### Link on the frameworks
For example, you can drag the frameworks from
`some/path/MyApp/Flutter/Release/` in Finder
into your target's **Build
Settings > Build Phases > Link Binary With Libraries**.
In the target's build settings, add `$(PROJECT_DIR)/Flutter/Release/`
to the **Framework Search Paths** (`FRAMEWORK_SEARCH_PATHS`).
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/framework-search-paths.png" alt="Update Framework Search Paths in Xcode" %}
{{site.alert.tip}}
To use the simulator, you will need to
embed the Debug version of the Flutter frameworks in your
Debug build configuration. To do this
you can use `$(PROJECT_DIR)/Flutter/$(CONFIGURATION)`
in the **Framework Search Paths** (`FRAMEWORK_SEARCH_PATHS`)
build setting. This embeds the Release frameworks in the Release configuration,
and the Debug frameworks in the Debug Configuration.
You must also open `MyApp.xcodeproj/project.pbxproj` (from Finder)
and replace `path = Flutter/Release/example.xcframework;`
with `path = "Flutter/$(CONFIGURATION)/example.xcframework";`
for all added frameworks. (Note the added `"`.)
{{site.alert.end}}
#### Embed the frameworks
The generated dynamic frameworks must be embedded
into your app to be loaded at runtime.
{{site.alert.important}}
Plugins might produce [static or dynamic frameworks][].
Static frameworks should be linked on, but never embedded.
If you embed a static framework into your application,
your application is not publishable to the App Store
and fails with a
**Found an unexpected Mach-O header code** archive error.
{{site.alert.end}}
After linking the frameworks, you should see them in the
**Frameworks, Libraries, and Embedded Content**
section of your target's **General** settings.
To embed the dynamic frameworks
select **Embed & Sign**.
They will then appear under **Embed Frameworks** within
**Build Phases** as follows:
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/embed-xcode.png" alt="Embed frameworks in Xcode" %}
You should now be able to build the project in Xcode using `βB`.
### Option C - Embed application and plugin frameworks in Xcode and Flutter framework with CocoaPods
Alternatively, instead of distributing the large Flutter.xcframework
to other developers, machines, or continuous integration systems,
you can instead generate Flutter as CocoaPods podspec by adding
the flag `--cocoapods`. This produces a `Flutter.podspec`
instead of an engine Flutter.xcframework.
The App.xcframework and plugin frameworks are generated
as described in Option B.
To generate the `Flutter.podspec` and frameworks, run the following
from the command line in the root of your Flutter module:
```terminal
flutter build ios-framework --cocoapods --output=some/path/MyApp/Flutter/
```
```text
some/path/MyApp/
βββ Flutter/
βββ Debug/
β βββ Flutter.podspec
βΒ Β βββ App.xcframework
βΒ Β βββ FlutterPluginRegistrant.xcframework
βΒ Β βββ example_plugin.xcframework (each plugin with iOS platform code is a separate framework)
βββ Profile/
β βββ Flutter.podspec
β βββ App.xcframework
β βββ FlutterPluginRegistrant.xcframework
β βββ example_plugin.xcframework
βββ Release/
βββ Flutter.podspec
βββ App.xcframework
βββ FlutterPluginRegistrant.xcframework
βββ example_plugin.xcframework
```
Host apps using CocoaPods can add Flutter to their Podfile:
<?code-excerpt title="MyApp/Podfile"?>
```ruby
pod 'Flutter', :podspec => 'some/path/MyApp/Flutter/[build mode]/Flutter.podspec'
```
{{site.alert.note}}
You must hard code the `[build mode]` value.
For example, use `Debug` if you need to use
`flutter attach` and `Release` when you're ready to ship.
{{site.alert.end}}
Link and embed the generated App.xcframework,
FlutterPluginRegistrant.xcframework,
and any plugin frameworks into your existing application
as described in Option B.
## Local Network Privacy Permissions
On iOS 14 and higher, enable the Dart multicast DNS
service in the Debug version of your app
to add [debugging functionalities such as hot-reload and
DevTools][] via `flutter attach`.
{{site.alert.warning}}
This service must not be enabled in the **Release**
version of your app, or you might experience App Store rejections.
{{site.alert.end}}
One way to do this is to maintain a separate copy of your app's Info.plist per
build configuration. The following instructions assume
the default **Debug** and **Release**.
Adjust the names as needed depending on your app's build configurations.
<ol markdown="1">
<li markdown="1">
Rename your app's **Info.plist** to **Info-Debug.plist**.
Make a copy of it called **Info-Release.plist** and add it to your Xcode project.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/info-plists.png" alt="Info-Debug.plist and Info-Release.plist in Xcode" %}
</li>
<li markdown="1">
In **Info-Debug.plist** _only_ add the key `NSBonjourServices`
and set the value to an array with the string `_dartVmService._tcp`.
Note Xcode will display this as "Bonjour services".
Optionally, add the key `NSLocalNetworkUsageDescription` set to your
desired customized permission dialog text.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/debug-plist.png" alt="Info-Debug.plist with additional keys" %}
</li>
<li markdown="1">
In your target's build settings, change the **Info.plist File**
(`INFOPLIST_FILE`) setting path from `path/to/Info.plist` to `path/to/Info-$(CONFIGURATION).plist`.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/set-plist-build-setting.png" alt="Set INFOPLIST_FILE build setting" %}
This will resolve to the path **Info-Debug.plist** in **Debug** and
**Info-Release.plist** in **Release**.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/plist-build-setting.png" alt="Resolved INFOPLIST_FILE build setting" %}
Alternatively, you can explicitly set the **Debug** path to **Info-Debug.plist**
and the **Release** path to **Info-Release.plist**.
</li>
<li markdown="1">
If the **Info-Release.plist** copy is in your target's **Build Settings > Build Phases > Copy Bundle**
Resources build phase, remove it.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/copy-bundle.png" alt="Copy Bundle build phase" %}
The first Flutter screen loaded by your Debug app will now prompt
for local network permission. The permission can also be allowed by enabling
**Settings > Privacy > Local Network > Your App**.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/network-permission.png" alt="Local network permission dialog" %}
</li>
</ol>
## Apple Silicon (`arm64` Macs)
On an Apple Silicon (M1) Mac, the host app builds for an `arm64` simulator.
While Flutter supports `arm64` simulators, some plugins might not. If you use
one of these plugins, you might see a compilation error like **Undefined symbols
for architecture arm64** and you must exclude `arm64` from the simulator
architectures in your host app.
In your host app target, find the **Excluded Architectures** (`EXCLUDED_ARCHS`) build setting.
Click the right arrow disclosure indicator icon to expand the available build configurations.
Hover over **Debug** and click the plus icon. Change **Any SDK** to **Any iOS Simulator SDK**.
Add `arm64` to the build settings value.
{% include docs/app-figure.md image="development/add-to-app/ios/project-setup/excluded-archs.png" alt="Set conditional EXCLUDED_ARCHS build setting" %}
When done correctly, Xcode will add `"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;` to your **project.pbxproj** file.
Repeat for any iOS unit test targets.
## Development
You can now [add a Flutter screen][] to your existing application.
[add_to_app code samples]: {{site.repo.samples}}/tree/main/add_to_app
[add a Flutter screen]: /add-to-app/ios/add-flutter-screen
[Android Studio/IntelliJ]: /tools/android-studio
[build modes of Flutter]: /testing/build-modes
[embed the frameworks]: /add-to-app/ios/project-setup#embed-the-frameworks
[CocoaPods]: https://cocoapods.org/
[CocoaPods getting started guide]: https://guides.cocoapods.org/using/using-cocoapods.html
[debugging functionalities such as hot-reload and DevTools]: /add-to-app/debugging
[Embed with CocoaPods and Flutter tools]: #option-a---embed-with-cocoapods-and-the-flutter-sdk
[increases your app size]: /resources/faq#how-big-is-the-flutter-engine
[macOS system requirements for Flutter]: /get-started/install/macos/mobile-ios#verify-system-requirements
[On iOS 14 and higher]: {{site.apple-dev}}/news/?id=0oi77447
[Podfile target]: https://guides.cocoapods.org/syntax/podfile.html#target
[static or dynamic frameworks]: {{site.so}}/questions/32591878/ios-is-it-a-static-or-a-dynamic-framework
[VS Code]: /tools/vs-code
[XCFrameworks]: {{site.apple-dev}}/documentation/xcode_release_notes/xcode_11_release_notes
[Xcode installed]: /get-started/install/macos/mobile-ios#configure-xcode
[News Feed app]: https://github.com/flutter/put-flutter-to-work/tree/022208184ec2623af2d113d13d90e8e1ce722365
[Debugging your add-to-app module]: /add-to-app/debugging/
| website/src/add-to-app/ios/project-setup.md/0 | {
"file_path": "website/src/add-to-app/ios/project-setup.md",
"repo_id": "website",
"token_count": 5683
} | 1,221 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="content" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="407px" height="739.32px" viewBox="0 0 407 739.32" enable-background="new 0 0 407 739.32" xml:space="preserve">
<g>
<g enable-background="new ">
<path fill="#FFFFFF" d="M35.92,642.75h52.6v10.3h-41.9v31.1h37.8v10.2h-37.8v39.4h-10.7V642.75z"/>
<path fill="#FFFFFF" d="M101.22,642.75h10.8v90.9h-10.8V642.75z"/>
<path fill="#FFFFFF" d="M133.62,728.85c-4.1-4.6-6.2-11-6.2-19.2v-40.8h10.8v39.1c0,6.2,1.4,10.7,4.2,13.6
c2.8,2.9,6.6,4.3,11.3,4.3c3.6,0,6.9-1,9.7-2.9s5-4.5,6.6-7.6s2.3-6.4,2.3-9.9v-36.6h10.8v64.8h-10.3v-9.4h-0.5
c-1.8,3.2-4.6,5.9-8.5,8.1c-3.9,2.2-8,3.3-12.4,3.3C143.72,735.65,137.72,733.45,133.62,728.85z"/>
<path fill="#FFFFFF" d="M217.42,734.45c-2.2-0.9-4.1-2-5.7-3.5c-1.7-1.6-3-3.5-3.8-5.7s-1.3-4.8-1.3-7.9v-38.7h-11.3v-9.8h11.3
v-18.3h10.8v18.3h15.7v9.8h-15.7v36.1c0,3.6,0.7,6.3,2,8c1.6,1.9,3.9,2.9,7,2.9c2.5,0,4.8-0.7,7.1-2.2v10.5
c-1.3,0.6-2.6,1-3.9,1.3c-1.3,0.3-3,0.4-5,0.4C222.12,735.65,219.72,735.25,217.42,734.45z"/>
<path fill="#FFFFFF" d="M263.32,734.45c-2.2-0.9-4.1-2-5.7-3.5c-1.7-1.6-3-3.5-3.8-5.7s-1.3-4.8-1.3-7.9v-38.7h-11.3v-9.8h11.3
v-18.3h10.8v18.3h15.7v9.8h-15.7v36.1c0,3.6,0.7,6.3,2,8c1.6,1.9,3.9,2.9,7,2.9c2.5,0,4.8-0.7,7.1-2.2v10.5
c-1.3,0.6-2.6,1-3.9,1.3c-1.3,0.3-3,0.4-5,0.4C268.02,735.65,265.52,735.25,263.32,734.45z"/>
<path fill="#FFFFFF" d="M301.62,731.25c-4.9-3-8.7-7-11.5-12.3c-2.8-5.2-4.1-11.1-4.1-17.6c0-6.3,1.3-12,3.9-17.3
c2.6-5.2,6.2-9.4,11-12.6c4.7-3.1,10.2-4.7,16.5-4.7s11.9,1.4,16.5,4.3c4.7,2.8,8.2,6.8,10.7,11.7c2.5,5,3.7,10.7,3.7,17.1
c0,1.3-0.1,2.4-0.4,3.3h-51.2c0.3,4.9,1.4,9.1,3.6,12.4c2.1,3.4,4.8,5.9,8.1,7.6c3.3,1.7,6.7,2.5,10.2,2.5
c8.3,0,14.7-3.9,19.2-11.7l9.1,4.4c-2.8,5.2-6.6,9.4-11.4,12.4c-4.8,3-10.6,4.6-17.3,4.6
C312.02,735.65,306.52,734.25,301.62,731.25z M336.92,694.45c-0.2-2.7-0.9-5.4-2.3-8.1c-1.4-2.7-3.5-5-6.4-6.9s-6.6-2.8-11-2.8
c-5.1,0-9.4,1.6-12.9,4.9c-3.5,3.3-5.8,7.6-6.9,12.9L336.92,694.45L336.92,694.45z"/>
<path fill="#FFFFFF" d="M360.92,668.85h10.3v10.4h0.5c1.3-3.6,3.7-6.5,7.4-8.9c3.6-2.4,7.4-3.6,11.4-3.6c3,0,5.5,0.5,7.6,1.4v11.6
c-2.7-1.4-5.8-2-9.1-2c-3.1,0-6,0.9-8.6,2.7s-4.7,4.2-6.3,7.2s-2.3,6.3-2.3,9.7v36.3h-10.8v-64.8H360.92z"/>
</g>
<g>
<g>
<g>
<defs>
<path id="SVGID_1_" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77l134.34-134.31
H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_2_)">
<g>
<polygon fill="#39CEFD" points="404.98,233.93 404.98,233.93 404.98,233.93 251.48,233.93 117.17,368.28 193.9,445.01
"/>
</g>
</g>
</g>
<g>
<defs>
<path id="SVGID_3_" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77l134.34-134.31
H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" overflow="visible"/>
</clipPath>
<polygon clip-path="url(#SVGID_4_)" fill="#39CEFD" points="78.78,329.89 2.02,253.13 251.48,3.66 404.98,3.66 "/>
</g>
<g>
<defs>
<path id="SVGID_5_" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77l134.34-134.31
H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</defs>
<clipPath id="SVGID_6_">
<use xlink:href="#SVGID_5_" overflow="visible"/>
</clipPath>
<polygon clip-path="url(#SVGID_6_)" fill="#03569B" points="193.9,445.01 251.48,502.59 404.98,502.59 404.98,502.59
270.67,368.28 "/>
</g>
<g>
<defs>
<path id="SVGID_7_" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77l134.34-134.31
H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</defs>
<clipPath id="SVGID_8_">
<use xlink:href="#SVGID_7_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="7711.1265" y1="-3084.606" x2="7939.8066" y2="-2855.9255" gradientTransform="matrix(0.25 0 0 -0.25 -1711.4872 -311.3079)">
<stop offset="0" style="stop-color:#1A237E;stop-opacity:0.4"/>
<stop offset="1" style="stop-color:#1A237E;stop-opacity:0"/>
</linearGradient>
<polygon clip-path="url(#SVGID_8_)" fill="url(#SVGID_9_)" points="193.9,445.01 307.75,405.61 270.67,368.28 "/>
</g>
<g>
<defs>
<path id="SVGID_10_" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77l134.34-134.31
H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</defs>
<clipPath id="SVGID_11_">
<use xlink:href="#SVGID_10_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_11_)">
<rect x="139.64" y="313.99" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -203.6034 244.9743)" fill="#16B9FD" width="108.54" height="108.54"/>
</g>
</g>
</g>
<radialGradient id="SVGID_12_" cx="6899.374" cy="-1395.9579" r="2441.6196" gradientTransform="matrix(0.25 0 0 -0.25 -1711.4872 -311.3079)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.1"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</radialGradient>
<path fill="url(#SVGID_12_)" d="M404.98,233.93L270.67,368.25l134.31,134.34l0,0h-153.5l-57.57-57.57l0,0l-76.77-76.77
l134.34-134.31H404.98L404.98,233.93L404.98,233.93z M251.48,3.66L2.02,253.13l76.77,76.77L404.98,3.66H251.48z"/>
</g>
</g>
</svg>
| website/src/assets/images/branding/flutter/logo+text/vertical/white.svg/0 | {
"file_path": "website/src/assets/images/branding/flutter/logo+text/vertical/white.svg",
"repo_id": "website",
"token_count": 3951
} | 1,222 |
<svg xmlns="http://www.w3.org/2000/svg">
<symbol id="youtube" viewBox="0 0 192 192" fill="currentColor">
<path d="M78 69.831v52.338L124 96Zm102.322 68.806c-2.024 7.622-7.988 13.624-15.56 15.661C151.037 158 96 158 96 158s-55.037 0-68.762-3.702c-7.572-2.037-13.536-8.039-15.56-15.66C8 124.822 8 96 8 96s0-28.822 3.678-42.637c2.024-7.622 7.988-13.624 15.56-15.662 13.725-3.7 68.762-3.7 68.762-3.7s55.037 0 68.762 3.7c7.572 2.038 13.536 8.04 15.56 15.662C184 67.178 184 96 184 96s0 28.823-3.678 42.637"/>
</symbol>
</svg>
| website/src/assets/images/social/youtube.svg/0 | {
"file_path": "website/src/assets/images/social/youtube.svg",
"repo_id": "website",
"token_count": 295
} | 1,223 |
---
title: Animation
description: A catalog of recipes for adding animations to your Flutter app.
---
{% include docs/cookbook-group-index.md %}
| website/src/cookbook/animation/index.md/0 | {
"file_path": "website/src/cookbook/animation/index.md",
"repo_id": "website",
"token_count": 41
} | 1,224 |
---
title: Effects
description: A catalog of recipes for adding effects to your Flutter app.
---
{% include docs/cookbook-group-index.md %}
| website/src/cookbook/effects/index.md/0 | {
"file_path": "website/src/cookbook/effects/index.md",
"repo_id": "website",
"token_count": 41
} | 1,225 |
---
title: Implement swipe to dismiss
description: How to implement swiping to dismiss or delete.
diff2html: true
js:
- defer: true
url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js
---
<?code-excerpt path-base="cookbook/gestures/dismissible"?>
The "swipe to dismiss" pattern is common in many mobile apps.
For example, when writing an email app,
you might want to allow a user to swipe away
email messages to delete them from a list.
Flutter makes this task easy by providing the
[`Dismissible`][] widget.
Learn how to implement swipe to dismiss with the following steps:
1. Create a list of items.
2. Wrap each item in a `Dismissible` widget.
3. Provide "leave behind" indicators.
## 1. Create a list of items
First, create a list of items. For detailed
instructions on how to create a list,
follow the [Working with long lists][] recipe.
### Create a data source
In this example,
you want 20 sample items to work with.
To keep it simple, generate a list of strings.
<?code-excerpt "lib/main.dart (Items)"?>
```dart
final items = List<String>.generate(20, (i) => 'Item ${i + 1}');
```
### Convert the data source into a list
Display each item in the list on screen. Users won't
be able to swipe these items away just yet.
<?code-excerpt "lib/step1.dart (ListView)" replace="/^body: //g;/,$//g"?>
```dart
ListView.builder(
itemCount: items.length,
itemBuilder: (context, index) {
return ListTile(
title: Text(items[index]),
);
},
)
```
## 2. Wrap each item in a Dismissible widget
In this step,
give users the ability to swipe an item off the list by using the
[`Dismissible`][] widget.
After the user has swiped away the item,
remove the item from the list and display a snackbar.
In a real app, you might need to perform more complex logic,
such as removing the item from a web service or database.
Update the `itemBuilder()` function to return a `Dismissible` widget:
<?code-excerpt "lib/step2.dart (Dismissible)"?>
```dart
itemBuilder: (context, index) {
final item = items[index];
return Dismissible(
// Each Dismissible must contain a Key. Keys allow Flutter to
// uniquely identify widgets.
key: Key(item),
// Provide a function that tells the app
// what to do after an item has been swiped away.
onDismissed: (direction) {
// Remove the item from the data source.
setState(() {
items.removeAt(index);
});
// Then show a snackbar.
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text('$item dismissed')));
},
child: ListTile(
title: Text(item),
),
);
},
```
## 3. Provide "leave behind" indicators
As it stands,
the app allows users to swipe items off the list, but it doesn't
give a visual indication of what happens when they do.
To provide a cue that items are removed,
display a "leave behind" indicator as they
swipe the item off the screen. In this case,
the indicator is a red background.
To add the indicator,
provide a `background` parameter to the `Dismissible`.
<?code-excerpt "lib/{step2,main}.dart (Dismissible)"?>
```diff
--- lib/step2.dart (Dismissible)
+++ lib/main.dart (Dismissible)
@@ -16,6 +16,8 @@
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text('$item dismissed')));
},
+ // Show a red background as the item is swiped away.
+ background: Container(color: Colors.red),
child: ListTile(
title: Text(item),
),
```
## Interactive example
<?code-excerpt "lib/main.dart"?>
```run-dartpad:theme-light:mode-flutter:run-true:width-100%:height-600px:split-60:ga_id-interactive_example
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
// MyApp is a StatefulWidget. This allows updating the state of the
// widget when an item is removed.
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
MyAppState createState() {
return MyAppState();
}
}
class MyAppState extends State<MyApp> {
final items = List<String>.generate(20, (i) => 'Item ${i + 1}');
@override
Widget build(BuildContext context) {
const title = 'Dismissing Items';
return MaterialApp(
title: title,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: Scaffold(
appBar: AppBar(
title: const Text(title),
),
body: ListView.builder(
itemCount: items.length,
itemBuilder: (context, index) {
final item = items[index];
return Dismissible(
// Each Dismissible must contain a Key. Keys allow Flutter to
// uniquely identify widgets.
key: Key(item),
// Provide a function that tells the app
// what to do after an item has been swiped away.
onDismissed: (direction) {
// Remove the item from the data source.
setState(() {
items.removeAt(index);
});
// Then show a snackbar.
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text('$item dismissed')));
},
// Show a red background as the item is swiped away.
background: Container(color: Colors.red),
child: ListTile(
title: Text(item),
),
);
},
),
),
);
}
}
```
<noscript>
<img src="/assets/images/docs/cookbook/dismissible.gif" alt="Dismissible Demo" class="site-mobile-screenshot" />
</noscript>
[`Dismissible`]: {{site.api}}/flutter/widgets/Dismissible-class.html
[Working with long lists]: /cookbook/lists/long-lists
| website/src/cookbook/gestures/dismissible.md/0 | {
"file_path": "website/src/cookbook/gestures/dismissible.md",
"repo_id": "website",
"token_count": 2213
} | 1,226 |
---
title: Create lists with different types of items
description: How to implement a list that contains different types of assets.
js:
- defer: true
url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js
---
<?code-excerpt path-base="cookbook/lists/mixed_list/"?>
You might need to create lists that display different types of content.
For example, you might be working on a list that shows a heading
followed by a few items related to the heading, followed by another heading,
and so on.
Here's how you can create such a structure with Flutter:
1. Create a data source with different types of items.
2. Convert the data source into a list of widgets.
## 1. Create a data source with different types of items
### Types of items
To represent different types of items in a list, define
a class for each type of item.
In this example, create an app that shows a header followed by five
messages. Therefore, create three classes: `ListItem`, `HeadingItem`,
and `MessageItem`.
<?code-excerpt "lib/main.dart (ListItem)"?>
```dart
/// The base class for the different types of items the list can contain.
abstract class ListItem {
/// The title line to show in a list item.
Widget buildTitle(BuildContext context);
/// The subtitle line, if any, to show in a list item.
Widget buildSubtitle(BuildContext context);
}
/// A ListItem that contains data to display a heading.
class HeadingItem implements ListItem {
final String heading;
HeadingItem(this.heading);
@override
Widget buildTitle(BuildContext context) {
return Text(
heading,
style: Theme.of(context).textTheme.headlineSmall,
);
}
@override
Widget buildSubtitle(BuildContext context) => const SizedBox.shrink();
}
/// A ListItem that contains data to display a message.
class MessageItem implements ListItem {
final String sender;
final String body;
MessageItem(this.sender, this.body);
@override
Widget buildTitle(BuildContext context) => Text(sender);
@override
Widget buildSubtitle(BuildContext context) => Text(body);
}
```
### Create a list of items
Most of the time, you would fetch data from the internet or a local
database and convert that data into a list of items.
For this example, generate a list of items to work with. The list
contains a header followed by five messages. Each message has one
of 3 types: `ListItem`, `HeadingItem`, or `MessageItem`.
<?code-excerpt "lib/main.dart (Items)" replace="/^items:/final items =/g;/,$/;/g"?>
```dart
final items = List<ListItem>.generate(
1000,
(i) => i % 6 == 0
? HeadingItem('Heading $i')
: MessageItem('Sender $i', 'Message body $i'),
);
```
## 2. Convert the data source into a list of widgets
To convert each item into a widget,
use the [`ListView.builder()`][] constructor.
In general, provide a builder function that checks for what type
of item you're dealing with, and returns the appropriate widget
for that type of item.
<?code-excerpt "lib/main.dart (builder)" replace="/^body: //g;/,$//g"?>
```dart
ListView.builder(
// Let the ListView know how many items it needs to build.
itemCount: items.length,
// Provide a builder function. This is where the magic happens.
// Convert each item into a widget based on the type of item it is.
itemBuilder: (context, index) {
final item = items[index];
return ListTile(
title: item.buildTitle(context),
subtitle: item.buildSubtitle(context),
);
},
)
```
## Interactive example
<?code-excerpt "lib/main.dart"?>
```run-dartpad:theme-light:mode-flutter:run-true:width-100%:height-600px:split-60:ga_id-interactive_example
import 'package:flutter/material.dart';
void main() {
runApp(
MyApp(
items: List<ListItem>.generate(
1000,
(i) => i % 6 == 0
? HeadingItem('Heading $i')
: MessageItem('Sender $i', 'Message body $i'),
),
),
);
}
class MyApp extends StatelessWidget {
final List<ListItem> items;
const MyApp({super.key, required this.items});
@override
Widget build(BuildContext context) {
const title = 'Mixed List';
return MaterialApp(
title: title,
home: Scaffold(
appBar: AppBar(
title: const Text(title),
),
body: ListView.builder(
// Let the ListView know how many items it needs to build.
itemCount: items.length,
// Provide a builder function. This is where the magic happens.
// Convert each item into a widget based on the type of item it is.
itemBuilder: (context, index) {
final item = items[index];
return ListTile(
title: item.buildTitle(context),
subtitle: item.buildSubtitle(context),
);
},
),
),
);
}
}
/// The base class for the different types of items the list can contain.
abstract class ListItem {
/// The title line to show in a list item.
Widget buildTitle(BuildContext context);
/// The subtitle line, if any, to show in a list item.
Widget buildSubtitle(BuildContext context);
}
/// A ListItem that contains data to display a heading.
class HeadingItem implements ListItem {
final String heading;
HeadingItem(this.heading);
@override
Widget buildTitle(BuildContext context) {
return Text(
heading,
style: Theme.of(context).textTheme.headlineSmall,
);
}
@override
Widget buildSubtitle(BuildContext context) => const SizedBox.shrink();
}
/// A ListItem that contains data to display a message.
class MessageItem implements ListItem {
final String sender;
final String body;
MessageItem(this.sender, this.body);
@override
Widget buildTitle(BuildContext context) => Text(sender);
@override
Widget buildSubtitle(BuildContext context) => Text(body);
}
```
<noscript>
<img src="/assets/images/docs/cookbook/mixed-list.png" alt="Mixed list demo" class="site-mobile-screenshot" />
</noscript>
[`ListView.builder()`]: {{site.api}}/flutter/widgets/ListView/ListView.builder.html
| website/src/cookbook/lists/mixed-list.md/0 | {
"file_path": "website/src/cookbook/lists/mixed-list.md",
"repo_id": "website",
"token_count": 2022
} | 1,227 |
---
title: Fetch data from the internet
description: How to fetch data over the internet using the http package.
---
<?code-excerpt path-base="cookbook/networking/fetch_data/"?>
Fetching data from the internet is necessary for most apps.
Luckily, Dart and Flutter provide tools, such as the
`http` package, for this type of work.
{{site.alert.note}}
You should avoid directly using `dart:io` or `dart:html`
to make HTTP requests.
Those libraries are platform-dependent
and tied to a single implementation.
{{site.alert.end}}
This recipe uses the following steps:
1. Add the `http` package.
2. Make a network request using the `http` package.
3. Convert the response into a custom Dart object.
4. Fetch and display the data with Flutter.
## 1. Add the `http` package
The [`http`][] package provides the
simplest way to fetch data from the internet.
To add the `http` package as a dependency,
run `flutter pub add`:
```terminal
$ flutter pub add http
```
Import the http package.
<?code-excerpt "lib/main.dart (Http)"?>
```dart
import 'package:http/http.dart' as http;
```
If you are deploying to Android, edit your `AndroidManifest.xml` file to
add the Internet permission.
```xml
<!-- Required to fetch data from the internet. -->
<uses-permission android:name="android.permission.INTERNET" />
```
Likewise, if you are deploying to macOS, edit your
`macos/Runner/DebugProfile.entitlements` and `macos/Runner/Release.entitlements`
files to include the network client entitlement.
```xml
<!-- Required to fetch data from the internet. -->
<key>com.apple.security.network.client</key>
<true/>
```
## 2. Make a network request
This recipe covers how to fetch a sample album from the
[JSONPlaceholder][] using the [`http.get()`][] method.
<?code-excerpt "lib/main_step1.dart (fetchAlbum)"?>
```dart
Future<http.Response> fetchAlbum() {
return http.get(Uri.parse('https://jsonplaceholder.typicode.com/albums/1'));
}
```
The `http.get()` method returns a `Future` that contains a `Response`.
* [`Future`][] is a core Dart class for working with
async operations. A Future object represents a potential
value or error that will be available at some time in the future.
* The `http.Response` class contains the data received from a successful
http call.
## 3. Convert the response into a custom Dart object
While it's easy to make a network request, working with a raw
`Future<http.Response>` isn't very convenient.
To make your life easier,
convert the `http.Response` into a Dart object.
### Create an `Album` class
First, create an `Album` class that contains the data from the
network request. It includes a factory constructor that
creates an `Album` from JSON.
Converting JSON using [pattern matching][] is only one option.
For more information, see the full article on
[JSON and serialization][].
<?code-excerpt "lib/main.dart (Album)"?>
```dart
class Album {
final int userId;
final int id;
final String title;
const Album({
required this.userId,
required this.id,
required this.title,
});
factory Album.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
'userId': int userId,
'id': int id,
'title': String title,
} =>
Album(
userId: userId,
id: id,
title: title,
),
_ => throw const FormatException('Failed to load album.'),
};
}
}
```
### Convert the `http.Response` to an `Album`
Now, use the following steps to update the `fetchAlbum()`
function to return a `Future<Album>`:
1. Convert the response body into a JSON `Map` with
the `dart:convert` package.
2. If the server does return an OK response with a status code of
200, then convert the JSON `Map` into an `Album`
using the `fromJson()` factory method.
3. If the server does not return an OK response with a status code of 200,
then throw an exception.
(Even in the case of a "404 Not Found" server response,
throw an exception. Do not return `null`.
This is important when examining
the data in `snapshot`, as shown below.)
<?code-excerpt "lib/main.dart (fetchAlbum)"?>
```dart
Future<Album> fetchAlbum() async {
final response = await http
.get(Uri.parse('https://jsonplaceholder.typicode.com/albums/1'));
if (response.statusCode == 200) {
// If the server did return a 200 OK response,
// then parse the JSON.
return Album.fromJson(jsonDecode(response.body) as Map<String, dynamic>);
} else {
// If the server did not return a 200 OK response,
// then throw an exception.
throw Exception('Failed to load album');
}
}
```
Hooray!
Now you've got a function that fetches an album from the internet.
## 4. Fetch the data
Call the `fetchAlbum()` method in either the
[`initState()`][] or [`didChangeDependencies()`][]
methods.
The `initState()` method is called exactly once and then never again.
If you want to have the option of reloading the API in response to an
[`InheritedWidget`][] changing, put the call into the
`didChangeDependencies()` method.
See [`State`][] for more details.
<?code-excerpt "lib/main.dart (State)"?>
```dart
class _MyAppState extends State<MyApp> {
late Future<Album> futureAlbum;
@override
void initState() {
super.initState();
futureAlbum = fetchAlbum();
}
// Β·Β·Β·
}
```
This Future is used in the next step.
## 5. Display the data
To display the data on screen, use the
[`FutureBuilder`][] widget.
The `FutureBuilder` widget comes with Flutter and
makes it easy to work with asynchronous data sources.
You must provide two parameters:
1. The `Future` you want to work with.
In this case, the future returned from
the `fetchAlbum()` function.
2. A `builder` function that tells Flutter
what to render, depending on the
state of the `Future`: loading, success, or error.
Note that `snapshot.hasData` only returns `true`
when the snapshot contains a non-null data value.
Because `fetchAlbum` can only return non-null values,
the function should throw an exception
even in the case of a "404 Not Found" server response.
Throwing an exception sets the `snapshot.hasError` to `true`
which can be used to display an error message.
Otherwise, the spinner will be displayed.
<?code-excerpt "lib/main.dart (FutureBuilder)" replace="/^child: //g;/,$//g"?>
```dart
FutureBuilder<Album>(
future: futureAlbum,
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text(snapshot.data!.title);
} else if (snapshot.hasError) {
return Text('${snapshot.error}');
}
// By default, show a loading spinner.
return const CircularProgressIndicator();
},
)
```
## Why is fetchAlbum() called in initState()?
Although it's convenient,
it's not recommended to put an API call in a `build()` method.
Flutter calls the `build()` method every time it needs
to change anything in the view,
and this happens surprisingly often.
The `fetchAlbum()` method, if placed inside `build()`, is repeatedly
called on each rebuild causing the app to slow down.
Storing the `fetchAlbum()` result in a state variable ensures that
the `Future` is executed only once and then cached for subsequent
rebuilds.
## Testing
For information on how to test this functionality,
see the following recipes:
* [Introduction to unit testing][]
* [Mock dependencies using Mockito][]
## Complete example
<?code-excerpt "lib/main.dart"?>
```dart
import 'dart:async';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
Future<Album> fetchAlbum() async {
final response = await http
.get(Uri.parse('https://jsonplaceholder.typicode.com/albums/1'));
if (response.statusCode == 200) {
// If the server did return a 200 OK response,
// then parse the JSON.
return Album.fromJson(jsonDecode(response.body) as Map<String, dynamic>);
} else {
// If the server did not return a 200 OK response,
// then throw an exception.
throw Exception('Failed to load album');
}
}
class Album {
final int userId;
final int id;
final String title;
const Album({
required this.userId,
required this.id,
required this.title,
});
factory Album.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
'userId': int userId,
'id': int id,
'title': String title,
} =>
Album(
userId: userId,
id: id,
title: title,
),
_ => throw const FormatException('Failed to load album.'),
};
}
}
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late Future<Album> futureAlbum;
@override
void initState() {
super.initState();
futureAlbum = fetchAlbum();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Fetch Data Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: Scaffold(
appBar: AppBar(
title: const Text('Fetch Data Example'),
),
body: Center(
child: FutureBuilder<Album>(
future: futureAlbum,
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text(snapshot.data!.title);
} else if (snapshot.hasError) {
return Text('${snapshot.error}');
}
// By default, show a loading spinner.
return const CircularProgressIndicator();
},
),
),
),
);
}
}
```
[`didChangeDependencies()`]: {{site.api}}/flutter/widgets/State/didChangeDependencies.html
[`Future`]: {{site.api}}/flutter/dart-async/Future-class.html
[`FutureBuilder`]: {{site.api}}/flutter/widgets/FutureBuilder-class.html
[JSONPlaceholder]: https://jsonplaceholder.typicode.com/
[`http`]: {{site.pub-pkg}}/http
[`http.get()`]: {{site.pub-api}}/http/latest/http/get.html
[`http` package]: {{site.pub-pkg}}/http/install
[`InheritedWidget`]: {{site.api}}/flutter/widgets/InheritedWidget-class.html
[Introduction to unit testing]: /cookbook/testing/unit/introduction
[`initState()`]: {{site.api}}/flutter/widgets/State/initState.html
[Mock dependencies using Mockito]: /cookbook/testing/unit/mocking
[JSON and serialization]: /data-and-backend/serialization/json
[pattern matching]: {{site.dart-site}}/language/patterns
[`State`]: {{site.api}}/flutter/widgets/State-class.html
| website/src/cookbook/networking/fetch-data.md/0 | {
"file_path": "website/src/cookbook/networking/fetch-data.md",
"repo_id": "website",
"token_count": 3706
} | 1,228 |
---
title: Performance profiling
description: How to profile performance for a Flutter app.
---
<?code-excerpt path-base="cookbook/testing/integration/profiling/"?>
When it comes to mobile apps, performance is critical to user experience.
Users expect apps to have smooth scrolling and meaningful animations free of
stuttering or skipped frames, known as "jank." How to ensure that your app
is free of jank on a wide variety of devices?
There are two options: first, manually test the app on different devices.
While that approach might work for a smaller app, it becomes more
cumbersome as an app grows in size. Alternatively, run an integration
test that performs a specific task and records a performance timeline.
Then, examine the results to determine whether a specific section of
the app needs to be improved.
In this recipe, learn how to write a test that records a performance
timeline while performing a specific task and saves a summary of the
results to a local file.
{{site.alert.note}}
Recording performance timelines isn't supported on web.
For performance profiling on web, see
[Debugging performance for web apps][]
{{site.alert.end}}
This recipe uses the following steps:
1. Write a test that scrolls through a list of items.
2. Record the performance of the app.
3. Save the results to disk.
4. Run the test.
5. Review the results.
### 1. Write a test that scrolls through a list of items
In this recipe, record the performance of an app as it scrolls through a
list of items. To focus on performance profiling, this recipe builds
on the [Scrolling][] recipe in widget tests.
Follow the instructions in that recipe to create an app and write a test to
verify that everything works as expected.
### 2. Record the performance of the app
Next, record the performance of the app as it scrolls through the
list. Perform this task using the [`traceAction()`][]
method provided by the [`IntegrationTestWidgetsFlutterBinding`][] class.
This method runs the provided function and records a [`Timeline`][]
with detailed information about the performance of the app. This example
provides a function that scrolls through the list of items,
ensuring that a specific item is displayed. When the function completes,
the `traceAction()` creates a report data `Map` that contains the `Timeline`.
Specify the `reportKey` when running more than one `traceAction`.
By default all `Timelines` are stored with the key `timeline`,
in this example the `reportKey` is changed to `scrolling_timeline`.
<?code-excerpt "integration_test/scrolling_test.dart (traceAction)"?>
```dart
await binding.traceAction(
() async {
// Scroll until the item to be found appears.
await tester.scrollUntilVisible(
itemFinder,
500.0,
scrollable: listFinder,
);
},
reportKey: 'scrolling_timeline',
);
```
### 3. Save the results to disk
Now that you've captured a performance timeline, you need a way to review it.
The `Timeline` object provides detailed information about all of the events
that took place, but it doesn't provide a convenient way to review the results.
Therefore, convert the `Timeline` into a [`TimelineSummary`][].
The `TimelineSummary` can perform two tasks that make it easier
to review the results:
1. Writing a json document on disk that summarizes the data contained
within the `Timeline`. This summary includes information about the
number of skipped frames, slowest build times, and more.
2. Saving the complete `Timeline` as a json file on disk.
This file can be opened with the Chrome browser's
tracing tools found at `chrome://tracing`.
To capture the results, create a file named `perf_driver.dart`
in the `test_driver` folder and add the following code:
<?code-excerpt "test_driver/perf_driver.dart"?>
```dart
import 'package:flutter_driver/flutter_driver.dart' as driver;
import 'package:integration_test/integration_test_driver.dart';
Future<void> main() {
return integrationDriver(
responseDataCallback: (data) async {
if (data != null) {
final timeline = driver.Timeline.fromJson(
data['scrolling_timeline'] as Map<String, dynamic>,
);
// Convert the Timeline into a TimelineSummary that's easier to
// read and understand.
final summary = driver.TimelineSummary.summarize(timeline);
// Then, write the entire timeline to disk in a json format.
// This file can be opened in the Chrome browser's tracing tools
// found by navigating to chrome://tracing.
// Optionally, save the summary to disk by setting includeSummary
// to true
await summary.writeTimelineToFile(
'scrolling_timeline',
pretty: true,
includeSummary: true,
);
}
},
);
}
```
The `integrationDriver` function has a `responseDataCallback`
which you can customize.
By default, it writes the results to the `integration_response_data.json` file,
but you can customize it to generate a summary like in this example.
### 4. Run the test
After configuring the test to capture a performance `Timeline` and save a
summary of the results to disk, run the test with the following command:
```
flutter drive \
--driver=test_driver/perf_driver.dart \
--target=integration_test/scrolling_test.dart \
--profile
```
The `--profile` option means to compile the app for the "profile mode"
rather than the "debug mode", so that the benchmark result is closer to
what will be experienced by end users.
{{site.alert.note}}
Run the command with `--no-dds` when running on a mobile device or emulator.
This option disables the Dart Development Service (DDS), which won't
be accessible from your computer.
{{site.alert.end}}
### 5. Review the results
After the test completes successfully, the `build` directory at the root of
the project contains two files:
1. `scrolling_summary.timeline_summary.json` contains the summary. Open
the file with any text editor to review the information contained
within. With a more advanced setup, you could save a summary every
time the test runs and create a graph of the results.
2. `scrolling_timeline.timeline.json` contains the complete timeline data.
Open the file using the Chrome browser's tracing tools found at
`chrome://tracing`. The tracing tools provide a
convenient interface for inspecting the timeline data to discover
the source of a performance issue.
#### Summary example
```json
{
"average_frame_build_time_millis": 4.2592592592592595,
"worst_frame_build_time_millis": 21.0,
"missed_frame_build_budget_count": 2,
"average_frame_rasterizer_time_millis": 5.518518518518518,
"worst_frame_rasterizer_time_millis": 51.0,
"missed_frame_rasterizer_budget_count": 10,
"frame_count": 54,
"frame_build_times": [
6874,
5019,
3638
],
"frame_rasterizer_times": [
51955,
8468,
3129
]
}
```
### Complete example
**integration_test/scrolling_test.dart**
<?code-excerpt "integration_test/scrolling_test.dart"?>
```dart
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:scrolling/main.dart';
void main() {
final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('Counter increments smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(MyApp(
items: List<String>.generate(10000, (i) => 'Item $i'),
));
final listFinder = find.byType(Scrollable);
final itemFinder = find.byKey(const ValueKey('item_50_text'));
await binding.traceAction(
() async {
// Scroll until the item to be found appears.
await tester.scrollUntilVisible(
itemFinder,
500.0,
scrollable: listFinder,
);
},
reportKey: 'scrolling_timeline',
);
});
}
```
**test_driver/perf_driver.dart**
<?code-excerpt "test_driver/perf_driver.dart"?>
```dart
import 'package:flutter_driver/flutter_driver.dart' as driver;
import 'package:integration_test/integration_test_driver.dart';
Future<void> main() {
return integrationDriver(
responseDataCallback: (data) async {
if (data != null) {
final timeline = driver.Timeline.fromJson(
data['scrolling_timeline'] as Map<String, dynamic>,
);
// Convert the Timeline into a TimelineSummary that's easier to
// read and understand.
final summary = driver.TimelineSummary.summarize(timeline);
// Then, write the entire timeline to disk in a json format.
// This file can be opened in the Chrome browser's tracing tools
// found by navigating to chrome://tracing.
// Optionally, save the summary to disk by setting includeSummary
// to true
await summary.writeTimelineToFile(
'scrolling_timeline',
pretty: true,
includeSummary: true,
);
}
},
);
}
```
[`IntegrationTestWidgetsFlutterBinding`]: {{site.api}}/flutter/package-integration_test_integration_test/IntegrationTestWidgetsFlutterBinding-class.html
[Scrolling]: /cookbook/testing/widget/scrolling
[`Timeline`]: {{site.api}}/flutter/flutter_driver/Timeline-class.html
[`TimelineSummary`]: {{site.api}}/flutter/flutter_driver/TimelineSummary-class.html
[`traceAction()`]: {{site.api}}/flutter/flutter_driver/FlutterDriver/traceAction.html
[Debugging performance for web apps]: /perf/web-performance
| website/src/cookbook/testing/integration/profiling.md/0 | {
"file_path": "website/src/cookbook/testing/integration/profiling.md",
"repo_id": "website",
"token_count": 3039
} | 1,229 |
---
title: JSON and serialization
short-title: JSON
description: How to use JSON with Flutter.
---
<?code-excerpt path-base="development/data-and-backend/json/"?>
It is hard to think of a mobile app that doesn't need to communicate with a
web server or easily store structured data at some point. When making
network-connected apps, the chances are that it needs to consume some good old
JSON, sooner or later.
This guide looks into ways of using JSON with Flutter.
It covers which JSON solution to use in different scenarios, and why.
{{site.alert.info}}
**Terminology:** _Encoding_ and _serialization_ are the same
thing—turning a data structure into a string.
_Decoding_ and _deserialization_ are the
opposite process—turning a string into a data structure.
However, _serialization_ also commonly refers to the entire process of
translating data structures to and from a more easily readable format.
To avoid confusion, this doc uses "serialization" when referring to the
overall process, and "encoding" and "decoding" when specifically
referring to those processes.
{{site.alert.end}}
## Which JSON serialization method is right for me?
This article covers two general strategies for working with JSON:
* Manual serialization
* Automated serialization using code generation
Different projects come with different complexities and use cases.
For smaller proof-of-concept projects or quick prototypes,
using code generators might be overkill.
For apps with several JSON models with more complexity,
encoding by hand can quickly become tedious, repetitive,
and lend itself to many small errors.
### Use manual serialization for smaller projects
Manual JSON decoding refers to using the built-in JSON decoder in
`dart:convert`. It involves passing the raw JSON string to the `jsonDecode()`
function, and then looking up the values you need in the resulting
`Map<String, dynamic>`.
It has no external dependencies or particular setup process,
and it's good for a quick proof of concept.
Manual decoding does not perform well when your project becomes bigger.
Writing decoding logic by hand can become hard to manage and error-prone.
If you have a typo when accessing a nonexistent JSON
field, your code throws an error during runtime.
If you do not have many JSON models in your project and are
looking to test a concept quickly,
manual serialization might be the way you want to start.
For an example of manual encoding, see
[Serializing JSON manually using dart:convert][].
{{site.alert.tip}}
For hands-on practice deserializing JSON and
taking advantage of Dart 3's new features,
check out the [Dive into Dart's patterns and records][] codelab.
{{site.alert.end}}
### Use code generation for medium to large projects
JSON serialization with code generation means having an external library
generate the encoding boilerplate for you. After some initial setup,
you run a file watcher that generates the code from your model classes.
For example, [`json_serializable`][] and [`built_value`][] are these
kinds of libraries.
This approach scales well for a larger project. No hand-written
boilerplate is needed, and typos when accessing JSON fields are caught at
compile-time. The downside with code generation is that it requires some
initial setup. Also, the generated source files might produce visual clutter
in your project navigator.
You might want to use generated code for JSON serialization when you have a
medium or a larger project. To see an example of code generation based JSON
encoding, see [Serializing JSON using code generation libraries][].
## Is there a GSON/<wbr>Jackson/<wbr>Moshi equivalent in Flutter?
The simple answer is no.
Such a library would require using runtime [reflection][], which is disabled in
Flutter. Runtime reflection interferes with [tree shaking][], which Dart has
supported for quite a long time. With tree shaking, you can "shake off" unused
code from your release builds. This optimizes the app's size significantly.
Since reflection makes all code implicitly used by default, it makes tree
shaking difficult. The tools cannot know what parts are unused at runtime, so
the redundant code is hard to strip away. App sizes cannot be easily optimized
when using reflection.
Although you cannot use runtime reflection with Flutter,
some libraries give you similarly easy-to-use APIs but are
based on code generation instead. This
approach is covered in more detail in the
[code generation libraries][] section.
<a id="manual-encoding"></a>
## Serializing JSON manually using dart:convert
Basic JSON serialization in Flutter is very simple. Flutter has a built-in
`dart:convert` library that includes a straightforward JSON encoder and
decoder.
The following sample JSON implements a simple user model.
<?code-excerpt "lib/manual/main.dart (JSON)" skip="1" take="4"?>
```json
{
"name": "John Smith",
"email": "[email protected]"
}
```
With `dart:convert`,
you can serialize this JSON model in two ways.
### Serializing JSON inline
By looking at the [`dart:convert`][] documentation,
you'll see that you can decode the JSON by calling the
`jsonDecode()` function, with the JSON string as the method argument.
<?code-excerpt "lib/manual/main.dart (manual)"?>
```dart
final user = jsonDecode(jsonString) as Map<String, dynamic>;
print('Howdy, ${user['name']}!');
print('We sent the verification link to ${user['email']}.');
```
Unfortunately, `jsonDecode()` returns a `dynamic`, meaning
that you do not know the types of the values until runtime. With this approach,
you lose most of the statically typed language features: type safety,
autocompletion and most importantly, compile-time exceptions. Your code will
become instantly more error-prone.
For example, whenever you access the `name` or `email` fields, you could quickly
introduce a typo. A typo that the compiler doesn't know about since the
JSON lives in a map structure.
### Serializing JSON inside model classes
Combat the previously mentioned problems by introducing a plain model
class, called `User` in this example. Inside the `User` class, you'll find:
* A `User.fromJson()` constructor, for constructing a new `User` instance from a
map structure.
* A `toJson()` method, which converts a `User` instance into a map.
With this approach, the _calling code_ can have type safety,
autocompletion for the `name` and `email` fields, and compile-time exceptions.
If you make typos or treat the fields as `int`s instead of `String`s,
the app won't compile, instead of crashing at runtime.
**user.dart**
<?code-excerpt "lib/manual/user.dart"?>
```dart
class User {
final String name;
final String email;
User(this.name, this.email);
User.fromJson(Map<String, dynamic> json)
: name = json['name'] as String,
email = json['email'] as String;
Map<String, dynamic> toJson() => {
'name': name,
'email': email,
};
}
```
The responsibility of the decoding logic is now moved inside the model
itself. With this new approach, you can decode a user easily.
<?code-excerpt "lib/manual/main.dart (fromJson)"?>
```dart
final userMap = jsonDecode(jsonString) as Map<String, dynamic>;
final user = User.fromJson(userMap);
print('Howdy, ${user.name}!');
print('We sent the verification link to ${user.email}.');
```
To encode a user, pass the `User` object to the `jsonEncode()` function.
You don't need to call the `toJson()` method, since `jsonEncode()`
already does it for you.
<?code-excerpt "lib/manual/main.dart (jsonEncode)" skip="1"?>
```dart
String json = jsonEncode(user);
```
With this approach, the calling code doesn't have to worry about JSON
serialization at all. However, the model class still definitely has to.
In a production app, you would want to ensure that the serialization
works properly. In practice, the `User.fromJson()` and `User.toJson()`
methods both need to have unit tests in place to verify correct behavior.
{{site.alert.info}}
The cookbook contains [a more comprehensive worked example of using
JSON model classes][json background parsing], using an isolate to parse
the JSON file on a background thread. This approach is ideal if you
need your app to remain responsive while the JSON file is being
decoded.
{{site.alert.end}}
However, real-world scenarios are not always that simple.
Sometimes JSON API responses are more complex, for example since they
contain nested JSON objects that must be parsed through their own model
class.
It would be nice if there were something that handled the JSON encoding
and decoding for you. Luckily, there is!
<a id="code-generation"></a>
## Serializing JSON using code generation libraries
Although there are other libraries available, this guide uses
[`json_serializable`][], an automated source code generator that
generates the JSON serialization boilerplate for you.
{{site.alert.info}}
**Choosing a library:**
You might have noticed two [Flutter Favorite][] packages
on pub.dev that generate JSON serialization code,
[`json_serializable`][] and [`built_value`][].
How do you choose between these packages?
The `json_serializable` package allows you to make regular
classes serializable by using annotations,
whereas the `built_value` package provides a higher-level way
of defining immutable value classes that can also be
serialized to JSON.
{{site.alert.end}}
Since the serialization code is not handwritten or maintained manually
anymore, you minimize the risk of having JSON serialization exceptions at
runtime.
### Setting up json_serializable in a project
To include `json_serializable` in your project, you need one regular
dependency, and two _dev dependencies_. In short, _dev dependencies_
are dependencies that are not included in our app source code—they
are only used in the development environment.
To add the dependencies, run `flutter pub add`:
```terminal
$ flutter pub add json_annotation dev:build_runner dev:json_serializable
```
Run `flutter pub get` inside your project root folder
(or click **Packages get** in your editor)
to make these new dependencies available in your project.
### Creating model classes the json_serializable way
The following shows how to convert the `User` class to a
`json_serializable` class. For the sake of simplicity,
this code uses the simplified JSON model
from the previous samples.
**user.dart**
<?code-excerpt "lib/serializable/user.dart"?>
```dart
import 'package:json_annotation/json_annotation.dart';
/// This allows the `User` class to access private members in
/// the generated file. The value for this is *.g.dart, where
/// the star denotes the source file name.
part 'user.g.dart';
/// An annotation for the code generator to know that this class needs the
/// JSON serialization logic to be generated.
@JsonSerializable()
class User {
User(this.name, this.email);
String name;
String email;
/// A necessary factory constructor for creating a new User instance
/// from a map. Pass the map to the generated `_$UserFromJson()` constructor.
/// The constructor is named after the source class, in this case, User.
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
/// `toJson` is the convention for a class to declare support for serialization
/// to JSON. The implementation simply calls the private, generated
/// helper method `_$UserToJson`.
Map<String, dynamic> toJson() => _$UserToJson(this);
}
```
With this setup, the source code generator generates code for encoding
and decoding the `name` and `email` fields from JSON.
If needed, it is also easy to customize the naming strategy.
For example, if the API returns objects with _snake\_case_,
and you want to use _lowerCamelCase_ in your models,
you can use the `@JsonKey` annotation with a name parameter:
```dart
/// Tell json_serializable that "registration_date_millis" should be
/// mapped to this property.
@JsonKey(name: 'registration_date_millis')
final int registrationDateMillis;
```
It's best if both server and client follow the same naming strategy.
`@JsonSerializable()` provides `fieldRename` enum for totally converting dart
fields into JSON keys.
Modifying `@JsonSerializable(fieldRename: FieldRename.snake)` is equivalent to
adding `@JsonKey(name: '<snake_case>')` to each field.
Sometimes server data is uncertain, so it is necessary to verify and protect data
on client.
Other commonly used `@JsonKey` annotations include:
```dart
/// Tell json_serializable to use "defaultValue" if the JSON doesn't
/// contain this key or if the value is `null`.
@JsonKey(defaultValue: false)
final bool isAdult;
/// When `true` tell json_serializable that JSON must contain the key,
/// If the key doesn't exist, an exception is thrown.
@JsonKey(required: true)
final String id;
/// When `true` tell json_serializable that generated code should
/// ignore this field completely.
@JsonKey(ignore: true)
final String verificationCode;
```
### Running the code generation utility
When creating `json_serializable` classes the first time,
you'll get errors similar to what is shown in the image below.
{:.mw-100}
These errors are entirely normal and are simply because the generated code for
the model class does not exist yet. To resolve this, run the code
generator that generates the serialization boilerplate.
There are two ways of running the code generator.
#### One-time code generation
By running `dart run build_runner build --delete-conflicting-outputs` in the project root,
you generate JSON serialization code for your models whenever they are needed.
This triggers a one-time build that goes through the source files, picks the
relevant ones, and generates the necessary serialization code for them.
While this is convenient, it would be nice if you did not have to run the
build manually every time you make changes in your model classes.
#### Generating code continuously
A _watcher_ makes our source code generation process more convenient. It
watches changes in our project files and automatically builds the necessary
files when needed. Start the watcher by running
`dart run build_runner watch --delete-conflicting-outputs` in the project root.
It is safe to start the watcher once and leave it running in the background.
### Consuming json_serializable models
To decode a JSON string the `json_serializable` way,
you do not have actually to make any changes to our previous code.
<?code-excerpt "lib/serializable/main.dart (fromJson)"?>
```dart
final userMap = jsonDecode(jsonString) as Map<String, dynamic>;
final user = User.fromJson(userMap);
```
The same goes for encoding. The calling API is the same as before.
<?code-excerpt "lib/serializable/main.dart (jsonEncode)" skip="1"?>
```dart
String json = jsonEncode(user);
```
With `json_serializable`,
you can forget any manual JSON serialization in the `User` class.
The source code generator creates a file called `user.g.dart`,
that has all the necessary serialization logic.
You no longer have to write automated tests to ensure
that the serialization works—it's now
_the library's responsibility_ to make sure the serialization works
appropriately.
## Generating code for nested classes
You might have code that has nested classes within a class.
If that is the case, and you have tried to pass the class in JSON format
as an argument to a service (such as Firebase, for example),
you might have experienced an `Invalid argument` error.
Consider the following `Address` class:
<?code-excerpt "lib/nested/address.dart"?>
```dart
import 'package:json_annotation/json_annotation.dart';
part 'address.g.dart';
@JsonSerializable()
class Address {
String street;
String city;
Address(this.street, this.city);
factory Address.fromJson(Map<String, dynamic> json) =>
_$AddressFromJson(json);
Map<String, dynamic> toJson() => _$AddressToJson(this);
}
```
The `Address` class is nested inside the `User` class:
<?code-excerpt "lib/nested/user.dart" replace="/explicitToJson: true//g"?>
```dart
import 'package:json_annotation/json_annotation.dart';
import 'address.dart';
part 'user.g.dart';
@JsonSerializable()
class User {
User(this.name, this.address);
String name;
Address address;
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
Map<String, dynamic> toJson() => _$UserToJson(this);
}
```
Running
`dart run build_runner build --delete-conflicting-outputs`
in the terminal creates
the `*.g.dart` file, but the private `_$UserToJson()` function
looks something like the following:
```dart
Map<String, dynamic> _$UserToJson(User instance) => <String, dynamic>{
'name': instance.name,
'address': instance.address,
};
```
All looks fine now, but if you do a print() on the user object:
<?code-excerpt "lib/nested/main.dart (print)"?>
```dart
Address address = Address('My st.', 'New York');
User user = User('John', address);
print(user.toJson());
```
The result is:
```json
{name: John, address: Instance of 'address'}
```
When what you probably want is output like the following:
```json
{name: John, address: {street: My st., city: New York}}
```
To make this work, pass `explicitToJson: true` in the `@JsonSerializable()`
annotation over the class declaration. The `User` class now looks as follows:
<?code-excerpt "lib/nested/user.dart"?>
``` dart
import 'package:json_annotation/json_annotation.dart';
import 'address.dart';
part 'user.g.dart';
@JsonSerializable(explicitToJson: true)
class User {
User(this.name, this.address);
String name;
Address address;
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
Map<String, dynamic> toJson() => _$UserToJson(this);
}
```
For more information, see [`explicitToJson`][] in the
[`JsonSerializable`][] class for the [`json_annotation`][] package.
## Further references
For more information, see the following resources:
* The [`dart:convert`][] and [`JsonCodec`][] documentation
* The [`json_serializable`][] package on pub.dev
* The [`json_serializable` examples][] on GitHub
* The [Dive into Dart's patterns and records][] codelab
[`built_value`]: {{site.pub}}/packages/built_value
[code generation libraries]: #code-generation
[`dart:convert`]: {{site.dart.api}}/{{site.dart.sdk.channel}}/dart-convert
[`explicitToJson`]: {{site.pub}}/documentation/json_annotation/latest/json_annotation/JsonSerializable/explicitToJson.html
[Flutter Favorite]: /packages-and-plugins/favorites
[json background parsing]: /cookbook/networking/background-parsing
[`JsonCodec`]: {{site.dart.api}}/{{site.dart.sdk.channel}}/dart-convert/JsonCodec-class.html
[`JsonSerializable`]: {{site.pub}}/documentation/json_annotation/latest/json_annotation/JsonSerializable-class.html
[`json_annotation`]: {{site.pub}}/packages/json_annotation
[`json_serializable`]: {{site.pub}}/packages/json_serializable
[`json_serializable` examples]: {{site.github}}/google/json_serializable.dart/blob/master/example/lib/example.dart
[pubspec file]: https://raw.githubusercontent.com/google/json_serializable.dart/master/example/pubspec.yaml
[reflection]: https://en.wikipedia.org/wiki/Reflection_(computer_programming)
[Serializing JSON manually using dart:convert]: #manual-encoding
[Serializing JSON using code generation libraries]: #code-generation
[tree shaking]: https://en.wikipedia.org/wiki/Tree_shaking
[Dive into Dart's patterns and records]: {{site.codelabs}}/codelabs/dart-patterns-records
| website/src/data-and-backend/serialization/json.md/0 | {
"file_path": "website/src/data-and-backend/serialization/json.md",
"repo_id": "website",
"token_count": 5534
} | 1,230 |
---
title: Build and release a Windows desktop app
description: How to release a Flutter app to the Microsoft Store.
short-title: windows
---
One convenient approach to distributing Windows apps
is the [Microsoft Store][microsoftstore].
This guide provides a step-by-step walkthrough
of packaging and deploying a Flutter app in this way.
{{site.alert.note}}
You are not required to publish Windows apps through the
Microsoft Store, particularly if you prefer more control
over the distribution experience or don't want to deal
with the certification process. The Microsoft documentation
includes more information about traditional installation
approaches, including [Windows Installer][msidocs].
{{site.alert.end}}
## Preliminaries
Before beginning the process of releasing
a Flutter Windows desktop app to the Microsoft Store,
first confirm that it satisfies [Microsoft Store Policies][storepolicies].
Also, you must join the
[Microsoft Partner Network][microsoftpartner] to be able to submit apps.
## Set up your application in the Partner Center
Manage an application's life cycle in the
[Microsoft Partner Center][microsoftpartner].
First, reserve the application name and
ensure that the required rights to the name exist.
Once the name is reserved, the application
will be provisioned for services (such as
push notifications), and you can start adding add-ons.
Options such as pricing, availability,
age ratings, and category have to be
configured together with the first submission
and are automatically retained
for the subsequent submissions.
## Packaging and deployment
In order to publish an application to Microsoft Store,
you must first package it.
The valid formats are **.msix**, **.msixbundle**,
**.msixupload**, **.appx**, **.appxbundle**,
**.appxupload**, and **.xap**.
### Manual packaging and deployment for the Microsoft Store
Check out [MSIX packaging][msix packaging]
to learn about packaging
Flutter Windows desktop applications.
Note that each product has a unique identity,
which the Store assigns.
If the package is being built manually,
you have to include its identity details
manually during the packaging.
The essential information can be retrieved
from the Partner Center using the following instructions:
1. In the Partner Center, navigate to the application.
2. Select **Product management**.
3. Retrieve the package identity name, publisher,
and publisher display name by clicking **Product identity**.
After manually packaging the application,
manually submit it to the
[Microsoft Partner Center][microsoftpartner].
You can do this by creating a new submission,
navigating to **Packages**,
and uploading the created application package.
### Continuous deployment
In addition to manually creating and deploying the package,
you can automate the build, package, versioning,
and deployment process using CI/CD tooling after having submitted
the application to the Microsoft Store for the first time.
#### Codemagic CI/CD
[Codemagic CI/CD][codemagic] uses the
[`msix` pub package][msix package] to package
Flutter Windows desktop applications.
For Flutter applications, use either the
[Codemagic Workflow Editor][cmworkfloweditor]
or [codemagic.yaml][cmyaml]
to package the application and deploy it
to the Microsoft Partner Center.
Additional options (such as the list of
capabilities and language resources
contained in the package)
can be configured using this package.
For publishing, Codemagic uses the
[Partner Center submission API][partnercenterapi];
so, Codemagic requires
[associating the Azure Active Directory
and Partner Center accounts][azureadassociation].
#### GitHub Actions CI/CD
GitHub Actions can use the
[Microsoft Dev Store CLI](https://learn.microsoft.com/windows/apps/publish/msstore-dev-cli/overview)
to package applications into an MSIX and publish them to the Microsoft Store.
The [setup-msstore-cli](https://github.com/microsoft/setup-msstore-cli)
GitHub Action installs the cli so that the Action can use it for packaging
and publishing.
As packaging the MSIX uses the
[`msix` pub package][msix package], the project's `pubspec.yaml`
must contain an appropriate `msix_config` node.
You must create an Azure AD directory from the Dev Center with
[global administrator permission](https://azure.microsoft.com/documentation/articles/active-directory-assign-admin-roles/).
The GitHub Action requires environment secrets from the partner center.
`AZURE_AD_TENANT_ID`, `AZURE_AD_ClIENT_ID`, and `AZURE_AD_CLIENT_SECRET`
are visible on the Dev Center following the instructions for the
[Windows Store Publish Action](https://github.com/marketplace/actions/windows-store-publish#obtaining-your-credentials).
You also need the `SELLER_ID` secret, which can be found in the Dev Center
under **Account Settings** > **Organization Profile** > **Legal Info**.
The application must already be present in the Microsoft Dev Center with at
least one complete submission, and `msstore init` must be run once within
the repository before the Action can be performed. Once complete, running
[`msstore package .`](https://learn.microsoft.com/windows/apps/publish/msstore-dev-cli/package-command)
and
[`msstore publish`](https://learn.microsoft.com/windows/apps/publish/msstore-dev-cli/publish-command)
in a GitHub Action packages the
application into an MSIX and uploads it to a new submission on the dev center.
The steps necessary for MSIX publishing resemble the following
```
- uses: microsoft/setup-msstore-cli@v1
- name: Configure the Microsoft Store CLI
run: msstore reconfigure --tenantId ${{ secrets.AZURE_AD_TENANT_ID }} --clientId ${{ secrets.AZURE_AD_ClIENT_ID }} --clientSecret ${{ secrets.AZURE_AD_CLIENT_SECRET }} --sellerId ${{ secrets.SELLER_ID }}
- name: Install Dart dependencies
run: flutter pub get
- name: Create MSIX package
run: msstore package .
- name: Publish MSIX to the Microsoft Store
run: msstore publish -v
```
## Updating the app's version number
For apps published to the Microsoft Store,
the version number must be set during the
packaging process.
The default version number of the app is `1.0.0.0`.
{{site.alert.note}}
Microsoft Store apps are not allowed to have a
Version with a revision number other than zero.
Therefore, the last number of the version must
remain zero for all releases.
Ensure that you follow Microsoft's
[versioning guidelines][windowspackageversioning].
{{site.alert.end}}
For apps not published to the Microsoft Store, you
can set the app's executable's file and product versions.
The executable's default file version is `1.0.0.1`,
and its default product version is `1.0.0+1`. To update these,
navigate to the `pubspec.yaml` file and update the
following line:
```yaml
version: 1.0.0+1
```
The build name is three numbers separated by dots,
followed by an optional build number that is separated
by a `+`. In the example above, the build name is `1.0.0`
and the build number is `1`.
The build name becomes the first three numbers of the
file and product versions, while the build number becomes
the fourth number of the file and product versions.
Both the build name and number can be overridden in
`flutter build windows` by specifying `--build-name` and
`--build-number`, respectively.
{{site.alert.note}}
Flutter projects created before Flutter 3.3
need to be updated to set the executable's version
information. For more information,
refer to the [version migration guide][].
{{site.alert.end}}
## Add app icons
To update the icon of a Flutter Windows
desktop application before packaging use the
following instructions:
1. In the Flutter project, navigate to
**windows\runner\resources**.
2. Replace the **app_icon.ico** with the desired icon.
3. If the name of the icon is other than **app_icon.ico**,
proceed to change the **IDI_APP_ICON** value in the
**windows\runner\Runner.rc** file to point to the new path.
When packaging with the [`msix` pub package][msix package],
the logo path can also be configured inside the `pubspec.yaml` file.
To update the application image in the Store listing,
navigate to the Store listing step of the submission
and select Store logos.
From there, you can upload the logo with
the size of 300 x 300 pixels.
All uploaded images are retained for subsequent submissions.
## Validating the application package
Before publication to the Microsoft Store,
first validate the application package locally.
[Windows App Certification Kit][windowsappcertification]
is a tool included in the
Windows Software Development Kit (SDK).
To validate the application:
1. Launch Windows App Cert Kit.
2. Select the Flutter Windows desktop package
(**.msix**, **.msixbundle**, etc.).
3. Choose a destination for the test report.
The report might contain important warnings and information,
even if the certification passes.
[azureadassociation]: https://docs.microsoft.com/windows/uwp/publish/associate-azure-ad-with-partner-center
[cmworkfloweditor]: https://docs.codemagic.io/flutter-publishing/publishing-to-microsoft-store/
[cmyaml]: https://docs.codemagic.io/yaml-publishing/microsoft-store/
[codemagic]: https://codemagic.io/start/
[microsoftstore]: https://www.microsoft.com/store/apps/windows
[msidocs]: https://docs.microsoft.com/en-us/windows/win32/msi/windows-installer-portal
[microsoftpartner]: https://partner.microsoft.com/
[msix package]: {{site.pub}}/packages/msix
[msix packaging]: /platform-integration/windows/building#msix-packaging
[partnercenterapi]: https://docs.microsoft.com/azure/marketplace/azure-app-apis
[storepolicies]: https://docs.microsoft.com/windows/uwp/publish/store-policies/
[visualstudiopackaging]: https://docs.microsoft.com/windows/msix/package/packaging-uwp-apps
[visualstudiosubmission]: https://docs.microsoft.com/windows/msix/package/packaging-uwp-apps#automate-store-submissions
[windowspackageversioning]: https://docs.microsoft.com/windows/uwp/publish/package-version-numbering
[windowsappcertification]: https://docs.microsoft.com/windows/uwp/debug-test-perf/windows-app-certification-kit
[version migration guide]: /release/breaking-changes/windows-version-information
| website/src/deployment/windows.md/0 | {
"file_path": "website/src/deployment/windows.md",
"repo_id": "website",
"token_count": 2728
} | 1,231 |
---
title: First week experience of Flutter
description: >
You've gotten a taste of using the Flutter framework;
now go beyond to learn the basics of Flutter.
---
## Welcome to the next level of Flutter!
If you are new to Flutter, and have already worked
through [your first Flutter codelab][],
this section of the website is for you!
The goal here is to guide you through some next
steps of learning Flutter. It's not about teaching
you how to _program_, it's about teaching you
how Flutter works.
{{site.alert.note}}
This first week experience is still a work
in progress and we welcome your feedback!
Please consider filling out the survey
listed at the bottom of this page and on the
new subject pages in this section.
{{site.alert.end}}
As you might know, Flutter uses the [Dart language][].
If you have experience with other object-oriented
languages, like Java, C++, or Swift,
Dart should feel familiar to you.
As of this writing,
[Dart is one of the fastest growing languages][dart-lang],
in part, thanks to Flutter.
[Dart language]: {{site.dart-site}}
[dart-lang]: https://twitter.com/MiSvTh/status/1732002450641400276?cxt
[your first Flutter codelab]: {{site.codelabs}}/codelabs/flutter-codelab-first
We suggest that you work through the
following subjects in the listed order.
1. [Widget fundamentals][]
: Learn about one of the primary building blocks
of a Flutter application, `Widgets`.
2. [Layout][]
: Flutter is different from other UI frameworks
in that you create the layout programmatically.
This allows you to compose widgets,
Flutter's basic building blocks,
to realize your own layout vision.
It also facilitates designing a UI to
optimize any screen where your app might be used.
3. [State management][]
: Learn how share state between widgets and notify other parts of your app
when the state changes.
See how to implement MVVM in Flutter to manage state effectively
for small to medium-sized apps.
4. [Handling user input][]
: Learn about Flutter's widgets that support
interactivity, like buttons and text.
Also, learn how to add interactivity to
a widget that doesn't already support it.
5. [Networking and data][]
: Networking is a very large topic,
so this section focuses on basic networking
functionality, such as how to retrieve
or submit data using HTTP,
how to convert to and from JSON,
how to use authentication,
how to implement asynchronicity, and more.
6. [Local data and caching][]
: Learn about different techniques for caching
local data.
[Widget fundamentals]: {{site.url}}/get-started/fwe/fundamentals
[Layout]: {{site.url}}/get-started/fwe/layout
[State management]: {{site.url}}/get-started/fwe/state-management
[Handling user input]: {{site.url}}/get-started/fwe/user-input
[Networking and data]: {{site.url}}/networking
[Local data and caching]: {{site.url}}/get-started/fwe/local-caching
## Feedback
As this section of the website is evolving,
we [welcome your feedback][]!
[welcome your feedback]: {{site.url}}/get-started/fwe
| website/src/get-started/fwe/index.md/0 | {
"file_path": "website/src/get-started/fwe/index.md",
"repo_id": "website",
"token_count": 861
} | 1,232 |
## macOS setup
### Additional macOS requirements
For macOS desktop development,
you need the following in addition to the Flutter SDK:
* [Xcode][]
* [CocoaPods][] if you use plugins
[CocoaPods]: https://cocoapods.org/
[Xcode]: {{site.apple-dev}}/xcode/
| website/src/get-started/install/_deprecated/_macos-desktop-setup.md/0 | {
"file_path": "website/src/get-started/install/_deprecated/_macos-desktop-setup.md",
"repo_id": "website",
"token_count": 86
} | 1,233 |
---
title: Start building Flutter Android apps on macOS
description: Configure your system to develop Flutter mobile apps on macOS and Android.
short-title: Make Android apps
target: Android
config: macOSAndroid
devos: macOS
next:
title: Create a test app
path: /get-started/test-drive
---
{% include docs/install/reqs/macos/base.md
os=page.devos
target=page.target
-%}
{% include docs/install/flutter-sdk.md
os=page.devos
target=page.target
terminal='Terminal'
-%}
{% include docs/install/compiler/android.md
devos=page.devos
target=page.target
attempt='first'
-%}
{% include docs/install/flutter-doctor.md
devos=page.devos
target=page.target
config=page.config
-%}
{% include docs/install/next-steps.md
devos=page.devos
target=page.target
config=page.config
-%}
| website/src/get-started/install/macos/mobile-android.md/0 | {
"file_path": "website/src/get-started/install/macos/mobile-android.md",
"repo_id": "website",
"token_count": 305
} | 1,234 |
---
layout: toc
title: Packages & plugins
description: >
Content covering using and developing packages and plugins for Flutter apps.
---
| website/src/packages-and-plugins/index.md/0 | {
"file_path": "website/src/packages-and-plugins/index.md",
"repo_id": "website",
"token_count": 35
} | 1,235 |
---
title: Targeting ChromeOS with Android
description: Platform-specific considerations for building for ChromeOS with Flutter.
---
This page discusses considerations unique to building
Android apps that support ChromeOS with Flutter.
## Flutter & ChromeOS tips & tricks
For the current versions of ChromeOS, only certain ports from
Linux are exposed to the rest of the environment.
Here's an example of how to launch
Flutter DevTools for an Android app with ports
that will work:
```terminal
$ flutter pub global run devtools --port 8000
$ cd path/to/your/app
$ flutter run --observatory-port=8080
```
Then, navigate to http://127.0.0.1:8000/#
in your Chrome browser and enter the URL to your
application. The last `flutter run` command you
just ran should output a URL similar to the format
of `http://127.0.0.1:8080/auth_code=/`. Use this URL
and select "Connect" to start the Flutter DevTools
for your Android app.
#### Flutter ChromeOS lint analysis
Flutter has ChromeOS-specific lint analysis checks
to make sure that the app that you're building
works well on ChromeOS. It looks for things
like required hardware in your Android Manifest
that aren't available on ChromeOS devices,
permissions that imply requests for unsupported
hardware, as well as other properties or code
that would bring a lesser experience on these devices.
To activate these,
you need to create a new analysis_options.yaml
file in your project folder to include these options.
(If you have an existing analysis_options.yaml file,
you can update it)
```yaml
include: package:flutter/analysis_options_user.yaml
analyzer:
optional-checks:
chrome-os-manifest-checks
```
To run these from the command line, use the following command:
```terminal
$ flutter analyze
```
Sample output for this command might look like:
```terminal
Analyzing ...
warning β’ This hardware feature is not supported on ChromeOS β’
android/app/src/main/AndroidManifest.xml:4:33 β’ unsupported_chrome_os_hardware
```
| website/src/platform-integration/android/chromeos.md/0 | {
"file_path": "website/src/platform-integration/android/chromeos.md",
"repo_id": "website",
"token_count": 532
} | 1,236 |
---
title: Adding iOS app extensions
description: Learn how to add app extensions to your Flutter apps
---
iOS app extensions allow you to expand functionality
outside your app. Your app could appear as a home screen widget,
or you can make portions of your app available within other apps.
To learn more about app extensions, check out
[Apple's documentation][].
{{site.alert.note}}
If you experience a build error when building an
iOS app that includes an app extension, be
aware that there is an open bug. The workaround
involves changing the order of the build process.
For more information, check out
[Issue #9690][] and [Issue #135056][].
{{site.alert.end}}
[Issue #9690]: {{site.github}}/flutter/website/issues/9690
[Issue #135056]: {{site.github}}/flutter/flutter/issues/135056
## How do you add an app extension to your Flutter app?
To add an app extension to your Flutter app,
add the extension point *target* to your Xcode project.
1. Open the default Xcode workspace in your project by running
`open ios/Runner.xcworkspace` in a terminal window from your
Flutter project directory.
1. In Xcode, select **File -> New -> Target** from the menu bar.
<figure class="site-figure {{include.class}}">
<div class="site-figure-container">
<img src='/assets/images/docs/development/platform-integration/app-extensions/xcode-new-target.png'
height='300'>
</div>
</figure>
1. Select the app extension you intend to add.
This selection generates extension-specific code
within a new folder in your project.
To learn more about the generated code and the SDKs for each
extension point, check out the resources in
[Apple's documentation][].
To learn how to add a home screen widget to your iOS device,
check out the
[Adding a Home Screen Widget to your Flutter app][lab]
codelab.
## How do Flutter apps interact with App Extensions?
Flutter apps interact with app extensions using the same
techniques as UIKit or SwiftUI apps.
The containing app and the app extension don't communicate directly.
The containing app might not be running while the device user
interacts with the extension.
The app and your extension can read and write to
shared resources or use higher-level APIs
to communicate with each other.
### Using higher-level APIs
Some extensions have APIs. For example,
the [Core Spotlight][] framework indexes your app,
allowing users to search from Spotlight and Safari.
The [WidgetKit][] framework can trigger an update
of your home screen widget.
To simplify how your app communicates with extensions,
Flutter plugins wrap these APIs.
To find plugins that wrap extension APIs,
check out [Leveraging Apple's System APIs and Frameworks][leverage]
or search [pub.dev][].
### Sharing resources
To share resources between your Flutter app
and your app extension, put the `Runner` app target
and the extension target in the same [App Group][].
{{site.alert.note}}
You must be signed in to your Apple Developer account.
{{site.alert.end}}
To add a target to an App Group:
1. Open the target settings in Xcode.
1. Navigate to the **Signing & Capabilities** tab.
1. Select **+ Capability** then **App Groups**.
1. Choose which App Group you want to add the target from
one of two options:
{: type="a"}
1. Select an App Group from the list.
1. Click **+** to add a new App Group.
{% include docs/app-figure.md
image="development/platform-integration/app-extensions/xcode-app-groups.png" %}
When two targets belong to the same App Group,
they can read from and write to the same source.
Choose one of the following sources for your data.
* **Key/value:** Use the [`shared_preference_app_group`][]
plugin to read or write to `UserDefaults` within the same App Group.
* **File:** Use the App Group container path from the
[`path_provider`][] plugin to [read and write files][].
* **Database:** Use the App Group container path from
the [`path_provider`][] plugin to create a database with the
[`sqflite`][] plugin.
### Background updates
Background tasks provide a means to update your extension
through code regardless of the status of your app.
To schedule background work from your Flutter app,
use the [`workmanager`][] plugin.
### Deep linking
You might want to direct users from an
app extension to a specific page in your Flutter app.
To open a specific route in your app,
you can use [Deep Linking][].
## Creating app extension UIs with Flutter
Some app extensions display a user interface.
For example, share extensions allow users to conveniently
share content with other apps,
such as sharing a picture to create
a new post on a social media app.
<figure class="site-figure {{include.class}}">
<div class="site-figure-container">
<img src='/assets/images/docs/development/platform-integration/app-extensions/share-extension.png'
height='300'>
</div>
</figure>
As of the 3.16 release, you can build
Flutter UI for an app extension,
though you must use an extension-safe
`Flutter.xcframework` and embed the
`FlutterViewController` as described in
the following section.
{{site.alert.note}}
Due to the memory limitations of app extensions,
use Flutter to build an app extension UI for extension
types that have memory limits larger than 100MB.
For example, Share extensions have a 120MB memory limit.
In addition, Flutter uses extra memory in debug mode.
Therefore, Flutter doesn't fully support running
app extensions in debug mode on physical devices
when used to build extension UI; it might run out of memory.
As an alternative,
use an iOS simulator to test your extension in debug mode.
{{site.alert.end}}
1. Locate the extension-safe `Flutter.xcframework` file,
at `<path_to_flutter_sdk>/bin/cache/artifacts/engine/ios/extension_safe/Flutter.xcframework`.
* To build for release or profile modes,
find the framework file under the
`ios-release` or `ios-profile` folder, respectively.
1. Drag and drop the `Flutter.xcframework` file into your
share extension's frameworks and libraries list.
Make sure the embed column says "Embed & Sign".
<figure class="site-figure {{include.class}}">
<div class="site-figure-container">
<img src='/assets/images/docs/development/platform-integration/app-extensions/embed-framework.png'
height='300'>
</div>
</figure>
1. Open the Flutter app project settings in Xcode
to share build configurations.
{: type="a"}
1. Navigate to the **Info** tab.
1. Expand the **Configurations** group.
1. Expand the **Debug**, **Profile**, and **Release** entries.
1. For each of these configurations, make sure the value in the
**Based on configuration file** drop-down menu for your
extension matches the one selected for the normal app target.
<figure class="site-figure {{include.class}}">
<div class="site-figure-container">
<img src='/assets/images/docs/development/platform-integration/app-extensions/xcode-configurations.png'
height='300'>
</div>
</figure>
1. (Optional) Replace any storyboard files with an extension class, if needed.
{: type="a"}
1. In the `Info.plist` file,
delete the **NSExtensionMainStoryboard** property.
1. Add the **NSExtensionPrincipalClass** property.
1. Set the value for this property to the entry point of the extension.
For example, for share extensions, it's usually
`<YourShareExtensionTargetName>.ShareViewController`.
If you use Objective-C to implement the extension,
you should omit the `<YourShareExtensionTargetName>.`
portion.<br>
<figure class="site-figure {{include.class}}">
<div class="site-figure-container">
<img src='/assets/images/docs/development/platform-integration/app-extensions/share-extension-info.png'
height='300'>
</div>
</figure>
1. Embed the `FlutterViewController` as described in
[Adding a Flutter Screen][]. For example, you can display a
specific route in your Flutter app within a share extension.
```swift
import UIKit
import Flutter
class ShareViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
showFlutter()
}
func showFlutter() {
let flutterViewController = FlutterViewController(project: nil, nibName: nil, bundle: nil)
addChild(flutterViewController)
view.addSubview(flutterViewController.view)
flutterViewController.view.frame = view.bounds
}
}
```
## Test extensions
Testing extensions on simulators and physical devices
have slightly different procedures.
{% comment %}
The different procedures are necessary due to bugs(which bugs?) in Xcode.
Revisit these docs after future Xcode releases to see if they are fixed.
{% endcomment -%}
### Test on a simulator
1. Build and run the main application target.
1. After the app is launched on the simulator,
press <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>H</kbd>
to minimize the app, which switches to the home screen.
1. Launch an app that supports the share extension,
such as the Photos app.
1. Select a photo, tap the share button, then tap
on the share extension icon of your app.
### Test on a physical device
You can use the following procedure or the
[Testing on simulators](#test-on-a-simulator) instructions
to test on physical devices.
1. Launch the share extension target.
1. In the popup window that says "Choose an app to run",
select an app that can be used to test share extension,
such as the Photos app.
1. Select a photo, tap the share button,
then tap on the share extension icon of your app.
## Tutorials
For step-by-step instruction for using app
extensions with your Flutter iOS app, check out the
[Adding a Home Screen Widget to your Flutter app][lab]
codelab.
[Adding a Flutter Screen]: /add-to-app/ios/add-flutter-screen?tab=vc-uikit-swift-tab#alternatively---create-a-flutterviewcontroller-with-an-implicit-flutterengine
[App Group]: {{site.apple-dev}}/documentation/xcode/configuring-app-groups
[Apple's documentation]: {{site.apple-dev}}/app-extensions/
[Compiling the Engine]: https://github.com/flutter/flutter/wiki/Compiling-the-engine
[Core Spotlight]: {{site.apple-dev}}/documentation/corespotlight
[Deep Linking]:/ui/navigation/deep-linking
[lab]: {{site.codelabs}}/flutter-home-screen-widgets
[leverage]: /platform-integration/ios/apple-frameworks
[`path_provider`]: {{site.pub-pkg}}/path_provider
[pub.dev]: {{site.pub-pkg}}
[read and write files]: /cookbook/persistence/reading-writing-files
[`shared_preference_app_group`]: {{site.pub-pkg}}/shared_preference_app_group
[`sqflite`]: {{site.pub-pkg}}/sqflite
[WidgetKit]: {{site.apple-dev}}/documentation/widgetkit
[`workmanager`]: {{site.pub-pkg}}/workmanager
| website/src/platform-integration/ios/app-extensions.md/0 | {
"file_path": "website/src/platform-integration/ios/app-extensions.md",
"repo_id": "website",
"token_count": 3374
} | 1,237 |
---
title: Add Linux devtools to Flutter from Android start
description: Configure your system to develop Flutter mobile apps also on Linux.
short-title: Starting from Android
---
To add Linux desktop as a Flutter app target, follow this procedure.
## Install Linux compilation tools
1. Allocate a minimum of 5 GB of storage for the Linux compiliation tools.
{% include docs/install/reqs/linux/install-desktop-tools.md
devos='Linux' target='desktop' %}
{% include docs/install/flutter-doctor.md
target='Linux'
devos='Linux'
config='LinuxDesktopAndroid' %}
| website/src/platform-integration/linux/install-linux/install-linux-from-android.md/0 | {
"file_path": "website/src/platform-integration/linux/install-linux/install-linux-from-android.md",
"repo_id": "website",
"token_count": 160
} | 1,238 |
---
title: Add Chrome DevTools to Flutter from Android on ChromeOS start
description: Configure your system to develop Flutter web apps on ChromeOS.
short-title: Starting from Android on ChromeOS
---
To add web as a Flutter app target for ChromeOS with Android,
follow this procedure.
## Configure Chrome as the web DevTools tools
{% include docs/install/reqs/add-web.md devos='ChromeOS' %}
{% include docs/install/flutter-doctor.md
target='Web'
devos='ChromeOS'
config='ChromeOSAndroidWeb' %}
| website/src/platform-integration/web/install-web/install-web-from-android-on-chromeos.md/0 | {
"file_path": "website/src/platform-integration/web/install-web/install-web-from-android-on-chromeos.md",
"repo_id": "website",
"token_count": 153
} | 1,239 |
---
title: Deprecated API removed after v3.13
description: >-
After reaching end of life, the following deprecated APIs
were removed from Flutter.
---
## Summary
In accordance with Flutter's [Deprecation Policy][],
deprecated APIs that reached end of life after the
3.13 stable release have been removed.
All affected APIs have been compiled into this
primary source to aid in migration.
To further aid your migration, check out this
[quick reference sheet][].
[Deprecation Policy]: {{site.repo.flutter}}/wiki/Tree-hygiene#deprecation
[quick reference sheet]: /go/deprecations-removed-after-3-13
## Changes
This section lists the deprecations by the package and affected class.
### Chip classes' useDeleteButtonTooltip
Package: flutter
Supported by Flutter Fix: yes
The `useDeleteButtonTooltip` property of the following classes was deprecated
in v2.10:
* `DeletableChipAttributes`
* `Chip`
* `RawChip`
* `InputChip`
`deleteButtonTooltipMessage` replaces `useDeleteButtonTooltip`. This change simplified the
API, as providing an empty String to `deleteButtonTooltipMessage` achieves the
same result as setting the original property `useDeleteButtonTooltip` to false.
When `deleteButtonTooltipMessage` is unset, the
`MaterialLocalizations.deleteButtonTooltip` is used by default.
The [Deprecate `useDeleteButtonTooltip` for Chips][] design document
covers this update to chips and tooltips in greater depth.
To learn more, check out the [chips and tooltips migration guide][].
[Deprecate `useDeleteButtonTooltip` for Chips]: https://docs.google.com/document/d/1wc9ot7T2E7hJubYxEWMX230a79wYSiFey4BHxnEzHtw/edit?usp=sharing&resourcekey=0-Bo7KPqEtkWgZcSuRCqwQ5w
[chips and tooltips migration guide]: /release/breaking-changes/chip-usedeletebuttontooltip-migration
**Migration guide**
Code before migration:
```dart
Chip(useDeleteButtonTooltip: false);
InputChip(useDeleteButtonTooltip: true);
RawChip rawChip = RawChip();
rawChip.useDeleteButtonTooltip;
```
Code after migration:
```dart
Chip(deleteButtonTooltipMessage: '');
InputChip();
RawChip rawChip = RawChip();
rawChip.deleteButtonTooltipMessage;
```
**References**
API documentation:
* [`DeletableChipAttributes`][]
* [`Chip`][]
* [`RawChip`][]
* [`InputChip`][]
* [`MaterialLocalizations.deleteButtonTooltip`][]
Relevant PRs:
* Deprecated in [#96174][]
* Removed in [#134486][]
[`DeletableChipAttributes`]: {{site.api}}/flutter/material/DeletableChipAttributes-class.html
[`Chip`]: {{site.api}}/flutter/material/Chip-class.html
[`RawChip`]: {{site.api}}/flutter/material/RawChip-class.html
[`InputChip`]: {{site.api}}/flutter/material/InputChip-class.html
[`MaterialLocalizations.deleteButtonTooltip`]: {{site.api}}/flutter/material/MaterialLocalizations/deleteButtonTooltip.html
[#96174]: {{site.repo.flutter}}/pull/96174
[#134486]: {{site.repo.flutter}}/pull/134486
---
### MaterialButtonWithIconMixin
Package: flutter
Supported by Flutter Fix: no
The `MaterialButtonWithIconMixin` property was deprecated in v2.11.
With the introduction of new button classes `TextButton`, `OutlinedButton` and `ElevatedButton`,
this mixin is no longer used.
An earlier release removed old button classes that used this mixin.
As a result, this mixin no longer affects any classes that might mix it in.
**Migration guide**
Code before migration:
```dart
class MyButtonClass extends StatelessWidget with MaterialButtonWithIconMixin {
// ...
}
```
Code after migration:
```dart
class MyButtonClass extends StatelessWidget {
// ...
}
```
**References**
Relevant PRs:
* Deprecated in [#99088][]
* Removed in [#133173][]
[#99088]: {{site.repo.flutter}}/pull/99088
[#133173]: {{site.repo.flutter}}/pull/133173
---
### PlatformsViewsService.synchronizeToNativeViewHierarchy
Package: flutter
Supported by Flutter Fix: no
The static method `synchronizeToNativeViewHierarchy` of `PlatformsViewsService`
was deprecated in v2.11.
During the deprecation period, the method was a no-op function as it was no
longer required to call for performance improvements.
References to the method should be removed and won't impact the application.
**Migration guide**
Code before migration:
```dart
await PlatformsViewsService.synchronizeToNativeViewHierarchy(false);
````
Code after migration:
```dart
```
**References**
API documentation:
* [`PlatformViewsService`][]
Relevant PRs:
* Deprecated in [#100990][]
* Removed in [#133175][]
[`PlatformViewsService`]: {{site.api}}/flutter/services/PlatformViewsService-class.html
[#100990]: {{site.repo.flutter}}/pull/100990
[#133175]: {{site.repo.flutter}}/pull/133175
---
### TextSelectionOverlay.fadeDuration
Package: flutter
Supported by Flutter Fix: yes
The static `fadeDuration` property of `TextSelectionOverlay` was deprecated
in v2.12.
The `SelectionOverlay.fadeDuration` property replaces `TextSelectionOverlay.fadeDuration`.
With the `TextSelectionOverlay` refactor,
`SelectionOverlay` was added as a more generic widget without
the specific dependency on `RenderEditable`.
**Migration guide**
Code before migration:
```dart
TextSelectionOverlay.fadeDuration;
```
Code after migration:
```dart
SelectionOverlay.fadeDuration;
```
**References**
API documentation:
* [`TextSelectionOverlay`][]
* [`SelectionOverlay`][]
Relevant PRs:
* Deprecated in [#100381][]
* Removed in [#134485][]
[`TextSelectionOverlay`]: {{site.api}}/flutter/widgets/TextSelectionOverlay-class.html
[`SelectionOverlay`]: {{site.api}}/flutter/widgets/SelectionOverlay-class.html
[#100381]: {{site.repo.flutter}}/pull/100381
[#134485]: {{site.repo.flutter}}/pull/134485
---
### androidOverscrollIndicator
Package: flutter
Supported by Flutter Fix: no
The `androidOverscrollIndicator` property of the following classes was
deprecated in v2.13:
* `ScrollBehavior`
* `MaterialScrollBehavior`
* `ThemeData`
This flag was introduced to allow users to configure scrolling widgets to use
the `GlowingOverscrollIndicator` or the `StretchingOvercrollIndicator`.
It was deprecated in favor of the `ThemeData.useMaterial3` flag
as the framework introduced more support for Material 3-styled widgets.
Since `ThemeData.useMaterial3` is `true` by default,
the `StretchingOverscrollIndicator` is applied by default.
Setting this value to `false` will apply a `GlowingOverscrollIndicator` instead.
Alternatively, the `buildOverscrollIndicator` method of `ScrollBehavior` or
`MaterialScrollBehavior` can be overridden to further alter the appearance of
overscroll indicators.
**Migration guide**
Code before migration:
```dart
MaterialApp(
scrollBehavior: MaterialScrollBehavior(
androidOverscrollIndicator: AndroidOverscrollIndicator.glow,
),
//...
);
MaterialApp(
scrollBehavior: ScrollBehavior(
androidOverscrollIndicator: AndroidOverscrollIndicator.glow,
),
//...
);
MaterialApp(
theme: Theme.light().copyWith(
androidOverscrollIndicator: AndroidOverscrollIndicator.glow,
),
//...
);
```
Code after migration:
```dart
MaterialApp(
theme: Theme.light().copyWith(
// defaults to true and stretching indicator,
// false results in glowing indicator
useMaterial3: false,
),
//...
);
```
**References**
API documentation:
* [`ScrollBehavior`][]
* [`MaterialScrollBehavior`][]
* [`ThemeData`][]
* [`GlowingOverscrollIndicator`][]
* [`StretchingOverscrollIndicator`][]
Relevant PRs:
* Deprecated in [#100234][]
* Removed in [#133181][]
[`ScrollBehavior`]: {{site.api}}/flutter/widgets/ScrollBehavior-class.html
[`MaterialScrollBehavior`]: {{site.api}}/flutter/material/MaterialScrollBehavior-class.html
[`ThemeData`]: {{site.api}}/flutter/material/ThemeData-class.html
[`GlowingOverscrollIndicator`]: {{site.api}}/flutter/widgets/GlowingOverscrollIndicator-class.html
[`StretchingOverscrollIndicator`]: {{site.api}}/flutter/widgets/StretchingOverscrollIndicator-class.html
[#100234]: {{site.repo.flutter}}/pull/100234
[#133181]: {{site.repo.flutter}}/pull/133181
---
### Updates to ImageProvider and PaintingBinding
Package: flutter
Supported by Flutter Fix: no
The `instantiateImageCodec` method of `PaintingBinding`, as well as the `load`
method of `ImageProvider` and the associated `DecoderCallback` were all
deprecated in v2.13.
The respective replacements are
| Deprecated Method | Current Method |
|-----------------------------------------|---------------------------------------------------|
| `PaintingBinding.instantiateImageCodec` | `PaintingBinding.instantiateImageCodecFromBuffer` |
| `ImageProvider.load` | `ImageProvider.loadBuffer` |
| `DecoderCallback` | `DecoderBufferCallback` |
This change enabled faster performance in image loading by using a buffer.
**Migration guide**
Code before migration:
```dart
PaintingBinding.instance.instantiateImageCodec
```
Code after migration:
```dart
PaintingBinding.instance.instantiateImageCodecFromBuffer
```
**References**
API documentation:
* [`PaintingBinding`][]
* [`ImageProvider`][]
* [`DecoderBufferCallback`][]
Relevant PRs:
* Deprecated in [#103496][]
* Removed in [#132679][]
[`PaintingBinding`]: {{site.api}}/flutter/painting/PaintingBinding-mixin.html
[`ImageProvider`]: {{site.api}}/flutter/painting/ImageProvider-class.html
[`DecoderBufferCallback`]: {{site.api}}/flutter/painting/DecoderBufferCallback.html
[#103496]: {{site.repo.flutter}}/pull/103496
[#132679]: {{site.repo.flutter}}/pull/132679
---
### TestWindow properties
Package: flutter_test
Supported by Flutter Fix: no
To prepare for multi-window support,
many deprecated properties of `TestWindow` have been removed.
While `TestWindow` has been deprecated, it does not qualify
for removal at this time.
Migrating the expired properties now will help in migrating from `TestWindow`.
The following properties were removed:
* `localeTestValue`
* `clearLocaleTestValue`
* `localesTestValue`
* `clearLocalesTestValue`
* `initialLifecycleStateTestValue`
* `textScaleFactorTestValue`
* `clearTextScaleFactorTestValue`
* `platformBrightnessTestValue`
* `clearPlatformBrightnessTestValue`
* `alwaysUse24HourFormatTestValue`
* `clearAlwaysUse24HourTestValue`
* `brieflyShowPasswordTestValue`
* `defaultRouteNameTestValue`
* `clearDefaultRouteNameTestValue`
* `semanticsEnabledTestValue`
* `clearSemanticsEnabledTestValue`
* `accessibilityFeaturesTestValue`
* `clearAccessibilityFeaturesTestValue`
To learn more about this `TestWindow` update, check out
[`TestWindow` migration guide][].
[`TestWindow` migration guide]: /release/breaking-changes/window-singleton
**Migration guide**
Code before migration:
```dart
testWidgets('My test', (WidgetTester tester) aysnc {
// For all instances, replace window with platformDispatcher
tester.binding.window.textScaleFactorTestValue = 42;
addTearDown(tester.binding.window.clearTextScaleFactorTestValue);
// ...
});
```
Code after migration:
```dart
testWidgets('My test', (WidgetTester tester) aysnc {
// For all instances, replace window with platformDispatcher
tester.binding.platformDispatcher.textScaleFactorTestValue = 42;
addTearDown(tester.binding.platformDispatcher.clearTextScaleFactorTestValue);
// ...
});
```
**References**
API documentation:
* [`WidgetTester`][]
* [`TestWidgetsFlutterBinding`][]
* [`TestPlatformDispatcher`][]
Relevant PRs:
* Deprecated in [#99443][]
* Removed in [#131098][]
[`WidgetTester`]: {{site.api}}/flutter/flutter_test/WidgetTester-class.html
[`TestWidgetsFlutterBinding`]: {{site.api}}/flutter/flutter_test/TestWidgetsFlutterBinding-class.html
[`TestPlatformDispatcher`]: {{site.api}}/flutter/flutter_test/TestPlatformDispatcher-class.html
[#99443]: {{site.repo.flutter}}/pull/99443
[#131098]: {{site.repo.flutter}}/pull/131098
---
## Timeline
In stable release: 3.16
| website/src/release/breaking-changes/3-13-deprecations.md/0 | {
"file_path": "website/src/release/breaking-changes/3-13-deprecations.md",
"repo_id": "website",
"token_count": 3942
} | 1,240 |
---
title: AnnotatedRegionLayers return local position relative to clipping region
description: >
Provide annotation searches with reliable and meaningful local positions.
---
## Summary
The local position returned by `AnnotatedRegionLayers` in an
annotation search has been changed to be relative to the clipping
region instead of the layer. This makes the local position more
meaningful and reliable, but breaks code that directly performs
annotation searches and uses the local position.
## Context
Annotations are metadata that are assigned during the
rendering phase to regions on the screen.
Searching the annotations with a location gives the
contextual information that contains that location.
They are used to detect mouse events and the theme of app bars.
When `localPosition` was first added to the search result,
it was defined as relative to the layer that owned the annotation,
which turned out to be a design mistake.
The offset from the layer is meaningless and unreliable.
For example, a `Transform` widget draws on the same layer
with an offset if the transform matrix is a simple translation,
or push a dedicated `TransformLayer` if the matrix is non-trivial.
The former case keeps the previous coordinate origin
(for example, the top left corner of the app),
while the latter case moves the position origin since
it's on a new layer. The two cases might not produce noticeable
visual differences, since the extra layer might just be a scale of
99%, despite that the annotation search returns different results.
In order to make this local position reliable, we have to choose
one of the results to stick to.
## Description of change
The `localPosition` returned by an `AnnotatedRegionLayer`
is now the local position it received subtracted by `offset`,
where `offset` is the location of the clipping area relative
to the layer.
```dart
class AnnotatedRegionLayer<T> extends ContainerLayer {
@override
bool findAnnotations<S>(AnnotationResult<S> result, Offset localPosition, { required bool onlyFirst }) {
...
if (/* shouldAddAnnotation */) {
result.add(AnnotationEntry<S>(
annotation: typedValue,
// Used to be:
// localPosition: localPosition,
localPosition: localPosition - offset,
));
}
...
}
}
```
Conceptually, this has changed how `AnnotatedRegionLayer.offset`
and `size` are defined. They used to mean
"the clipping rectangle that restricts the annotation search",
while they now jointly represent
"the region of the annotation object".
## Migration guide
Code that is actively using this local position is probably
directly interacting with layers, since using render objects or
widgets have already made this result unreliable. In order to
preserve the previous behavior, you can reimplement
`AnnotatedRegionLayer` to return a local position without
subtracting the offset.
## Timeline
Landed in version: 1.15.2<br>
In stable release: 1.17
## References
API documentation:
* [`AnnotatedRegionLayer`][]
* [`AnnotationEntry`][]
Relevant issues:
* [Issue #49568][]
Relevant PR:
* [Make Annotation's localPosition relative to object][]
[`AnnotatedRegionLayer`]: {{site.api}}/flutter/rendering/AnnotatedRegionLayer-class.html
[`AnnotationEntry`]: {{site.api}}/flutter/rendering/AnnotationEntry-class.html
[Issue #49568]: {{site.repo.flutter}}/issues/49568
[Make Annotation's localPosition relative to object]: {{site.repo.flutter}}/pull/50157
| website/src/release/breaking-changes/annotations-return-local-position-relative-to-object.md/0 | {
"file_path": "website/src/release/breaking-changes/annotations-return-local-position-relative-to-object.md",
"repo_id": "website",
"token_count": 916
} | 1,241 |
---
title: Migrate useDeleteButtonTooltip to deleteButtonTooltipMessage of Chips
description: >
Deprecated useDeleteButtonTooltip of chips that have
a delete button in favor of deleteButtonTooltipMessage.
---
## Summary
Using `useDeleteButtonTooltip` of any chip that has a delete button gives a
deprecation warning, or no longer exists when referenced. This includes the
`Chip`, `InputChip`, and `RawChip` widgets.
## Context
The `useDeleteButtonTooltip` of `Chip`, `InputChip`, and `RawChip` widgets is
deprecated in favor of `deleteButtonTooltipMessage`, as the latter can be used
to disable the tooltip of the chip's delete button.
## Description of change
The `deleteButtonTooltipMessage` property provides a message to the
tooltip on the delete button of the chip widgets.
Subsequently, a change was made such that providing an empty string to this
property disables the tooltip.
To avoid redundancy of the API, this change deprecated `useDeleteButtonTooltip`,
which was introduced for this exact functionality. A [Flutter fix][] is
available to help you migrate existing code from `useDeleteButtonTooltip` to
`deleteButtonTooltipMessage`, if you explicitly disabled the tooltip.
## Migration guide
By default, the tooltip of the delete button is always enabled.
To explicitly disable the tooltip, provide an empty string to the
`deleteButtonTooltipMessage` property.
The following code snippets show the migration changes, which are applicable for
`Chip`, `InputChip`, and `RawChip` widgets:
Code before migration:
```dart
Chip(
label: const Text('Disabled delete button tooltip'),
onDeleted: _handleDeleteChip,
useDeleteButtonTooltip: false,
);
RawChip(
label: const Text('Enabled delete button tooltip'),
onDeleted: _handleDeleteChip,
useDeleteButtonTooltip: true,
);
```
Code after migration:
```dart
Chip(
label: const Text('Disabled delete button tooltip'),
onDeleted: _handleDeleteChip,
deleteButtonTooltipMessage: '',
);
RawChip(
label: const Text('Enabled delete button tooltip'),
onDeleted: _handleDeleteChip,
);
```
## Timeline
Landed in version: 2.11.0-0.1.pre<br>
In stable release: 3.0.0
## References
API documentation:
* [`Chip`][]
* [`InputChip`][]
* [`RawChip`][]
Relevant PR:
* [Deprecate `useDeleteButtonTooltip` for Chips][]
[`Chip`]: {{site.api}}/flutter/material/Chip-class.html
[`InputChip`]: {{site.api}}/flutter/material/InputChip-class.html
[`RawChip`]: {{site.api}}/flutter/material/RawChip-class.html
[Deprecate `useDeleteButtonTooltip` for Chips]: {{site.repo.flutter}}/pull/96174
[Flutter fix]: /tools/flutter-fix
| website/src/release/breaking-changes/chip-usedeletebuttontooltip-migration.md/0 | {
"file_path": "website/src/release/breaking-changes/chip-usedeletebuttontooltip-migration.md",
"repo_id": "website",
"token_count": 752
} | 1,242 |
---
title: Change the enterText method to move the caret to the end of the input text
description: >
WidgetTester.enterText and TestTextInput.enterText now
move the caret to the end of the input text.
---
## Summary
The `WidgetTester.enterText` and `TestTextInput.enterText` methods
now move the caret to the end of the input text.
## Context
The caret indicates the insertion point within the current text in an
active input field. Typically, when a new character is entered, the
caret stays immediately after it. In Flutter the caret position is
represented by a collapsed selection. When the selection is invalid,
usually the user won't be able to modify or add text until they
change the selection to a valid value.
`WidgetTester.enterText` and `TestTextInput.enterText` are 2 methods
used in tests to replace the content of the target text field. Prior
to this change, `WidgetTester.enterText` and `TestTextInput.enterText`
set the selection to an invalid range (-1, -1), indicating there's
no selection or caret. This contradicts the typical behavior of an
input field.
## Description of change
In addition to replacing the text with the supplied text,
`WidgetTester.enterText` and `TestTextInput.enterText` now set the
selection to `TextSelection.collapsed(offset: text.length)`, instead
of `TextSelection.collapsed(offset: -1)`.
## Migration guide
It should be very uncommon for tests to have to rely on the
previous behavior of `enterText`, since usually the selection
should not be invalid. **Consider changing the expected values of
your tests to adopt the `enterText` change.**
Common test failures this change may introduce includes:
- Golden test failures:
The caret appears at the end of the text, as opposed to before
the text prior to the change.
- Different `TextEditingValue.selection` after calling `enterText`:
The text field's `TextEditingValue` now has a collapsed
selection with a non-negative offset, as opposed to
`TextSelection.collapsed(offset: -1)` prior to the change.
For instance, you may see
`expect(controller.value.selection.baseOffset, -1);`
failing after `enterText` calls.
If your tests have to rely on setting the selection to invalid,
the previous behavior can be achieved using`updateEditingValue`:
### `TestTextInput.enterText`
Code before migration:
```dart
await testTextInput.enterText(text);
```
Code after migration:
```dart
await testTextInput.updateEditingValue(TextEditingValue(
text: text,
));
```
### `WidgetTester.enterText`
Code before migration:
```dart
await tester.enterText(finder, text);
```
Code after migration:
```dart
await tester.showKeyboard(finder);
await tester.updateEditingValue(TextEditingValue(
text: text,
));
await tester.idle();
```
## Timeline
Landed in version: 2.1.0-13.0.pre<br>
In stable release: 2.5
## References
API documentation:
* [`WidgetTester.enterText`][]
* [`TestTextInput.enterText`][]
Relevant issues:
* [Issue 79494][]
Relevant PR:
* [enterText to move the caret to the end][]
[`WidgetTester.enterText`]: {{site.api}}/flutter/flutter_test/WidgetTester/enterText.html
[`TestTextInput.enterText`]: {{site.api}}/flutter/flutter_test/TestTextInput/enterText.html
[Issue 79494]: {{site.repo.flutter}}/issues/79494
[enterText to move the caret to the end]: {{site.repo.flutter}}/pull/79506
| website/src/release/breaking-changes/enterText-trailing-caret.md/0 | {
"file_path": "website/src/release/breaking-changes/enterText-trailing-caret.md",
"repo_id": "website",
"token_count": 999
} | 1,243 |
---
title: iOS FlutterViewController splashScreenView made nullable
description: >
FlutterViewController splashScreenView changed from nonnull to nullable.
---
## Summary
The `FlutterViewController` property `splashScreenView` has
been changed from `nonnull` to `nullable`.
Old declaration of `splashScreenView`:
```objective-c
@property(strong, nonatomic) UIView* splashScreenView;
```
New declaration of `splashScreenView`:
```objective-c
@property(strong, nonatomic, nullable) UIView* splashScreenView;
```
## Context
Prior to this change, on iOS the `splashScreenView` property returned `nil`
when no splash screen view was set, and
setting the property to `nil` removed the splash screen view.
However, the `splashScreenView` API was incorrectly marked `nonnull`.
This property is most often used when transitioning to
Flutter views in iOS add-to-app scenarios.
## Description of change
While it was possible in Objective-C to work around the
incorrect `nonnull` annotation by setting `splashScreenView` to
a `nil` `UIView`, in Swift this caused a compilation error:
```nocode
error build: Value of optional type 'UIView?' must be unwrapped to a value of type 'UIView'
```
[PR #34743][] updates the property attribute to `nullable`.
It can return `nil` and can be set to `nil` to
remove the view in both Objective-C and Swift.
## Migration guide
If `splashScreenView` is stored in a `UIView` variable in Swift,
update to an optional type `UIView?`.
Code before migration:
```swift
var splashScreenView = UIView()
var flutterEngine = FlutterEngine(name: "my flutter engine")
let flutterViewController = FlutterViewController(engine: flutterEngine, nibName: nil, bundle: nil)
splashScreenView = flutterViewController.splashScreenView // compilation error: Value of optional type 'UIView?' must be unwrapped to a value of type 'UIView'
```
Code after migration:
```swift
var splashScreenView : UIView? = UIView()
var flutterEngine = FlutterEngine(name: "my flutter engine")
let flutterViewController = FlutterViewController(engine: flutterEngine, nibName: nil, bundle: nil)
let splashScreenView = flutterViewController.splashScreenView // compiles successfully
if let splashScreenView = splashScreenView {
}
```
## Timeline
In stable release: 3.7
## References
Relevant PR:
* [Make splashScreenView of FlutterViewController nullable][]
[Make splashScreenView of FlutterViewController nullable]: {{site.repo.engine}}/pull/34743
[PR #34743]: {{site.repo.engine}}/pull/34743
| website/src/release/breaking-changes/ios-flutterviewcontroller-splashscreenview-nullable.md/0 | {
"file_path": "website/src/release/breaking-changes/ios-flutterviewcontroller-splashscreenview-nullable.md",
"repo_id": "website",
"token_count": 742
} | 1,244 |
---
title: Nullable CupertinoThemeData.brightness
description: >
CupertinoThemeData.brightness is now nullable, and it
returns the value specified by the user (defaults to null) as is.
---
## Summary
[`CupertinoThemeData.brightness`] is now nullable.
## Context
[`CupertinoThemeData.brightness`][] is now used to
override `MediaQuery.platformBrightness` for Cupertino widgets.
Before this change, the [`CupertinoThemeData.brightness`][]
getter returned `Brightness.light` when it was set to null.
## Description of change
Previously [`CupertinoThemeData.brightness`][]
was implemented as a getter:
```dart
Brightness get brightness => _brightness ?? Brightness.light;
final Brightness _brightness;
```
It is now a stored property:
```dart
final Brightness brightness;
```
## Migration guide
Generally [`CupertinoThemeData.brightness`][]
is rarely useful outside of the Flutter framework.
To retrieve the brightness for Cupertino widgets,
now use [`CupertinoTheme.brightnessOf`][] instead.
With this change, it is now possible to override
`CupertinoThemeData.brightness` in a `CupertinoThemeData`
subclass to change the brightness override. For example:
```dart
class AlwaysDarkCupertinoThemeData extends CupertinoThemeData {
Brightness brightness => Brightness.dark;
}
```
When a `CupertinoTheme` uses the above `CupertinoThemeData`,
dark mode is enabled for all its Cupertino descendants
that are affected by this `CupertinoTheme`.
## Timeline
Landed in version: 1.16.3<br>
In stable release: 1.17
## References
Design doc:
* [Make `CupertinoThemeData.brightness nullable`][]
API documentation:
* [`CupertinoThemeData.brightness`][]
Relevant issue:
* [Issue 47255][]
Relevant PR:
* [Let material `ThemeData` dictate brightness if `cupertinoOverrideTheme.brightness` is null][]
[`CupertinoTheme.brightnessOf`]: {{site.api}}/flutter/cupertino/CupertinoTheme/brightnessOf.html
[`CupertinoThemeData.brightness`]: {{site.api}}/flutter/cupertino/NoDefaultCupertinoThemeData/brightness.html
[Issue 47255]: {{site.repo.flutter}}/issues/47255
[Let material `ThemeData` dictate brightness if `cupertinoOverrideTheme.brightness` is null]: {{site.repo.flutter}}/pull/47249
[Make `CupertinoThemeData.brightness nullable`]: /go/nullable-cupertinothemedata-brightness
| website/src/release/breaking-changes/nullable-cupertinothemedata-brightness.md/0 | {
"file_path": "website/src/release/breaking-changes/nullable-cupertinothemedata-brightness.md",
"repo_id": "website",
"token_count": 716
} | 1,245 |
---
title: Migration guide for RouteSettings copyWith
description: Removal of RouteSettings copyWith and how to migrate
---
## Summary
The `RouteSettings.copyWith` method is removed, and apps that use
it need to use the constructor to create a new `RouteSettings`
instance instead.
## Context
With the introduction of the [`Page`][] class,
the `RouteSettings.copyWith` was no longer a viable API.
## Description of change
`RouteSettings.copyWith` was removed
## Migration guide
Code before migration:
```dart
RouteSettings newSettings = oldSettings.copyWith(name: 'new name');
```
Code after migration:
```dart
RouteSettings newSettings = RouteSettings(name: 'new name', arguments: oldSettings.arguments);
```
## Timeline
Landed in version: 3.5.0-9.0.pre-137-gc6f6095acd<br>
In stable release: 3.7
## References
Relevant PRs:
* [PR 113860][]: Removes RouteSetting.copyWith.
[PR 113860]: {{site.repo.flutter}}/pull/113860
[`Page`]: {{site.api}}/flutter/widgets/Page-class.html
| website/src/release/breaking-changes/routesettings-copywith-migration.md/0 | {
"file_path": "website/src/release/breaking-changes/routesettings-copywith-migration.md",
"repo_id": "website",
"token_count": 314
} | 1,246 |
---
title: ThemeData's accent properties have been deprecated
description: >
The ThemeData accentColor, accentColorBrightness, accentIconTheme, and
accentTextTheme properties have been deprecated.
---
## Summary
The ThemeData [accentColor][], [accentColorBrightness][], [accentIconTheme][]
and [accentTextTheme][] properties have been deprecated.
The [Material Design spec][] no longer specifies or uses an "accent"
color for the Material components. The default values for component
colors are derived from the overall theme's [color scheme][color-scheme-prop].
The `ColorScheme`'s [secondary color][] is now typically used instead of
`accentColor` and the [onSecondary color][] is used when a contrasting
color is needed.
## Context
This was a small part of the [Material Theme System Updates][] project.
As of Flutter 1.17, the ThemeData accent properties - accentColor,
accentColorBrightness, accentIconTheme, and accentTextTheme - were no
longer used by the Material library. They had been replaced by
dependencies on the theme's [`colorScheme`][color-scheme-prop] and
[`textTheme`][text-scheme-prop] properties as part of the long-term goal of
making the default configurations of the material components depend
almost exclusively on these two properties.
The motivation for these changes is to make the theme system easier to
understand and use. The default colors for all components are to be
defined by the components themselves and based on the color
scheme. The defaults for specific component types can be overridden
with component-specific themes like [`FloatingActionButtonThemeData`][] or
[`CheckBoxTheme`][]. Previously, properties like accentColor were used by a
handful of component types and only in some situations, which made it
difficult to understand the implications of overriding them.
## Description of change
The ThemeData accentColor, accentColorBrightness, accentIconTheme and
accentTextTheme properties have been deprecated because the Material
library no longer uses them.
## Migration guide
### Application theme
[`ThemeData`][] values no longer need to specify accentColor,
accentColorBrightness, accentIconTheme, or accentTextTheme.
To configure the appearance of the material components in about the
same way as before, specify the color scheme's secondary color
instead of accentColor.
Code before migration:
```dart
MaterialApp(
theme: ThemeData(accentColor: myColor),
// ...
);
```
Code after migration:
```dart
final ThemeData theme = ThemeData();
MaterialApp(
theme: theme.copyWith(
colorScheme: theme.colorScheme.copyWith(secondary: myColor),
),
//...
)
```
### `accentColor`
The closest backwards compatible [`ColorScheme`][] color is
[`ColorScheme.secondary`][]. To hew most closely to the latest Material
Design guidelines one can substitute `ColorScheme.primary` instead.
If a contrasting color is needed then use [`ColorScheme.onSecondary`][].
Custom components that used to look up the theme's accentColor, can look up
the `ColorScheme.secondary` instead.
Code before migration:
```dart
Color myColor = Theme.of(context).accentColor;
```
Code after migration:
```dart
Color myColor = Theme.of(context).colorScheme.secondary;
```
### `accentColorBrightness`
The static [`ThemeData.estimateBrightnessForColor()`][] method can be used
to compute the brightness of any color.
### `accentTextTheme`
This was white [`TextStyle`]s for dark themes, black
TextStyles for light themes. In most cases textTheme can be used
instead. A common idiom was to refer to one TextStyle from
accentTextTheme, since the text style's color was guaranteed to contrast
well with the accent color (now `ColorScheme.secondaryColor`).
To get the same result now, specify the text style's color as
`ColorScheme.onSecondary`:
Code before migration:
```dart
TextStyle style = Theme.of(context).accentTextTheme.headline1;
```
Code after migration:
```dart
final ThemeData theme = Theme.of(context);
TextStyle style = theme.textTheme.headline1.copyWith(
color: theme.colorScheme.onSecondary,
)
```
### `accentIconTheme`
This property had only been used to configure the color of icons
within a [`FloatingActionButton`][]. It's now possible to configure the icon
color directly or with the [`FloatingActionButtonThemeData`][]. See
[FloatingActionButton and ThemeData's accent properties][].
## Timeline
Landed in version: 2.3.0-0.1.pre<br>
In stable release: 2.5
## References
API documentation:
* [`ColorScheme`][]
* [`FloatingActionButton`][]
* [`FloatingActionButtonThemeData`][]
* [`TextStyle`][]
* [`TextTheme`][]
* [`Theme`][]
* [`ThemeData`][]
Relevant issues:
* [Issue #56918][]
Relevant PRs:
* [PR #81336][]
Other:
* [Material Theme System Updates][]
[accentColor]: {{site.api}}/flutter/material/ThemeData/accentColor.html
[accentColorBrightness]: {{site.api}}/flutter/material/ThemeData/accentColorBrightness.html
[accentIconTheme]: {{site.api}}/flutter/material/ThemeData/accentIconTheme.html
[accentTextTheme]: {{site.api}}/flutter/material/ThemeData/accentTextTheme.html
[`CheckboxTheme`]: {{site.api}}/flutter/material/CheckboxTheme-class.html
[color-scheme-prop]: {{site.api}}/flutter/material/ThemeData/colorScheme.html
[`colorScheme.onSecondary`]: {{site.api}}/flutter/material/ColorScheme/onSecondary.html
[`colorScheme.secondary`]: {{site.api}}/flutter/material/ColorScheme/secondary.html
[`ColorScheme`]: {{site.api}}/flutter/material/ColorScheme-class.html
[Issue #56918]: {{site.repo.flutter}}/issues/56918
[FloatingActionButton and ThemeData's accent properties]: /release/breaking-changes/fab-theme-data-accent-properties
[`FloatingActionButton`]: {{site.api}}/flutter/material/FloatingActionButton-class.html
[`FloatingActionButtonThemeData`]: {{site.api}}/flutter/material/FloatingActionButtonThemeData-class.html
[Material Design spec]: {{site.material}}/styles/color
[Material Theme System Updates]: /go/material-theme-system-updates
[secondary color]: {{site.api}}/flutter/material/ColorScheme/secondary.html
[onSecondary color]: {{site.api}}/flutter/material/ColorScheme/onSecondary.html
[PR #81336]: {{site.repo.flutter}}/pull/81336
[`TextStyle`]: {{site.api}}/flutter/painting/TextStyle-class.html
[text-scheme-prop]: {{site.api}}/flutter/material/ThemeData/textTheme.html
[`TextTheme`]: {{site.api}}/flutter/material/TextTheme-class.html
[`Theme`]: {{site.api}}/flutter/material/Theme-class.html
[`ThemeData`]: {{site.api}}/flutter/material/ThemeData-class.html
[`ThemeData.estimateBrightnessForColor()`]: {{site.api}}/flutter/material/ThemeData/estimateBrightnessForColor.html
| website/src/release/breaking-changes/theme-data-accent-properties.md/0 | {
"file_path": "website/src/release/breaking-changes/theme-data-accent-properties.md",
"repo_id": "website",
"token_count": 1956
} | 1,247 |
---
title: Change log for Flutter 1.2.2
short-title: 1.2.2 change log
description: Change log for Flutter 1.2.2 containing a list of all PRs merged for this release.
---
## PRs closed in this release of flutter/flutter
From Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800
[21157](https://github.com/flutter/flutter/pull/21157) Swap scope with gesture (cla: yes, f: scrolling, framework)
[22139](https://github.com/flutter/flutter/pull/22139) move INTERNET permission to debug/AndroidManifest.xml (cla: yes, tool, β£ platform-android)
[23118](https://github.com/flutter/flutter/pull/23118) Setting icon color to first ListTile in ExpansionTile. Fixes #23053 (cla: yes, f: material design, framework)
[23188](https://github.com/flutter/flutter/pull/23188) Check for duplicative Flutter.framework emeddings when building for Xcode 10 (cla: yes, tool, βΊβ¬ platform-ios)
[23424](https://github.com/flutter/flutter/pull/23424) Teach drag start behaviors to DragGestureRecognizer (a: text input, cla: yes, d: examples, f: cupertino, f: date/time picker, f: gestures, f: material design, f: scrolling, framework)
[23506](https://github.com/flutter/flutter/pull/23506) Create slider with editable numerical value in gallery (cla: yes, f: material design, framework)
[23531](https://github.com/flutter/flutter/pull/23531) [O] Remove many timeouts. (a: tests, cla: yes, t: gradle, team, tool)
[23677](https://github.com/flutter/flutter/pull/23677) Add animation tests for changes to the FloatingActionButtonLocation (cla: yes, f: material design, framework)
[23759](https://github.com/flutter/flutter/pull/23759) Adds CupertinoTheme (cla: yes, f: cupertino, f: material design, framework, team: gallery)
[23782](https://github.com/flutter/flutter/pull/23782) Add flutter_shared assets to module artifact (a: assets, t: gradle, tool)
[23817](https://github.com/flutter/flutter/pull/23817) Fix project directory has spaces lead to compile error (a: existing-apps, cla: yes, tool, β£ platform-android)
[23860](https://github.com/flutter/flutter/pull/23860) Clearing pendingImages when the cache is cleared or evicted. (cla: yes, framework)
[23889](https://github.com/flutter/flutter/pull/23889) Flutter doctor error message lookup (cla: yes, t: flutter doctor, tool)
[23919](https://github.com/flutter/flutter/pull/23919) Allow detection of taps on TabBar (cla: yes, f: material design, framework)
[24156](https://github.com/flutter/flutter/pull/24156) [Material] Bottom app bar theme (cla: yes, f: material design, framework)
[24169](https://github.com/flutter/flutter/pull/24169) [Material] Theme-able elevation on dialogs. (cla: yes, f: material design, framework)
[24209](https://github.com/flutter/flutter/pull/24209) Do not ignore pubspec.lock in project templates (cla: yes, tool)
[24440](https://github.com/flutter/flutter/pull/24440) Adding support for android app bundle - Issue #17829 (cla: no, t: gradle, tool, β£ platform-android)
[24449](https://github.com/flutter/flutter/pull/24449) Text field style merge (cla: yes, f: material design, framework)
[24457](https://github.com/flutter/flutter/pull/24457) Revise Android and iOS gestures on Material TextField (a: text input, cla: yes, f: cupertino, f: material design, framework)
[24511](https://github.com/flutter/flutter/pull/24511) [H] Undeprecate BigInteger support, but document what it actually does. (cla: yes, framework)
[24513](https://github.com/flutter/flutter/pull/24513) Add some basic tests for evaluating expressions in `flutter test` (a: debugging, a: tests, cla: yes, tool)
[24515](https://github.com/flutter/flutter/pull/24515) Add some a basic debug stepping tests (a: debugging, cla: yes, tool)
[24527](https://github.com/flutter/flutter/pull/24527) obscureText and enableInteractiveSelection defaults (a: text input, cla: yes, framework)
[24537](https://github.com/flutter/flutter/pull/24537) Add ipv6 and observatory port support to the attach command. (cla: yes, customer: dream (g3), tool)
[24551](https://github.com/flutter/flutter/pull/24551) Add consumedScrollExtent to SliverConstraints as reported by Viewport (cla: yes, f: scrolling, framework)
[24554](https://github.com/flutter/flutter/pull/24554) Adds force press gesture detector and recognizer (cla: yes, f: gestures, framework)
[24580](https://github.com/flutter/flutter/pull/24580) Remove code signing special casing for Googlers round 2 (cla: yes, tool, βΊβ¬ platform-ios)
[24581](https://github.com/flutter/flutter/pull/24581) [OR] Cleanup device lab test and remove a timeout. (cla: yes, t: hot reload, tool)
[24587](https://github.com/flutter/flutter/pull/24587) Validate style in TextField (cla: yes, f: material design, framework)
[24632](https://github.com/flutter/flutter/pull/24632) Include error message in crash reports (cla: yes, tool)
[24635](https://github.com/flutter/flutter/pull/24635) TextFormField cursor params (a: text input, cla: yes, f: material design, framework)
[24643](https://github.com/flutter/flutter/pull/24643) [H] Some minor tweaks to InputDecoration (mainly docs). (cla: yes, f: material design, framework)
[24669](https://github.com/flutter/flutter/pull/24669) Ensure that cache dirs and files have appropriate permissions (cla: yes, tool)
[24728](https://github.com/flutter/flutter/pull/24728) [H] Support setting the elevation of disabled floating action buttons (cla: yes, f: material design, framework)
[24736](https://github.com/flutter/flutter/pull/24736) [H] Provide some more locations for the FAB. (cla: yes, f: material design, framework)
[24744](https://github.com/flutter/flutter/pull/24744) drop/restore focus when app becomes invisible/visible (a: text input, cla: yes, framework)
[24746](https://github.com/flutter/flutter/pull/24746) Change the required version of adb, as older versions break hot reload. (cla: yes, tool, β£ platform-android)
[24752](https://github.com/flutter/flutter/pull/24752) Replace platform check with switch (cla: yes, f: material design)
[24754](https://github.com/flutter/flutter/pull/24754) Replace Android-specific check with switch (cla: yes, framework, team)
[24761](https://github.com/flutter/flutter/pull/24761) Adds support for floating cursor (a: text input, cla: yes, framework)
[24767](https://github.com/flutter/flutter/pull/24767) [H] Improved positioning of leading and trailing widgets in overflowing ListTiles (cla: yes, f: material design, framework)
[24779](https://github.com/flutter/flutter/pull/24779) Skip formatters if text has not changed (a: text input, cla: yes, framework)
[24797](https://github.com/flutter/flutter/pull/24797) Iterate through potential grapheme cluster lengths in text painter (a: text input, a: typography, cla: yes, framework)
[24816](https://github.com/flutter/flutter/pull/24816) [H] ClipPath.shape and related fixes (cla: yes, f: material design, framework)
[24830](https://github.com/flutter/flutter/pull/24830) Implement hover support for mouse pointers. (cla: yes, f: gestures, framework, β platform-chromebook, β£ platform-android)
[24848](https://github.com/flutter/flutter/pull/24848) [H] Handle errors in `compute()` by propagating them to the Future. (cla: yes, framework)
[24862](https://github.com/flutter/flutter/pull/24862) Fix semantics compiler for offstage children (a: accessibility, cla: yes, framework, severe: crash)
[24868](https://github.com/flutter/flutter/pull/24868) Clarify dart:ui dependencies in foundation library (cla: yes, d: api docs, framework)
[24876](https://github.com/flutter/flutter/pull/24876) Adds a fade in and out, rounds corners, fixes offset and fixes height of cursor on iOS (a: text input, cla: yes, f: cupertino, f: material design, framework)
[24878](https://github.com/flutter/flutter/pull/24878) Add a flutter-attach entry point for fuchsia (cla: yes, tool)
[24881](https://github.com/flutter/flutter/pull/24881) Remove offstage wording from KeepAlive (cla: yes, framework)
[24889](https://github.com/flutter/flutter/pull/24889) Update AUTHORS (cla: yes, team)
[24890](https://github.com/flutter/flutter/pull/24890) Remove deprecated lint "prefer_bool_in_asserts". (cla: yes, team)
[24892](https://github.com/flutter/flutter/pull/24892) Handle a TabBarView special case: last tab deleted before animation ends (cla: yes, f: material design, framework)
[24930](https://github.com/flutter/flutter/pull/24930) Run flutter tests through mini test engine when run directly (flutter run -t test_file) (a: tests, cla: yes, framework)
[24932](https://github.com/flutter/flutter/pull/24932) Fixed Typography null factory constructor (cla: yes, f: material design, framework)
[24941](https://github.com/flutter/flutter/pull/24941) Update Switch doc: disabled state (cla: yes, f: material design, framework)
[24942](https://github.com/flutter/flutter/pull/24942) Fix debugPrint(null) to not crash (cla: yes, framework, severe: crash)
[24944](https://github.com/flutter/flutter/pull/24944) Fix flutter root error message string interpolation (cla: yes, tool)
[24953](https://github.com/flutter/flutter/pull/24953) Fuchsia multiple devices and target (cla: yes, customer: fuchsia, tool)
[24976](https://github.com/flutter/flutter/pull/24976) Support TextField multi-line hint text #20941 (cla: yes, f: material design, framework)
[24989](https://github.com/flutter/flutter/pull/24989) Add documentation for how to use annotated region (cla: yes, d: api docs, framework)
[24993](https://github.com/flutter/flutter/pull/24993) Add InputDecoration alignLabelWithHint parameter (cla: yes, f: material design, framework)
[24994](https://github.com/flutter/flutter/pull/24994) Add polling module discovery for Fuchsia (cla: yes, tool, β platform-fuchsia)
[24999](https://github.com/flutter/flutter/pull/24999) Remove TextField.noMaxLength, use maxLength = -1 instead (cla: yes, f: material design, framework)
[25003](https://github.com/flutter/flutter/pull/25003) Fix typo in documentation (cla: yes, d: api docs, framework)
[25007](https://github.com/flutter/flutter/pull/25007) Warn when building on master channel (cla: yes, tool)
[25008](https://github.com/flutter/flutter/pull/25008) [Slider] Custom track, ticker, and overlay shape painters (cla: yes, f: material design, framework)
[25013](https://github.com/flutter/flutter/pull/25013) Adds a small fix to the Cupertino Navigation demo (cla: yes, team: gallery)
[25046](https://github.com/flutter/flutter/pull/25046) Add a check for build methods that return context.widget (cla: yes, framework)
[25048](https://github.com/flutter/flutter/pull/25048) Don't crash if pinned & floating AppBar has less than minExtent remainingPaintExtent (cla: yes, framework, severe: crash)
[25049](https://github.com/flutter/flutter/pull/25049) Fix behavior of handleDrawFrame() in benchmark mode. (a: tests, cla: yes, framework)
[25051](https://github.com/flutter/flutter/pull/25051) Do not fade out text for pinned & floating AppBar (cla: yes, f: material design, framework)
[25055](https://github.com/flutter/flutter/pull/25055) Include cursor in textfield intrinsic width measurement (a: text input, cla: yes, framework)
[25058](https://github.com/flutter/flutter/pull/25058) ensure lastBuildTimestamp is set before early return (cla: yes, tool)
[25076](https://github.com/flutter/flutter/pull/25076) fix: cuertino dialog action background blur effect (cla: yes, f: cupertino, framework)
[25079](https://github.com/flutter/flutter/pull/25079) Fix Podfile issue #24342 (cla: yes, tool, waiting for tree to go green, βΊβ¬ platform-ios)
[25091](https://github.com/flutter/flutter/pull/25091) Add animations to SliverAppBar doc (cla: yes, d: api docs, f: material design, framework)
[25094](https://github.com/flutter/flutter/pull/25094) Include empty config message in 'flutter config' output (cla: yes, tool)
[25095](https://github.com/flutter/flutter/pull/25095) InputDecorator Count Widget (cla: yes, f: material design, framework)
[25096](https://github.com/flutter/flutter/pull/25096) Change network image URL in doc (cla: yes, d: api docs, framework)
[25120](https://github.com/flutter/flutter/pull/25120) Replace deprecated link (to design-principles page) in comment (cla: yes, d: api docs, f: material design, framework)
[25125](https://github.com/flutter/flutter/pull/25125) Add reverse functionality to repeat() of AnimationController (a: animation, cla: yes, framework)
[25126](https://github.com/flutter/flutter/pull/25126) Fix error message and other typos (cla: yes, framework)
[25154](https://github.com/flutter/flutter/pull/25154) Don't require the AVD folder to exist in order to run `flutter emulators` (cla: yes, tool, β£ platform-android)
[25159](https://github.com/flutter/flutter/pull/25159) fix #25143 Successive calls to `precacheImage()` throw an exception (cla: yes, framework, waiting for tree to go green)
[25168](https://github.com/flutter/flutter/pull/25168) Fixed an InheritedWidget code sample typo (cla: yes, framework)
[25178](https://github.com/flutter/flutter/pull/25178) Adds favicon to Dash/Zeal docset, adds OpenSearch metadata. (cla: yes, team)
[25183](https://github.com/flutter/flutter/pull/25183) Add navigatorKey to CupertinoTabView (cla: yes, f: cupertino, framework)
[25184](https://github.com/flutter/flutter/pull/25184) Add imports section to sample code templates, and more docs. (cla: yes, team)
[25186](https://github.com/flutter/flutter/pull/25186) Temporarily add back filtered bintray ExoPlayer repository (cla: yes, team: gallery)
[25217](https://github.com/flutter/flutter/pull/25217) Fixed Spelling. (cla: yes, framework)
[25221](https://github.com/flutter/flutter/pull/25221) Support ANDROID_SDK_ROOT in addition to ANDROID_HOME (cla: yes, tool, β£ platform-android)
[25228](https://github.com/flutter/flutter/pull/25228) IntrinsicWidth stepWidth or stepHeight == 0.0 (cla: yes, framework)
[25229](https://github.com/flutter/flutter/pull/25229) Right aligned backspace bug (a: text input, cla: yes, framework)
[25237](https://github.com/flutter/flutter/pull/25237) Fix typo (a: text input, cla: yes, d: api docs, framework)
[25238](https://github.com/flutter/flutter/pull/25238) [OR] Update links for China help (cla: yes, tool)
[25239](https://github.com/flutter/flutter/pull/25239) Call mark* methods before attaching child (cla: yes, framework, severe: crash)
[25240](https://github.com/flutter/flutter/pull/25240) Revert "Ensure that cache dirs and files have appropriate permissions" (cla: yes, tool)
[25243](https://github.com/flutter/flutter/pull/25243) Allow snippets tool to be run from arbitrary CWDs (cla: yes, d: api docs, team)
[25269](https://github.com/flutter/flutter/pull/25269) Make doctor output consistent between VS Code/IntelliJ/Android Studio when plugins are missing (cla: yes, t: flutter doctor, tool)
[25288](https://github.com/flutter/flutter/pull/25288) Revert "Add ipv6 and observatory port support to the attach command." (cla: yes, tool)
[25300](https://github.com/flutter/flutter/pull/25300) Remove uses-material-design from hello_world example (a: size, cla: yes, d: examples)
[25301](https://github.com/flutter/flutter/pull/25301) Flutter tool support for automatic saving of JIT compilation trace (cla: yes, framework, tool)
[25303](https://github.com/flutter/flutter/pull/25303) Add ipv6 and observatory port support to the attach command (cla: yes, tool)
[25305](https://github.com/flutter/flutter/pull/25305) Use stderr instead of stdout to contain errors in flutter attach test (a: tests, cla: yes)
[25332](https://github.com/flutter/flutter/pull/25332) [fuchsia] Get Dart VM service ports from The Hub (cla: yes, tool, β platform-fuchsia)
[25335](https://github.com/flutter/flutter/pull/25335) Revert "obscureText and enableInteractiveSelection defaults" (a: text input, cla: yes, framework)
[25339](https://github.com/flutter/flutter/pull/25339) [Material] Theme-able TextStyles for AlertDialog (cla: yes, f: material design, framework)
[25342](https://github.com/flutter/flutter/pull/25342) Revert "Revert "obscureText and enableInteractiveSelection defaults"" (a: text input, cla: yes, f: material design, framework)
[25344](https://github.com/flutter/flutter/pull/25344) Add fuchsia devices to daemon command (cla: yes, customer: fuchsia, tool)
[25345](https://github.com/flutter/flutter/pull/25345) assert(elevation >= 0.0) and doc clarifications (cla: yes, customer: fuchsia, f: material design, framework)
[25352](https://github.com/flutter/flutter/pull/25352) Revert "Adds support for floating cursor" (a: text input, cla: yes, f: cupertino, f: material design, framework)
[25380](https://github.com/flutter/flutter/pull/25380) Revert "Use stderr instead of stdout to contain errors in flutter attach test" (a: tests, cla: yes)
[25381](https://github.com/flutter/flutter/pull/25381) Add cull opacity perf test to device lab (a: tests, cla: yes, framework, severe: performance)
[25382](https://github.com/flutter/flutter/pull/25382) Revert "Call mark* methods before attaching child (#25239)" (cla: yes, framework, severe: crash)
[25384](https://github.com/flutter/flutter/pull/25384) Adds support for floating cursor (a: text input, cla: yes, f: cupertino, f: material design, framework)
[25390](https://github.com/flutter/flutter/pull/25390) Revert "drop/restore focus when app becomes invisible/visible" (a: text input, cla: yes, framework)
[25394](https://github.com/flutter/flutter/pull/25394) Update localizations (a: internationalization, cla: yes, framework)
[25395](https://github.com/flutter/flutter/pull/25395) Reland "Call mark* methods before attaching child (#25239)" (cla: yes, framework, severe: crash)
[25413](https://github.com/flutter/flutter/pull/25413) Added key.properties and *.jks to .gitignore (cla: yes, tool, waiting for tree to go green)
[25416](https://github.com/flutter/flutter/pull/25416) try disabling flutter run test (cla: yes, team)
[25440](https://github.com/flutter/flutter/pull/25440) don't warn for non-matching device discoverers (cla: yes, tool)
[25443](https://github.com/flutter/flutter/pull/25443) fix the daemon device.getDevices call (cla: yes, tool)
[25470](https://github.com/flutter/flutter/pull/25470) Support Java 1.8 (cla: yes, t: gradle, tool)
[25472](https://github.com/flutter/flutter/pull/25472) Read correct cached VM snapshot in dynamic mode (PRODUCT vs RELEASE) (cla: yes, tool)
[25473](https://github.com/flutter/flutter/pull/25473) TextField.onChanged() doc update (a: text input, cla: yes, d: api docs, framework)
[25474](https://github.com/flutter/flutter/pull/25474) fix some formatting issues (a: animation, cla: yes, f: cupertino, framework, team)
[25477](https://github.com/flutter/flutter/pull/25477) TransitionRoute.canTransitionFrom,To() doc update (cla: yes, d: api docs, f: routes, framework)
[25479](https://github.com/flutter/flutter/pull/25479) Depend on the goldens repo through git. (a: tests, cla: yes, tool)
[25482](https://github.com/flutter/flutter/pull/25482) Mark flaky tests as such (a: tests, cla: yes)
[25483](https://github.com/flutter/flutter/pull/25483) Update examples to match the new version of generated build.gradle (cla: yes, d: examples)
[25484](https://github.com/flutter/flutter/pull/25484) Fix gradle local.properties tests that were never excersized (cla: yes, t: gradle, tool)
[25488](https://github.com/flutter/flutter/pull/25488) Transition Curve Fix (a: animation, cla: yes, f: cupertino, framework)
[25489](https://github.com/flutter/flutter/pull/25489) Video demo instrumentation (a: tests, cla: yes, team: gallery)
[25512](https://github.com/flutter/flutter/pull/25512) Fix failed assert when running `flutter test` with `--start-paused` (cla: yes, tool)
[25513](https://github.com/flutter/flutter/pull/25513) make "See also" sections uniform (cla: yes, team)
[25514](https://github.com/flutter/flutter/pull/25514) fix typo (cla: yes, team)
[25515](https://github.com/flutter/flutter/pull/25515) Write snippets index file when generating docs (cla: yes, d: api docs, team)
[25516](https://github.com/flutter/flutter/pull/25516) Change flutter create to use master-docs.flutter.io instead of firebase URL. (cla: yes, tool)
[25520](https://github.com/flutter/flutter/pull/25520) Fix flutter tool to actually honor --build-number/--build-name flags (cla: yes, t: gradle, tool)
[25521](https://github.com/flutter/flutter/pull/25521) fix indentation in doc comments (cla: yes, team)
[25563](https://github.com/flutter/flutter/pull/25563) Revert "Update examples to match the new version of generated build.gradle (#25483)" (cla: yes, d: examples, t: gradle, team, team: gallery)
[25568](https://github.com/flutter/flutter/pull/25568) Fix the build (a: tests, cla: yes, team)
[25569](https://github.com/flutter/flutter/pull/25569) Reland: Update examples to match the new version of generated build.gradle (#25483) (cla: yes, d: examples, t: gradle, team)
[25573](https://github.com/flutter/flutter/pull/25573) Update DayPicker,DatePicker doc "see also" sections (cla: yes, d: api docs, f: date/time picker, f: material design, framework)
[25574](https://github.com/flutter/flutter/pull/25574) Use full textspan tree instead of top level textspan (cla: yes, framework)
[25576](https://github.com/flutter/flutter/pull/25576) Flutter tool support for building dynamic patches on Android (cla: yes, t: gradle, tool)
[25579](https://github.com/flutter/flutter/pull/25579) fix doc-comment snippets (cla: yes, team)
[25582](https://github.com/flutter/flutter/pull/25582) Add missing dependency to fix the build (cla: yes, team, team: gallery)
[25584](https://github.com/flutter/flutter/pull/25584) Fix material reference in CupertinoPicker doc (cla: yes, d: api docs, f: cupertino, framework)
[25585](https://github.com/flutter/flutter/pull/25585) Expose font fallback API in TextStyle, Roll engine 54a3577c0139..215ca1560088 (8 commits) (a: typography, cla: yes, f: material design, framework)
[25586](https://github.com/flutter/flutter/pull/25586) Report devfs stats (cla: yes, tool)
[25593](https://github.com/flutter/flutter/pull/25593) Let CupertinoTabScaffold handle keyboard insets too (cla: yes, f: cupertino, framework)
[25594](https://github.com/flutter/flutter/pull/25594) Switch over to the new name for compilation trace native function (cla: yes, framework)
[25595](https://github.com/flutter/flutter/pull/25595) Don't parse APK unless explicitly requested (cla: yes, tool)
[25604](https://github.com/flutter/flutter/pull/25604) no period after an alone reference in see also section (cla: yes, d: api docs, framework)
[25631](https://github.com/flutter/flutter/pull/25631) Default baseline build options (cla: yes, tool)
[25642](https://github.com/flutter/flutter/pull/25642) Revert dependency upgrade to see if it helps with build times and APK size (cla: yes, team, team: gallery)
[25645](https://github.com/flutter/flutter/pull/25645) Friendlier flags for Dart compilation training. (cla: yes, tool)
[25646](https://github.com/flutter/flutter/pull/25646) Revert "[O] Remove many timeouts." (a: tests, cla: yes, t: flutter driver, tool)
[25670](https://github.com/flutter/flutter/pull/25670) 3D SemanticsTree (a: accessibility, cla: yes, f: material design, framework)
[25674](https://github.com/flutter/flutter/pull/25674) Updated Shrine demo (a: tests, cla: yes, team, team: gallery)
[25678](https://github.com/flutter/flutter/pull/25678) Pin the goldens repo to a specific commit in the android_views test. (a: tests, cla: yes)
[25682](https://github.com/flutter/flutter/pull/25682) Move runner directory messages to the user messages class (a: internationalization, cla: yes, tool)
[25683](https://github.com/flutter/flutter/pull/25683) Selects a word on force tap (a: text input, cla: yes, f: cupertino, f: material design, framework)
[25718](https://github.com/flutter/flutter/pull/25718) Fix merge conflict. (cla: yes, f: material design, framework)
[25788](https://github.com/flutter/flutter/pull/25788) Add Robert Penner's easing functions (a: animation, cla: yes, framework)
[25790](https://github.com/flutter/flutter/pull/25790) Clarify doc for AnimatedContainer (a: animation, cla: yes, d: api docs, framework)
[25792](https://github.com/flutter/flutter/pull/25792) Actively reject UiKitView gestures. (a: platform-views, cla: yes, f: gestures, framework)
[25796](https://github.com/flutter/flutter/pull/25796) Allow dynamic patches without a patch number. (cla: yes, t: gradle, tool)
[25798](https://github.com/flutter/flutter/pull/25798) remove early-stage from Gallery's About screen (cla: yes, team, team: gallery)
[25799](https://github.com/flutter/flutter/pull/25799) Make LicensePage respect the notch (cla: yes, f: material design, framework)
[25815](https://github.com/flutter/flutter/pull/25815) Flutter engine roll with dart roll (cla: yes)
[25817](https://github.com/flutter/flutter/pull/25817) fix flutter run in dev/manual_tests (a: tests, cla: yes, team)
[25849](https://github.com/flutter/flutter/pull/25849) Roll engine to f0a1d6f91 (cla: yes)
[25854](https://github.com/flutter/flutter/pull/25854) Fix analyzer "prefer const" warning. (cla: yes, team)
[25857](https://github.com/flutter/flutter/pull/25857) Mark flutter_gallery__back_button_memory as flaky. (a: tests, cla: yes, team, team: gallery)
[25863](https://github.com/flutter/flutter/pull/25863) Friendlier messages when using dynamic patching (cla: yes, tool)
[25864](https://github.com/flutter/flutter/pull/25864) Make decodeImageFromList mockable (cla: yes, framework)
[25865](https://github.com/flutter/flutter/pull/25865) [H] Add ImageStreamCompleter.hasListeners (and cleanup) (cla: yes, f: material design, framework)
[25872](https://github.com/flutter/flutter/pull/25872) Optimize cocoapods logic in flutter doctor. (cla: yes, customer: gold, tool, waiting for tree to go green, βΊβ¬ platform-ios)
[25888](https://github.com/flutter/flutter/pull/25888) Extract TestBorder into a utility file (a: tests, cla: yes)
[25922](https://github.com/flutter/flutter/pull/25922) update lint list (cla: yes, team)
[25974](https://github.com/flutter/flutter/pull/25974) Add a validator to ensure NO_PROXY is set correctly if HTTP_PROXY is set (cla: yes, t: flutter doctor, tool)
[25977](https://github.com/flutter/flutter/pull/25977) Add didSendFirstFrameEvent service extension. (cla: yes, framework)
[25980](https://github.com/flutter/flutter/pull/25980) Ensure all errors thrown by image providers can be caught by developers. (cla: yes, framework)
[25984](https://github.com/flutter/flutter/pull/25984) use RRect to draw avatar check on chip (cla: yes, f: material design, framework)
[25988](https://github.com/flutter/flutter/pull/25988) Add Golden test for background painting order. (a: tests, cla: yes, engine)
[25992](https://github.com/flutter/flutter/pull/25992) Add docs to TextStyle for fontFamilyFallback/Custom font fallback (cla: yes, d: api docs, framework)
[25994](https://github.com/flutter/flutter/pull/25994) Simplify ImageStream(Completer).removeListener (cla: yes, framework)
[25995](https://github.com/flutter/flutter/pull/25995) Address code review comment. (cla: yes, team)
[26001](https://github.com/flutter/flutter/pull/26001) Add long-press-drag cursor move support for text fields (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)
[26015](https://github.com/flutter/flutter/pull/26015) [fuchsia] Fix flutter_gallery BUILD.gn (cla: yes, team, team: gallery)
[26017](https://github.com/flutter/flutter/pull/26017) Fix recursive link resulted `flutter doctor` stucking. (cla: yes, customer: gold, tool, β£ platform-android)
[26021](https://github.com/flutter/flutter/pull/26021) Fix SliverAppBar title opacity and test all cases (cla: yes, f: material design, framework)
[26024](https://github.com/flutter/flutter/pull/26024) Workaround the Gradle crash due to non ASCII characters. (cla: yes, team)
[26030](https://github.com/flutter/flutter/pull/26030) Turn clipping on for Card Demo (cla: yes, team, team: gallery)
[26031](https://github.com/flutter/flutter/pull/26031) Clean gallery about page post-1.0 (cla: yes, team, team: gallery)
[26039](https://github.com/flutter/flutter/pull/26039) Report hot reload statistics. (cla: yes, t: hot reload, tool)
[26041](https://github.com/flutter/flutter/pull/26041) Update dartdoc to 0.27.0 (cla: yes, d: api docs, team)
[26042](https://github.com/flutter/flutter/pull/26042) Update material spec references in BottomSheet et al., Scaffold (cla: yes, d: api docs, f: material design, framework)
[26069](https://github.com/flutter/flutter/pull/26069) Improve the intergrity checking for "gradle wrapper". (cla: yes, t: gradle, tool)
[26084](https://github.com/flutter/flutter/pull/26084) Improve message when saving compilation training data (cla: yes, tool)
[26088](https://github.com/flutter/flutter/pull/26088) Fix typos introduced with the TextField.onTap PR, udpated debugFillProperties (cla: yes, f: material design, framework)
[26089](https://github.com/flutter/flutter/pull/26089) Explain that BoxDecoration doesn't do clip. (cla: yes, d: api docs, framework)
[26090](https://github.com/flutter/flutter/pull/26090) Replace netls and netaddr with dev_finder (cla: yes, tool, β platform-fuchsia)
[26101](https://github.com/flutter/flutter/pull/26101) Fix a floating snapping SliverAppBar crash (cla: yes, f: material design, framework)
[26104](https://github.com/flutter/flutter/pull/26104) Put correct VM snapshot in APK when using cached engine (cla: yes, tool)
[26107](https://github.com/flutter/flutter/pull/26107) Better error messages for flutter tool --dynamic flag. (cla: yes, tool)
[26143](https://github.com/flutter/flutter/pull/26143) Fix DropDownButton with no items resulting in RenderFlex overflow (cla: yes, f: material design, framework)
[26153](https://github.com/flutter/flutter/pull/26153) Remove the cc @Hixie from no-response template (cla: yes, team)
[26192](https://github.com/flutter/flutter/pull/26192) [FAB] Adding FAB as class in tests. (cla: yes, f: material design, framework)
[26199](https://github.com/flutter/flutter/pull/26199) Fix tristate checkbox false to null transition, test ALL transitions (cla: yes, f: material design, framework)
[26201](https://github.com/flutter/flutter/pull/26201) Prevent calls to view.uiIsolate.flutterExit on devices which do not support it (cla: yes, tool, β platform-fuchsia)
[26203](https://github.com/flutter/flutter/pull/26203) Add support for reverse to ReorderableListView (cla: yes, f: material design, framework)
[26209](https://github.com/flutter/flutter/pull/26209) Revert "Teach drag start behaviors to DragGestureRecognizer (#23424)" (a: text input, cla: yes, d: examples, f: cupertino, f: gestures, f: material design, f: scrolling, framework, team: gallery)
[26227](https://github.com/flutter/flutter/pull/26227) Give integration tests unique temp folder names (a: tests, cla: yes)
[26235](https://github.com/flutter/flutter/pull/26235) rev the min dart sdk dep in the templates to 2.1.0 (cla: yes, tool)
[26238](https://github.com/flutter/flutter/pull/26238) Remove long-deprecated TwoLevelList (cla: yes, f: material design, framework, severe: API break)
[26239](https://github.com/flutter/flutter/pull/26239) Force DatePicker value to stay within firstDate and lastDate upon year change (cla: yes, f: date/time picker, framework)
[26244](https://github.com/flutter/flutter/pull/26244) move analysis_options to package (cla: yes, team)
[26246](https://github.com/flutter/flutter/pull/26246) Teach drag start behaviors to DragGestureRecognizer (cla: yes, f: gestures, f: scrolling, framework)
[26249](https://github.com/flutter/flutter/pull/26249) Revert "Replace netls and netaddr with dev_finder" (cla: yes, tool, β platform-fuchsia)
[26250](https://github.com/flutter/flutter/pull/26250) Reland: Switch to dev_finder (cla: yes, tool, β platform-fuchsia)
[26252](https://github.com/flutter/flutter/pull/26252) Manual engine roll with analyzer fixes (cla: yes)
[26257](https://github.com/flutter/flutter/pull/26257) Add link to Flutter brand guidelines (cla: yes, f: material design, framework)
[26259](https://github.com/flutter/flutter/pull/26259) Deprecate Scaffold resizeToAvoidBottomPadding, now resizeToAvoidBottomInset (cla: yes, f: material design, framework)
[26260](https://github.com/flutter/flutter/pull/26260) Fixed typo (cla: yes, d: api docs, f: material design, framework)
[26262](https://github.com/flutter/flutter/pull/26262) Declare a system message channel for Skia configuration (cla: yes, dependency: skia, framework)
[26265](https://github.com/flutter/flutter/pull/26265) Add support for detecting which modifier keys have been pressed on RawKeyboardEvents (a: text input, cla: yes, framework)
[26266](https://github.com/flutter/flutter/pull/26266) [flutter_driver] Move Fuchsia logging code. (cla: yes, t: flutter driver, tool, β platform-fuchsia)
[26269](https://github.com/flutter/flutter/pull/26269) Update docs for editable_text (TextField) (a: text input, cla: yes, d: api docs, f: cupertino, f: material design, framework, waiting for tree to go green)
[26270](https://github.com/flutter/flutter/pull/26270) Fix red tree (Android module) (cla: yes, t: gradle, tool)
[26271](https://github.com/flutter/flutter/pull/26271) Add compileOptions to android_host_app (a: existing-apps, a: tests, cla: yes)
[26274](https://github.com/flutter/flutter/pull/26274) Add source line to snippet metadata file (cla: yes, d: api docs)
[26285](https://github.com/flutter/flutter/pull/26285) Wrap lines at 80 characters (cla: yes, team)
[26290](https://github.com/flutter/flutter/pull/26290) Add new curve animations to class documentation (a: animation, cla: yes, d: api docs, framework, waiting for tree to go green)
[26295](https://github.com/flutter/flutter/pull/26295) Added the superellipse (a.k.a. squircle) shape to flutter. (a: fidelity, cla: yes, f: cupertino, framework)
[26297](https://github.com/flutter/flutter/pull/26297) Added 'physics' prop to Stepper. (cla: yes, f: material design, framework)
[26300](https://github.com/flutter/flutter/pull/26300) Allow bundle identifier to be surrounded with quotes. (cla: yes, tool)
[26303](https://github.com/flutter/flutter/pull/26303) Adds a type parameter to invokeMethod (and additional utility methods) (cla: yes, framework, p: framework, plugin, team)
[26309](https://github.com/flutter/flutter/pull/26309) Fix descenders cutoff in TextField (a: text input, cla: yes, framework)
[26312](https://github.com/flutter/flutter/pull/26312) Add logic for creating rollback dynamic patches. (cla: yes, t: gradle, tool, β£ platform-android)
[26313](https://github.com/flutter/flutter/pull/26313) Fix Listenable.merge to not leak (cla: yes, framework)
[26315](https://github.com/flutter/flutter/pull/26315) Ensure that Dart SDK dirs have appropriate permissions (cla: yes, tool)
[26332](https://github.com/flutter/flutter/pull/26332) Integrate Strut: Add StrutStyle, expose Strut API, wire up strut with dart:ui, Roll engine 31a7f4d..e7eb1c8 (7 commits) (a: text input, a: typography, cla: yes, framework, severe: API break)
[26333](https://github.com/flutter/flutter/pull/26333) Add back lost gallery theme code (cla: yes, team, team: gallery, waiting for tree to go green)
[26334](https://github.com/flutter/flutter/pull/26334) mark tests as not flaky (a: tests, cla: yes, team)
[26337](https://github.com/flutter/flutter/pull/26337) chromebot recipe instructions missing a step (cla: yes, team)
[26339](https://github.com/flutter/flutter/pull/26339) Revert "Check for duplicative Flutter.framework emeddings when building for Xcode 10" (cla: yes, t: xcode, tool, βΊβ¬ platform-ios)
[26376](https://github.com/flutter/flutter/pull/26376) removed image with 404 (cla: yes, team)
[26377](https://github.com/flutter/flutter/pull/26377) Restore ignore for *.lock files (cla: yes)
[26378](https://github.com/flutter/flutter/pull/26378) Friendlier flutter tool messages for dynamic mode (cla: yes, tool)
[26385](https://github.com/flutter/flutter/pull/26385) Deprecate the animated image frame cache (a: tests, cla: yes, framework)
[26386](https://github.com/flutter/flutter/pull/26386) Check response code, retry when downloading docs (cla: yes, team)
[26388](https://github.com/flutter/flutter/pull/26388) fix #26207 .gitignore only include project root build directory (cla: yes, tool)
[26389](https://github.com/flutter/flutter/pull/26389) Make sure package cache prepare does not end up creating projects inside the cloned Flutter repo (a: tests, cla: yes, team)
[26392](https://github.com/flutter/flutter/pull/26392) Avoid use of ParagraphConstrains const ctor (cla: yes, framework, team)
[26395](https://github.com/flutter/flutter/pull/26395) Emit more of HTTP error response bodies (cla: yes, team)
[26402](https://github.com/flutter/flutter/pull/26402) Let the packaging recipe use gsutil.py (cla: yes, team)
[26403](https://github.com/flutter/flutter/pull/26403) Re-enable compute credites for macOS PRs only. (cla: yes, team)
[26422](https://github.com/flutter/flutter/pull/26422) Create an injectable factory for application packages. (cla: yes, tool)
[26426](https://github.com/flutter/flutter/pull/26426) Send ServiceExtensionToggled event when service extension is set. (cla: yes, f: inspector, framework)
[26430](https://github.com/flutter/flutter/pull/26430) Roll engine e5ec3cf3ea5c..b7f6bf0192d1 (28 commits) (cla: yes)
[26436](https://github.com/flutter/flutter/pull/26436) Revert "move analysis_options to package" (cla: yes, team)
[26440](https://github.com/flutter/flutter/pull/26440) [fuchsia] Add BUILD.gn for flutter_localizations (a: internationalization, cla: yes, framework)
[26441](https://github.com/flutter/flutter/pull/26441) Fix some doc references (cla: yes, d: api docs, f: cupertino, framework)
[26444](https://github.com/flutter/flutter/pull/26444) Update compileSdkVersion in the Android app templates to Android P (cla: yes, tool, β£ platform-android)
[26449](https://github.com/flutter/flutter/pull/26449) Add asserts for @required parameters (cla: yes, framework, team)
[26450](https://github.com/flutter/flutter/pull/26450) Add a manifest for profile builds that enables INTERNET permission (cla: yes, tool, β£ platform-android)
[26454](https://github.com/flutter/flutter/pull/26454) Cleanup temporary catchError. (cla: yes, framework)
[26456](https://github.com/flutter/flutter/pull/26456) `flutter create --template=plugin` now includes flutter (dart) unit test (cla: yes, tool)
[26482](https://github.com/flutter/flutter/pull/26482) Grammatical fix: "places" to "placed" (cla: yes, d: api docs, framework)
[26511](https://github.com/flutter/flutter/pull/26511) desktop workflow, devices, and test (cla: yes, tool, ββ¬ platform-mac, β platform-windows, π§ platform-linux)
[26519](https://github.com/flutter/flutter/pull/26519) Skip `flutter test` expression eval tests (a: tests, cla: yes, tool)
[26533](https://github.com/flutter/flutter/pull/26533) [Material] TabBarTheme text style parameters (cla: yes, f: material design, framework)
[26537](https://github.com/flutter/flutter/pull/26537) Report overall and transfer timings as part of hot reload statistics,β¦ (cla: yes, t: hot reload, tool)
[26539](https://github.com/flutter/flutter/pull/26539) Narrow regexp for import search in bot's analyze script. (cla: yes, team)
[26545](https://github.com/flutter/flutter/pull/26545) remove ignore_for_file lints (cla: yes, team)
[26546](https://github.com/flutter/flutter/pull/26546) Update dartdoc to 0.28.0 and add flags to constrain warnings (cla: yes, d: api docs, team)
[26550](https://github.com/flutter/flutter/pull/26550) Remove incorrect Coveralls badge. (cla: yes, team)
[26559](https://github.com/flutter/flutter/pull/26559) add type parameter back to PageRouteFactory (cla: yes, team)
[26562](https://github.com/flutter/flutter/pull/26562) Remove todo from Podhelpr.rb (cla: yes, team)
[26565](https://github.com/flutter/flutter/pull/26565) Emulator support for dynamic mode on Intel architecture (cla: yes, tool, β£ platform-android)
[26579](https://github.com/flutter/flutter/pull/26579) Fix+unskip `flutter test` expression eval tests (cla: yes, tool)
[26586](https://github.com/flutter/flutter/pull/26586) Added Sample code for Stack widget (cla: yes, d: api docs, framework)
[26589](https://github.com/flutter/flutter/pull/26589) Do not exit tool if parts of fuchsia workflow fail (cla: yes, tool, β platform-fuchsia)
[26592](https://github.com/flutter/flutter/pull/26592) Prevent crash when calling lerp for IconThemeData with null arguments (cla: yes, framework)
[26593](https://github.com/flutter/flutter/pull/26593) Support running macOS prebuilt application (cla: yes, tool, ββ¬ platform-mac)
[26596](https://github.com/flutter/flutter/pull/26596) Roll engine to 5983e34a3c0e1217da7e8bbe9f2fe685048fe259 (cla: yes)
[26597](https://github.com/flutter/flutter/pull/26597) [Material] Implement App Bar Theme (cla: yes, f: material design, framework)
[26598](https://github.com/flutter/flutter/pull/26598) Add tests for getOffsetToReveal on RenderSlivers (a: tests, cla: yes, framework, severe: crash)
[26604](https://github.com/flutter/flutter/pull/26604) Adding a shutdown hook to HotRunnerConfig (cla: yes, tool)
[26605](https://github.com/flutter/flutter/pull/26605) Implemented Dark Mode for Android (#25525) (cla: yes, f: material design, framework, β£ platform-android)
[26611](https://github.com/flutter/flutter/pull/26611) IconButton backgroundColor doc sample (cla: yes, d: api docs, f: material design, framework)
[26612](https://github.com/flutter/flutter/pull/26612) Remove TODO, reduce tech debt (cla: yes, team)
[26613](https://github.com/flutter/flutter/pull/26613) Updated AlertDialog content doc (cla: yes, f: material design, framework)
[26629](https://github.com/flutter/flutter/pull/26629) [HX] Quick fix for tap-to-show-keyboard regression (a: text input, cla: yes, f: gestures, f: material design, framework, β TODAY)
[26630](https://github.com/flutter/flutter/pull/26630) Move flutter_assets to App.framework (a: existing-apps, cla: yes, t: xcode, tool, βΊβ¬ platform-ios)
[26642](https://github.com/flutter/flutter/pull/26642) Fix --build-shared-library on newer NDKs (cla: yes, tool, β£ platform-android)
[26644](https://github.com/flutter/flutter/pull/26644) Revert "Add flutter_shared assets to module artifact (#23782)" (a: assets, cla: yes, t: gradle, tool)
[26650](https://github.com/flutter/flutter/pull/26650) Wrap dart:convert to track utf8 decode failures (cla: yes, tool)
[26652](https://github.com/flutter/flutter/pull/26652) Fix rounding error in build tests (a: tests, a: text input, cla: yes, framework)
[26659](https://github.com/flutter/flutter/pull/26659) Adds fix for NAN value and pressure values outside of device reported min and max (a: text input, cla: yes, f: gestures, framework, waiting for tree to go green)
[26663](https://github.com/flutter/flutter/pull/26663) Make getOffsetToReveal work with nested Viewports (cla: yes, f: scrolling, framework)
[26668](https://github.com/flutter/flutter/pull/26668) [Gradle] Copy ICU data to flutter_shared only when building an AAR module (cla: yes, t: gradle, tool)
[26669](https://github.com/flutter/flutter/pull/26669) Register hotRestart service in flutter_tools. (cla: yes, tool)
[26675](https://github.com/flutter/flutter/pull/26675) Revert "Move flutter_assets to App.framework (#26630)" (a: existing-apps, cla: yes, t: xcode, tool)
[26680](https://github.com/flutter/flutter/pull/26680) [frdp] Adds paths for `find` and `ls` for Fuchsia execution. (cla: yes, team, tool, β platform-fuchsia)
[26690](https://github.com/flutter/flutter/pull/26690) Doc fix: SliverChildBuilderDelegate is the lazy one (cla: yes, d: api docs, f: scrolling, framework)
[26693](https://github.com/flutter/flutter/pull/26693) Add another test to ImageStream (a: tests, cla: yes, framework, waiting for tree to go green)
[26694](https://github.com/flutter/flutter/pull/26694) Roll engine back to 1e93a8eb39d79f643952737aa4fc31e1787a5a17 (cla: yes, engine, team)
[26702](https://github.com/flutter/flutter/pull/26702) Update test temp folder name to be more consistent with others (a: tests, cla: yes, tool)
[26713](https://github.com/flutter/flutter/pull/26713) Roll engine to 05fee4eeee0ff6b219b1fcc394371e5f6963cc46 (a: assets, cla: yes, tool, βΊβ¬ platform-ios)
[26715](https://github.com/flutter/flutter/pull/26715) Experimental flags in flutter (cla: yes, tool)
[26716](https://github.com/flutter/flutter/pull/26716) Fix missing const analyzer warning (a: tests, cla: yes, team)
[26720](https://github.com/flutter/flutter/pull/26720) Allow attaching to profile builds (cla: yes, tool)
[26721](https://github.com/flutter/flutter/pull/26721) Respect EditableText.keyboardAppearance (a: text input, cla: yes, f: cupertino, framework)
[26722](https://github.com/flutter/flutter/pull/26722) [Material] Refactor _build<Widget> methods in BottomNavBar (cla: yes, f: material design, framework)
[26727](https://github.com/flutter/flutter/pull/26727) Roll engine to d470fc65ea1cb91ae66706b320d82c4536a4da8b (cla: yes)
[26734](https://github.com/flutter/flutter/pull/26734) Reverts default DragStartBehavior to DragStartBehavior.down (a: text input, cla: yes, f: cupertino, f: material design, f: scrolling, framework)
[26736](https://github.com/flutter/flutter/pull/26736) [O] Removing all timeouts (mark II) (a: tests, cla: yes, framework, t: flutter driver, team, tool)
[26737](https://github.com/flutter/flutter/pull/26737) Use Cirrus image's fastlane instead of freezing our own set of gem dependencies (cla: yes, team, team: gallery)
[26763](https://github.com/flutter/flutter/pull/26763) Close the Scaffold drawer in scroll_perf_test.dart (cla: yes, team)
[26764](https://github.com/flutter/flutter/pull/26764) Fix lerp in textTheme to allow for null parameters (cla: yes, f: material design, framework)
[26765](https://github.com/flutter/flutter/pull/26765) [Material] Inline the single Theme.of(context) call in BAB (cla: yes, f: material design, framework)
[26766](https://github.com/flutter/flutter/pull/26766) Report early error if appropriate host local engine is not found. (cla: yes, tool)
[26770](https://github.com/flutter/flutter/pull/26770) Revert switch drag behavior (cla: yes, f: material design, framework)
[26774](https://github.com/flutter/flutter/pull/26774) [cupertino_icons] add car, bus, train, paw, controller, and flask icons. (cla: yes, f: cupertino, framework)
[26778](https://github.com/flutter/flutter/pull/26778) Better ListTile leading/trailing widget alignment (cla: yes, f: material design, framework)
[26790](https://github.com/flutter/flutter/pull/26790) Rev Android Platform to 28 for bots (cla: yes, t: gradle, team)
[26793](https://github.com/flutter/flutter/pull/26793) Fill editable_text.dart test coverage (a: tests, a: text input, cla: yes, framework)
[26795](https://github.com/flutter/flutter/pull/26795) Update VERSION_LINUX_SDK (cla: yes, team, π§ platform-linux)
[26796](https://github.com/flutter/flutter/pull/26796) [Material] Theme data type for cards (cla: yes, f: material design, framework)
[26797](https://github.com/flutter/flutter/pull/26797) Update VERSION_WIN_SDK (cla: yes, team, β platform-windows)
[26798](https://github.com/flutter/flutter/pull/26798) targetSdkVersion 28 (cla: yes, d: examples, team, β£ platform-android)
[26807](https://github.com/flutter/flutter/pull/26807) #19060 Update material.google.com links to material.io (cla: yes, d: api docs, f: material design, framework, team)
[26808](https://github.com/flutter/flutter/pull/26808) Add Checkbox checkIcon color parameter (cla: yes, f: material design, framework)
[26809](https://github.com/flutter/flutter/pull/26809) Fix test expectations per change made in #26736 (cla: yes, team)
[26819](https://github.com/flutter/flutter/pull/26819) Refactor android launchable activity extractor logic (cla: yes, customer: gold, tool, waiting for tree to go green, β£ platform-android)
[26826](https://github.com/flutter/flutter/pull/26826) Avoid calling `cancel` on `AnsiSpinner` more than once when building for iOS (cla: yes, tool, ββ¬ platform-mac, βΊβ¬ platform-ios)
[26840](https://github.com/flutter/flutter/pull/26840) Support using flutter with specific version (cla: yes, tool)
[26883](https://github.com/flutter/flutter/pull/26883) Move Circle CI badge next to heading in Readme (cla: yes, team)
[26896](https://github.com/flutter/flutter/pull/26896) Add uiMode to android:configChanges (cla: yes, team, tool, β£ platform-android)
[26898](https://github.com/flutter/flutter/pull/26898) make FDE opt-in via the environment variable (cla: yes, tool)
[26900](https://github.com/flutter/flutter/pull/26900) Make reassemble public (cla: yes, framework)
[26901](https://github.com/flutter/flutter/pull/26901) Add Dismissible.confirmDismiss callback (cla: yes, f: material design, framework)
[26904](https://github.com/flutter/flutter/pull/26904) Fix immediately overriding the user's chosen AM/PM selection (cla: yes, f: cupertino, f: date/time picker, framework, waiting for tree to go green)
[26911](https://github.com/flutter/flutter/pull/26911) Dismissible not dismissable (cla: yes, team, team: gallery)
[26913](https://github.com/flutter/flutter/pull/26913) Upgrade the Gradle script to Android plugin version 3.3.0 (cla: yes, team)
[26921](https://github.com/flutter/flutter/pull/26921) fix some bad indentations (cla: yes, team)
[26926](https://github.com/flutter/flutter/pull/26926) Roll engine to 10eb972fc15b8a3f97ed7c26032cae03b10fca2c (cla: yes)
[26932](https://github.com/flutter/flutter/pull/26932) Make UriMapper and StdoutHandler public and add test cases (cla: yes, tool)
[26938](https://github.com/flutter/flutter/pull/26938) Fix gradle verbose error. (cla: yes, customer: gold, t: gradle, tool, waiting for tree to go green)
[26942](https://github.com/flutter/flutter/pull/26942) Detect Android SDK 28/28.0.3 (a: first hour, cla: yes, t: flutter doctor, tool, waiting for tree to go green, β£ platform-android)
[26944](https://github.com/flutter/flutter/pull/26944) Use mDNS to discover the device port (cla: yes, tool, βΊβ¬ platform-ios)
[26964](https://github.com/flutter/flutter/pull/26964) Refactor logic to get plugins path for android studio in mac (cla: yes, customer: gold, t: gradle, tool, waiting for tree to go green, β£ platform-android)
[26967](https://github.com/flutter/flutter/pull/26967) Use site-shared as canonical source for Flutter logo (cla: yes, team)
[26970](https://github.com/flutter/flutter/pull/26970) Fix a problem that: `PODS_ROOT` not defined because that Debug.xcconfig misses Flutter environment (cla: yes, customer: gold, t: xcode, tool, waiting for tree to go green, βΊβ¬ platform-ios)
[26978](https://github.com/flutter/flutter/pull/26978) Add flutter_build package for codegen and version sync with tool (cla: yes, tool)
[26988](https://github.com/flutter/flutter/pull/26988) Experimental flags for hot reloads (cla: yes, t: hot reload, tool)
[26989](https://github.com/flutter/flutter/pull/26989) Add experimentalBuildEnabled flag and initial shim for build_runner (cla: yes, tool)
[26990](https://github.com/flutter/flutter/pull/26990) Re-enable use of ParagraphConstrains const ctor (cla: yes, framework, team)
[26991](https://github.com/flutter/flutter/pull/26991) Assert when calling a method that tries to use the ticker unsafely after dispose (a: animation, a: debugging, cla: yes, framework, waiting for tree to go green)
[26993](https://github.com/flutter/flutter/pull/26993) Add WorkspaceSettings.xcsettings for stocks app (cla: yes, d: examples)
[26996](https://github.com/flutter/flutter/pull/26996) Explain font platform inconsistency (cla: yes, d: api docs, framework)
[27003](https://github.com/flutter/flutter/pull/27003) Add more RenderEditable test coverage (a: tests, a: text input, cla: yes, framework)
[27032](https://github.com/flutter/flutter/pull/27032) Pass --verify-entry-points in debug mode. (cla: yes, tool)
[27037](https://github.com/flutter/flutter/pull/27037) Revert "Experimental flags for hot reloads" (cla: yes, t: hot reload, tool)
[27039](https://github.com/flutter/flutter/pull/27039) Improve documentation on decodeSyslog (cla: yes, tool, βΊβ¬ platform-ios)
[27042](https://github.com/flutter/flutter/pull/27042) Updated DropdownButton docs (cla: yes, f: material design, framework)
[27043](https://github.com/flutter/flutter/pull/27043) Experimental flags for hot reloads, fixed (cla: yes, t: hot reload, tool)
[27045](https://github.com/flutter/flutter/pull/27045) Revert "Upgrade the Gradle script to Android plugin version 3.3.0 (#26913)" (cla: yes, t: gradle, team)
[27046](https://github.com/flutter/flutter/pull/27046) Update packages (cla: yes, team)
[27049](https://github.com/flutter/flutter/pull/27049) Roll engine to 31c79171796c7d24d5f81033db77e25f95c45a64 (cla: yes)
[27053](https://github.com/flutter/flutter/pull/27053) Modify offline docs platform family for Dash/Zeal (cla: yes, team)
[27054](https://github.com/flutter/flutter/pull/27054) Update flutter clean to remove .dart_tool directory (cla: yes, tool)
[27058](https://github.com/flutter/flutter/pull/27058) Add arguments for pushing named routes (cla: yes, d: examples, f: routes, framework, waiting for tree to go green)
[27059](https://github.com/flutter/flutter/pull/27059) Revert "Experimental flags for hot reloads, fixed" (cla: yes, t: hot reload, tool)
[27093](https://github.com/flutter/flutter/pull/27093) Update readmes for stocks/gallery (cla: yes, d: examples, team, team: gallery)
[27096](https://github.com/flutter/flutter/pull/27096) Revert "Warn when building on master channel (#25007)" (cla: yes, tool)
[27097](https://github.com/flutter/flutter/pull/27097) Typo fixes for notched_shapes.dart (cla: yes, framework)
[27111](https://github.com/flutter/flutter/pull/27111) format initializer list of constructors (cla: yes, team)
[27112](https://github.com/flutter/flutter/pull/27112) prevent _computeColumnWidths from getting stuck due to double precision (cla: yes, framework)
[27113](https://github.com/flutter/flutter/pull/27113) Fix gsutil.py call for windows (cla: yes, team)
[27114](https://github.com/flutter/flutter/pull/27114) Adds haptic vibration to Cupertino switch (cla: yes, f: cupertino, framework)
[27116](https://github.com/flutter/flutter/pull/27116) Add some instructions to the README for packaging archives locally (cla: yes, team)
[27122](https://github.com/flutter/flutter/pull/27122) Add module checking (cla: yes, tool)
[27140](https://github.com/flutter/flutter/pull/27140) Add docs and sample for takeException (a: tests, cla: yes, d: api docs)
[27154](https://github.com/flutter/flutter/pull/27154) Add2App: Fix crash resulted from hard-code module 'app' (a: existing-apps, cla: yes, customer: gold, t: gradle, tool)
[27169](https://github.com/flutter/flutter/pull/27169) Update an IconButton sample, add RaisedButton sample (cla: yes, d: api docs, f: material design, framework)
[27181](https://github.com/flutter/flutter/pull/27181) Change "Starting Xcode build" status text to "Running xcode build" (cla: yes, t: xcode, tool, ββ¬ platform-mac)
[27186](https://github.com/flutter/flutter/pull/27186) Improve unsupported text (cla: yes, tool)
[27191](https://github.com/flutter/flutter/pull/27191) Revert f9e6242db (#26944) (cla: yes, tool)
[27195](https://github.com/flutter/flutter/pull/27195) PopupMenuDivider.represents() paramter must be void, not Null (cla: yes, f: material design, framework)
[27197](https://github.com/flutter/flutter/pull/27197) Add default values for optional parameters. (cla: yes, team)
[27199](https://github.com/flutter/flutter/pull/27199) Remove obsolete ignore: (cla: yes, framework, team)
[27207](https://github.com/flutter/flutter/pull/27207) Add support for multiroot scheme to PackageUriMapper (cla: yes, tool)
[27208](https://github.com/flutter/flutter/pull/27208) Add a flag to enable tracing to systrace. (cla: yes, tool, β£ platform-android)
[27211](https://github.com/flutter/flutter/pull/27211) Inject KernelCompiler via KernelCompilerFactory (cla: yes, tool)
[27252](https://github.com/flutter/flutter/pull/27252) Add support for experimental flags during hot reload. (cla: yes, t: hot reload, tool)
[27253](https://github.com/flutter/flutter/pull/27253) [flutter_tool,doctor] Fix and test gen_snapshot failure message (cla: yes, tool)
[27256](https://github.com/flutter/flutter/pull/27256) Update additionalTime in TestWidgetsFlutterBinding.runAsync() to 1000. (a: tests, cla: yes, team)
[27257](https://github.com/flutter/flutter/pull/27257) Add basic codegen app to be used for integration testing and benchmarks (a: tests, cla: yes, tool)
[27260](https://github.com/flutter/flutter/pull/27260) Update Align docs (cla: yes, framework, waiting for tree to go green)
[27261](https://github.com/flutter/flutter/pull/27261) format parameter list (cla: yes, team)
[27271](https://github.com/flutter/flutter/pull/27271) Remove all obsolete "// ignore:" (cla: yes, team, waiting for tree to go green)
[27272](https://github.com/flutter/flutter/pull/27272) Fix asserts for initialDateTime in CupertinoDatePicker (cla: yes, f: cupertino, f: date/time picker, framework, waiting for tree to go green)
[27274](https://github.com/flutter/flutter/pull/27274) Add missing comma to fix build (cla: yes, d: api docs, framework)
[27277](https://github.com/flutter/flutter/pull/27277) Use flutter_tools to generate build_script (cla: yes, tool)
[27278](https://github.com/flutter/flutter/pull/27278) Make version documentation clearer. (cla: yes, tool)
[27295](https://github.com/flutter/flutter/pull/27295) Handle missing curl (cla: yes, tool)
[27297](https://github.com/flutter/flutter/pull/27297) Add Material/Card borderOnForeground flag to allow border to be painted behind the child widget (cla: yes, f: material design, framework)
[27305](https://github.com/flutter/flutter/pull/27305) Outline for survey implementation (cla: yes, d: api docs, team)
[27316](https://github.com/flutter/flutter/pull/27316) Add elevation to Chips to allow for more flexibility (cla: yes, f: material design, framework)
[27319](https://github.com/flutter/flutter/pull/27319) Don't send accept/reject if compilation never started. (cla: yes, tool)
[27322](https://github.com/flutter/flutter/pull/27322) Fix typo in WrapAlignment documentation (cla: yes, d: api docs, framework, waiting for tree to go green)
[27323](https://github.com/flutter/flutter/pull/27323) don't pass the --packages-dir flag (cla: yes, tool)
[27365](https://github.com/flutter/flutter/pull/27365) Updated focus handling for nested FocusScopes (cla: yes)
[27367](https://github.com/flutter/flutter/pull/27367) Update shrine login screen so that cancel dismisses the route (cla: yes, team, team: gallery)
[27374](https://github.com/flutter/flutter/pull/27374) Lazily download artifacts: The Phantom Menace (cla: yes, tool)
[27376](https://github.com/flutter/flutter/pull/27376) Material.border type is now BorderRadiusGeometry (cla: yes, f: material design, framework)
[27378](https://github.com/flutter/flutter/pull/27378) Make the deviceDiscovery API overridable (cla: yes, tool)
[27381](https://github.com/flutter/flutter/pull/27381) Fix bug in UnconstrainedBox class debugFillProperties (a: debugging, cla: yes, framework)
[27387](https://github.com/flutter/flutter/pull/27387) Track InheritedElement dependencies in diagnostic properties (cla: yes, framework)
[27389](https://github.com/flutter/flutter/pull/27389) Enable dependency injection of Window instead of using static property (cla: yes)
[27399](https://github.com/flutter/flutter/pull/27399) Add elevation/pressElevation to ChipThemeData (cla: yes, f: material design, framework)
[27400](https://github.com/flutter/flutter/pull/27400) Ensure Shrine app respects the platform toggle from Gallery options (cla: yes, team, team: gallery)
[27409](https://github.com/flutter/flutter/pull/27409) Ensure all curves return 0 and 1 in .transform(t) when t=0/1 (a: animation, cla: yes, framework, waiting for tree to go green)
[27410](https://github.com/flutter/flutter/pull/27410) Disable usage of bare instructions in AOT (cla: yes, tool)
[27413](https://github.com/flutter/flutter/pull/27413) Fix typo "when when" (cla: yes, d: api docs, framework)
[27424](https://github.com/flutter/flutter/pull/27424) [H] Expose "center" on CustomScrollView (cla: yes, f: date/time picker, f: scrolling)
[27425](https://github.com/flutter/flutter/pull/27425) [HR] Clean up matters related to "offstageness". (cla: yes, framework)
[27432](https://github.com/flutter/flutter/pull/27432) Remove leftover of GlobalKey removal listeners (cla: yes, framework)
[27433](https://github.com/flutter/flutter/pull/27433) Fix issue where SliverPersistentHeader that is both floating and pinned would scroll down when scrolling past the beginning of the ScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)
[27471](https://github.com/flutter/flutter/pull/27471) Refactor ios bundleid/android application process logic. (cla: yes, tool)
[27477](https://github.com/flutter/flutter/pull/27477) [H] Tabs (cla: yes, f: material design, framework)
[27481](https://github.com/flutter/flutter/pull/27481) Move Brightness to dart:ui in the engine (#27479). (cla: yes, framework)
[27487](https://github.com/flutter/flutter/pull/27487) [H] Make NotchedShape more practical to use (cla: yes, f: material design, framework)
[27501](https://github.com/flutter/flutter/pull/27501) Update docs for initstate(), didUpdateWidget(), dispose() (cla: yes, d: api docs, framework)
[27502](https://github.com/flutter/flutter/pull/27502) Make a kReleaseMode constant that is public. (cla: yes, framework)
[27504](https://github.com/flutter/flutter/pull/27504) Added support for the Galician language (material_es_GL.arb) (a: internationalization, cla: yes, framework)
[27505](https://github.com/flutter/flutter/pull/27505) Remove icudtl.dat from APK asset size checks (cla: yes, team)
[27506](https://github.com/flutter/flutter/pull/27506) Added support for Swahili (material_sw.arb) (a: internationalization, cla: yes, framework)
[27509](https://github.com/flutter/flutter/pull/27509) Removed double the (cla: yes, d: api docs, f: material design, framework)
[27510](https://github.com/flutter/flutter/pull/27510) [Material] Allow slider shapes to be easily resized (cla: yes, f: material design, framework)
[27511](https://github.com/flutter/flutter/pull/27511) Update dartdoc to 0.28.1+1 and add parameters for source-code linking (cla: yes, team)
[27513](https://github.com/flutter/flutter/pull/27513) Add scroll performance test for flutter_gallery (cla: yes, team)
[27519](https://github.com/flutter/flutter/pull/27519) Update OutlineButton on-pressed fill color (cla: yes, f: material design, framework)
[27528](https://github.com/flutter/flutter/pull/27528) Fixed Cupertino Switch Demo (cla: yes, f: cupertino, framework, waiting for tree to go green)
[27531](https://github.com/flutter/flutter/pull/27531) Print 50000$ monopoly money (cla: yes, tool, waiting for tree to go green)
[27532](https://github.com/flutter/flutter/pull/27532) Add @isTest to Flutter's wrappers over group/test (a: tests, cla: yes)
[27534](https://github.com/flutter/flutter/pull/27534) Stop using SelectionChangedCause internally to show the text selection toolbar (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)
[27553](https://github.com/flutter/flutter/pull/27553) Use CP_REPOS_DIR if it's set (cla: yes, tool, βΊβ¬ platform-ios)
[27556](https://github.com/flutter/flutter/pull/27556) update flutter and flutter.bat command to suggest stable branch (cla: yes, tool)
[27559](https://github.com/flutter/flutter/pull/27559) Update dartdoc to 0.28.1+2 and fix search text alignment (cla: yes, team)
[27564](https://github.com/flutter/flutter/pull/27564) Fix window bug in _sendPlatformMessage() (#27541). (cla: yes, framework, p: framework)
[27566](https://github.com/flutter/flutter/pull/27566) Warn when gradle builds fail because of AndroidX (cla: yes, t: gradle, tool)
[27568](https://github.com/flutter/flutter/pull/27568) Fix initial scroll of TabBar in release mode (cla: yes, f: material design, f: scrolling, framework)
[27569](https://github.com/flutter/flutter/pull/27569) Bugfix: Add platformBrightness to TestWindow. (a: tests, cla: yes)
[27570](https://github.com/flutter/flutter/pull/27570) Small cleanup in CupertinoSliverRefreshControl (cla: yes, f: cupertino, framework)
[27573](https://github.com/flutter/flutter/pull/27573) Let text selection toolbar buttons be independent from theme (cla: yes, f: cupertino, framework)
[27575](https://github.com/flutter/flutter/pull/27575) Update OutlineButton default border width and highlight elevation (cla: yes, f: material design, framework)
[27576](https://github.com/flutter/flutter/pull/27576) Handle CupertinoTabScaffold rebuilds with deleted tabs (cla: yes, f: cupertino, framework)
[27577](https://github.com/flutter/flutter/pull/27577) [flutter_driver] Use async call to run SSH cmds w/o deadlock. (cla: yes, t: flutter driver, tool, β platform-fuchsia)
[27588](https://github.com/flutter/flutter/pull/27588) CupertinoSliverRefreshControl inactive overscroll behavior (cla: yes, f: cupertino, framework, waiting for tree to go green)
[27596](https://github.com/flutter/flutter/pull/27596) Check powershell version. (cla: yes, tool, waiting for tree to go green, β platform-windows)
[27604](https://github.com/flutter/flutter/pull/27604) Update material Galician (gl) translations filename (a: internationalization, cla: yes, framework)
[27607](https://github.com/flutter/flutter/pull/27607) Remove build runner from injection (cla: yes, tool)
[27613](https://github.com/flutter/flutter/pull/27613) [Material] Simple API for skipping over certain Slider shapes (cla: yes, f: material design, framework)
[27615](https://github.com/flutter/flutter/pull/27615) fix list devices throwing on junk input (cla: yes, tool, β platform-fuchsia)
[27616](https://github.com/flutter/flutter/pull/27616) minor doc fixes for overlay (cla: yes, framework)
[27620](https://github.com/flutter/flutter/pull/27620) Add a keyboard key code generator. (cla: yes, tool)
[27623](https://github.com/flutter/flutter/pull/27623) Make FlexibleSpaceBar title padding configurable (cla: yes, f: material design, framework)
[27627](https://github.com/flutter/flutter/pull/27627) Adding support for logical and physical key events (cla: yes, framework)
[27632](https://github.com/flutter/flutter/pull/27632) Null check logic for datatable. (cla: yes, f: material design, framework)
[27647](https://github.com/flutter/flutter/pull/27647) Fixed #27621: CupertinoTimerPicker breaks if minuteInterval > 1 (cla: yes, f: cupertino, framework)
[27648](https://github.com/flutter/flutter/pull/27648) Make sample analyzer more friendly for running locally. (cla: yes, team)
[27659](https://github.com/flutter/flutter/pull/27659) fix small typo (cla: yes, framework, waiting for tree to go green)
[27661](https://github.com/flutter/flutter/pull/27661) Add build_runner_core to flutter_tools BUILD.gn (cla: yes, tool)
[27663](https://github.com/flutter/flutter/pull/27663) TextField should only set EditableText.cursorOffset for iOS (a: text input, cla: yes, f: material design, framework)
[27665](https://github.com/flutter/flutter/pull/27665) Add desktop devices to daemon behind flag (cla: yes, tool)
[27668](https://github.com/flutter/flutter/pull/27668) Wire dart2js through flutter tool, add compilation test (cla: yes, tool)
[27672](https://github.com/flutter/flutter/pull/27672) Support for building dynamic patches in AOT mode. (cla: yes, tool)
[27687](https://github.com/flutter/flutter/pull/27687) Add android studio process logic for JetBrainsToolbox (cla: yes, customer: gold, tool, β£ platform-android, β TODAY)
[27690](https://github.com/flutter/flutter/pull/27690) remove super_goes_last (cla: yes, team)
[27691](https://github.com/flutter/flutter/pull/27691) Fix Xcode_backend.sh for flavors (cla: yes, t: xcode, tool, waiting for tree to go green, βΊβ¬ platform-ios)
[27697](https://github.com/flutter/flutter/pull/27697) Cupertino TextField Cursor Fix (a: text input, cla: yes, f: cupertino, framework)
[27699](https://github.com/flutter/flutter/pull/27699) [Material] Update the card demo in the Gallery to demonstrate different uses of the Card widget (cla: yes, f: material design, framework, team, team: gallery)
[27703](https://github.com/flutter/flutter/pull/27703) Add builder parameter to showDatePicker, showTimePicker (cla: yes, f: date/time picker, f: material design, framework)
[27705](https://github.com/flutter/flutter/pull/27705) Revert "Lazily download artifacts" (cla: yes, tool)
[27708](https://github.com/flutter/flutter/pull/27708) remove build_runner_core import from flutter_tools (cla: yes, tool)
[27709](https://github.com/flutter/flutter/pull/27709) Increase our build budget to 16ms (cla: yes, t: flutter driver, tool)
[27717](https://github.com/flutter/flutter/pull/27717) Refactor "no ios devices attached" logic. (cla: yes, tool, βΊβ¬ platform-ios)
[27735](https://github.com/flutter/flutter/pull/27735) Lazily download artifacts (Part II): The Clone Wars (cla: yes, tool)
[27743](https://github.com/flutter/flutter/pull/27743) Refactor build-number/build-name logic. (cla: yes, t: gradle, t: xcode, tool)
[27752](https://github.com/flutter/flutter/pull/27752) Adding horizontal and vertical scale parameter to ScaleUpdateDetails. (cla: yes, f: gestures, framework, waiting for tree to go green)
[27754](https://github.com/flutter/flutter/pull/27754) Add support for binary compression of dynamic patches by the flutter tool. (cla: yes, t: gradle, tool)
[27765](https://github.com/flutter/flutter/pull/27765) Refactor local engine logic (cla: yes, t: xcode, tool, βΊβ¬ platform-ios)
[27773](https://github.com/flutter/flutter/pull/27773) DatePicker noon/midnight overflow fix (cla: yes, f: cupertino, f: date/time picker, framework)
[27789](https://github.com/flutter/flutter/pull/27789) Revert "Disable usage of bare instructions in AOT (#27410)" (cla: yes, tool)
[27793](https://github.com/flutter/flutter/pull/27793) Remove remaining "### Sample code" segments, and fix the snippet generator. (cla: yes, d: api docs, team)
[27800](https://github.com/flutter/flutter/pull/27800) Prevent tests from importing other tests. (a: tests, cla: yes, team)
[27803](https://github.com/flutter/flutter/pull/27803) Added sample code to AnimatedWidget (a: animation, cla: yes, d: api docs, framework, waiting for tree to go green)
[27808](https://github.com/flutter/flutter/pull/27808) Manual Engine roll for flutter/engine#7791 - Add trailing whitespace tracking. (a: text input, cla: yes, framework)
[27812](https://github.com/flutter/flutter/pull/27812) Pass method used to start flutter application (cla: yes, tool)
[27817](https://github.com/flutter/flutter/pull/27817) Optimize flutter run logic for iOS by "ONLY_ACTIVE_ARCH=YES" if possible (cla: yes)
[27818](https://github.com/flutter/flutter/pull/27818) Fix Dashing rules to use new dartdoc CSS entity markers. (cla: yes, d: api docs, team)
[27825](https://github.com/flutter/flutter/pull/27825) Deflake AnsiSpinner tests (a: tests, cla: yes, team, team: flakes, waiting for tree to go green)
[27849](https://github.com/flutter/flutter/pull/27849) Revert "Roll engine 713fe130eb02..d48de7a3ec97 (1 commits)" (cla: yes)
[27851](https://github.com/flutter/flutter/pull/27851) Fixes a cursor offset mistake for Material on iOS (a: text input, cla: yes, framework, βΊβ¬ platform-ios)
[27853](https://github.com/flutter/flutter/pull/27853) Hook up character events and unmodified code points to Android raw key event handling. (cla: yes, framework)
[27855](https://github.com/flutter/flutter/pull/27855) Reland "Roll engine 713fe130eb02..d48de7a3ec97 (1 commits)" (cla: yes)
[27861](https://github.com/flutter/flutter/pull/27861) Temporarily disable inconsistent strut golden tests due to test fonts (a: tests, a: typography, cla: yes, framework)
[27864](https://github.com/flutter/flutter/pull/27864) Fix crash when disposing nested Scrollables while holding in overscroll position (cla: yes, f: scrolling, framework, severe: crash)
[27865](https://github.com/flutter/flutter/pull/27865) Add Armenian translations (a: internationalization, cla: yes, framework)
[27866](https://github.com/flutter/flutter/pull/27866) Handle back swipe completed->completed or completed->dismissed transitions (cla: yes, f: cupertino, f: routes, framework)
[27873](https://github.com/flutter/flutter/pull/27873) Don't cache result for homeDirPath. (cla: yes, tool)
[27892](https://github.com/flutter/flutter/pull/27892) Fix overflow clipping/fading for text (cla: yes, framework)
[27895](https://github.com/flutter/flutter/pull/27895) Revert "Lazily download artifacts (Part II)" (cla: yes, tool)
[27900](https://github.com/flutter/flutter/pull/27900) Fixes switch vibration (cla: yes, f: cupertino, framework)
[27902](https://github.com/flutter/flutter/pull/27902) update packages and supress lint (cla: yes, framework, tool, waiting for tree to go green)
[27908](https://github.com/flutter/flutter/pull/27908) Reland automatic discovery of observatory port for iOS (cla: yes, tool, waiting for tree to go green, ββ¬ platform-mac, βΊβ¬ platform-ios)
[27914](https://github.com/flutter/flutter/pull/27914) fix multiroot scheme (cla: yes, tool)
[27915](https://github.com/flutter/flutter/pull/27915) Revert "[HR] Clean up matters related to "offstageness"." (cla: yes, f: scrolling, framework)
[27919](https://github.com/flutter/flutter/pull/27919) Revert "Ensure all curves return 0 and 1 in .transform(t) when t=0/1" (a: animation, cla: yes, framework)
[27929](https://github.com/flutter/flutter/pull/27929) Use double literals where a double type is expected (a: animation, cla: yes, framework, team)
[27945](https://github.com/flutter/flutter/pull/27945) Fixes crossAxisSpacing overflow in RTL (a: internationalization, cla: yes, f: scrolling, framework, waiting for tree to go green)
[27953](https://github.com/flutter/flutter/pull/27953) Add outer try block for obtainKey errors. Add docs. (cla: yes, framework, waiting for tree to go green)
[27955](https://github.com/flutter/flutter/pull/27955) Adds media query check in editable_text (a: text input, cla: yes, framework, waiting for tree to go green)
[27966](https://github.com/flutter/flutter/pull/27966) Revert "Fix overflow clipping/fading for text" (a: typography, cla: yes, framework)
[27968](https://github.com/flutter/flutter/pull/27968) Sample code for Icon class (cla: yes, d: api docs, framework)
[27969](https://github.com/flutter/flutter/pull/27969) Do not draw Slider tick marks if they are too dense (cla: yes, f: material design, framework)
[27970](https://github.com/flutter/flutter/pull/27970) Make sure the selection is still painted under the text (a: text input, cla: yes, framework)
[27973](https://github.com/flutter/flutter/pull/27973) Add extendBody parameter to Scaffold, body MediaQuery reflects BAB height (cla: yes, f: material design, framework)
[27980](https://github.com/flutter/flutter/pull/27980) Reapply "Fix overflow clipping/fading for text (#27892)" (a: typography, cla: yes, framework)
[27983](https://github.com/flutter/flutter/pull/27983) Test text paint orders by color (a: tests, a: text input, cla: yes, framework)
[27987](https://github.com/flutter/flutter/pull/27987) add ui.Window fallback to TestViewConfiguration (a: tests, cla: yes, tool)
[28006](https://github.com/flutter/flutter/pull/28006) Re-apply "Ensure all curves return 0 and 1 in .transform(t) when t=0/1" (a: animation, cla: yes, framework)
[28011](https://github.com/flutter/flutter/pull/28011) Remove accidentally committed libs (cla: yes, tool)
[28024](https://github.com/flutter/flutter/pull/28024) Disable prefer_collection_literals in the analyzer until we can update to using set literals (cla: yes, team)
[28027](https://github.com/flutter/flutter/pull/28027) Remove extra slash from builder that is not handled on windows (cla: yes, tool)
[28031](https://github.com/flutter/flutter/pull/28031) Revert "Add support for binary compression of dynamic patches by the flutter tool. (#27754)" (cla: yes, t: gradle, tool, β£ platform-android)
[28032](https://github.com/flutter/flutter/pull/28032) Revert 26001 (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)
[28040](https://github.com/flutter/flutter/pull/28040) Remove json_schema and cli_util deps from flutter_tool (cla: yes, team, tool, waiting for tree to go green)
[28101](https://github.com/flutter/flutter/pull/28101) Remove unused --packages argument to gen_snapshot. (cla: yes, tool)
[28178](https://github.com/flutter/flutter/pull/28178) Roll engine to f45572e95f93edb89b6750a4f36ad8ed7c0a2560 (cla: yes)
[28182](https://github.com/flutter/flutter/pull/28182) Add TextOverflow.visible (a: typography, cla: yes, framework, waiting for tree to go green)
[28183](https://github.com/flutter/flutter/pull/28183) Rename SuperellipseShare ContinuousRectangleBorder (cla: yes, f: material design, framework)
[28216](https://github.com/flutter/flutter/pull/28216) Fix 'to to' (cla: yes, f: material design, framework)
[28222](https://github.com/flutter/flutter/pull/28222) Manual engine roll to 6d7eb52185b117a3972cac4e23625f97198114d9 (cla: yes)
[28224](https://github.com/flutter/flutter/pull/28224) Adds a template for Pull Requests (cla: yes, team, waiting for tree to go green)
[28235](https://github.com/flutter/flutter/pull/28235) Remove line breaks from PR template (cla: yes, team)
[28238](https://github.com/flutter/flutter/pull/28238) Remove set literal syntax (cla: yes, team)
[28265](https://github.com/flutter/flutter/pull/28265) Revert "Remove unused --packages argument to gen_snapshot." (cla: yes, tool)
[28272](https://github.com/flutter/flutter/pull/28272) Make logcat less chatty on perf tests (cla: yes, team)
## PRs closed in this release of flutter/engine
From Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800
[6399](https://github.com/flutter/engine/pull/6399) System Channels, Plugins, Dart Entrypoint, FlutterFragment (cla: yes)
[6558](https://github.com/flutter/engine/pull/6558) Retained rendering in Fuchsia PhysicalShapeLayer (cla: yes)
[6719](https://github.com/flutter/engine/pull/6719) Add onStart hook to FlutterFragmentActivity (cla: yes)
[6805](https://github.com/flutter/engine/pull/6805) [OR] Offset.fromDirection and Size.aspectRatio (cla: yes)
[6879](https://github.com/flutter/engine/pull/6879) Allow FlutterViewController to be released when not initialized with an engine (cla: yes)
[6903](https://github.com/flutter/engine/pull/6903) [H] Undeprecate BigInteger support, but document what it actually does. (cla: yes)
[6913](https://github.com/flutter/engine/pull/6913) Support real fonts in 'flutter test' (cla: yes)
[6918](https://github.com/flutter/engine/pull/6918) Announce in/out of list (cla: yes)
[6919](https://github.com/flutter/engine/pull/6919) Reland "Compile libcxx and libcxxabi for Android (#6886)" (cla: yes, size)
[6922](https://github.com/flutter/engine/pull/6922) Verify RunConfiguration is valid before running (cla: yes)
[6923](https://github.com/flutter/engine/pull/6923) Compute cull_rect and optimize in Layer::Preroll (cla: yes)
[6926](https://github.com/flutter/engine/pull/6926) Roll buildtools to bac220c15490dcf7b7d8136f75100bbc77e8d217 (cla: yes, size)
[6927](https://github.com/flutter/engine/pull/6927) Support overriding font leading in TextStyle and LibTxt (affects: text input, brand new feature, cla: yes)
[6936](https://github.com/flutter/engine/pull/6936) Return real null instead of null string when locale has not been set in locale closure. (cla: yes)
[6945](https://github.com/flutter/engine/pull/6945) Adds force cursor support (cla: yes)
[6961](https://github.com/flutter/engine/pull/6961) Add hover event support to the engine (cla: yes)
[6967](https://github.com/flutter/engine/pull/6967) Eliminate obsolete FlutterDartProject initializers (cla: yes)
[6973](https://github.com/flutter/engine/pull/6973) Eliminate main_dart_file_path, package_file_path (cla: yes)
[6977](https://github.com/flutter/engine/pull/6977) Rename dart-non-checked-mode: disable-dart-asserts (cla: yes)
[6985](https://github.com/flutter/engine/pull/6985) Fix keyboard not showing for targetSdk 28 (cla: yes)
[6989](https://github.com/flutter/engine/pull/6989) Japanese Clear Text Crash (cla: yes)
[6991](https://github.com/flutter/engine/pull/6991) MInor Docs to runtime controller WindowData (cla: yes)
[7002](https://github.com/flutter/engine/pull/7002) Support querying display refresh rate in engine (cla: yes)
[7012](https://github.com/flutter/engine/pull/7012) Merge latest from master => 21008 staging branch (cla: yes)
[7024](https://github.com/flutter/engine/pull/7024) Roll Skia to 57d29eaf2ed7518983d9e91fd5219f4cfc181f88 (cla: yes)
[7031](https://github.com/flutter/engine/pull/7031) Pass operator_new_alignment value through gn script into GN args. (cla: yes)
[7048](https://github.com/flutter/engine/pull/7048) Only overflow the cache for one required frame (cla: yes)
[7068](https://github.com/flutter/engine/pull/7068) SK_SUPPORT_LEGACY_TEXTENCODINGENUM (cla: yes)
[7087](https://github.com/flutter/engine/pull/7087) Wire up support for external OpenGL textures for the embedder. (cla: yes)
[7097](https://github.com/flutter/engine/pull/7097) Simplify conversion of numeric types in the message codec on iOS (cla: yes)
[7098](https://github.com/flutter/engine/pull/7098) Android embedding refactor PR1: JNI Extraction to FlutterJNI.java (cla: yes)
[7102](https://github.com/flutter/engine/pull/7102) Prepare for upcoming fuchsia vulkan driver changes (cla: yes)
[7108](https://github.com/flutter/engine/pull/7108) Fix destruction of the child object list in the iOS accessibility bridge (cla: yes)
[7146](https://github.com/flutter/engine/pull/7146) Revert "Reland "Compile libcxx and libcxxabi for Android (#6886)"" (cla: yes, size)
[7151](https://github.com/flutter/engine/pull/7151) Generalize runFromBundle to support multiple bundlePaths (cla: yes)
[7152](https://github.com/flutter/engine/pull/7152) Add native for fetching compilation trace as a memory buffer, for use in automated tools (cla: yes)
[7158](https://github.com/flutter/engine/pull/7158) Minor comments fix and add TODO (cla: yes)
[7160](https://github.com/flutter/engine/pull/7160) Reland "Compile libcxx and libcxxabi for Android (#6886)" (cla: yes, size)
[7161](https://github.com/flutter/engine/pull/7161) Handle null bundlePaths in FlutterRunArguments (cla: yes)
[7162](https://github.com/flutter/engine/pull/7162) Merge master branch into skia-master (cla: no)
[7163](https://github.com/flutter/engine/pull/7163) Merge skia-master branch into master (cla: no)
[7164](https://github.com/flutter/engine/pull/7164) Add empty metrics to account for truncated whitespace for GetRectsForRange. (cla: yes)
[7179](https://github.com/flutter/engine/pull/7179) Fixed Spelling. (cla: yes)
[7185](https://github.com/flutter/engine/pull/7185) Check for empty line before adding empty 'padding' metrics (cla: yes)
[7187](https://github.com/flutter/engine/pull/7187) Revert "Support overriding font leading in TextStyle and LibTxt (#6927)" (cla: yes)
[7189](https://github.com/flutter/engine/pull/7189) Remove unnecessary includes of Skia headers. (cla: yes)
[7194](https://github.com/flutter/engine/pull/7194) Roll buildroot to 4cb5a74c9612b71b917997f46e97da6d1051eab4 (cla: yes, size)
[7195](https://github.com/flutter/engine/pull/7195) Roll buildroot to 8e538639660413490ea9261eee84864005e240f4 (cla: yes, size)
[7202](https://github.com/flutter/engine/pull/7202) Add .woff file to binary format (cla: yes)
[7207](https://github.com/flutter/engine/pull/7207) Downloading and installation of dynamic updates on Android (cla: yes)
[7208](https://github.com/flutter/engine/pull/7208) Fallback font match caching to fix emoji lag. (cla: yes)
[7213](https://github.com/flutter/engine/pull/7213) Roll Dart to version e15e8609aa8610f8c432f1caf2ab89358e2fce50 (cla: yes)
[7214](https://github.com/flutter/engine/pull/7214) [Fuchsia] Depend on libtrace when that is what's really meant (cla: yes)
[7221](https://github.com/flutter/engine/pull/7221) [vulkan] Fix Fuchsia build (cla: yes)
[7227](https://github.com/flutter/engine/pull/7227) Compile embedder unit test Dart to kernel (cla: yes)
[7230](https://github.com/flutter/engine/pull/7230) Revert "Compile embedder unit test Dart to kernel (#7227)" (cla: yes)
[7231](https://github.com/flutter/engine/pull/7231) Compile embedder unit test Dart to kernel (re-land) (cla: yes)
[7234](https://github.com/flutter/engine/pull/7234) Fix misspelling in doc comments (cla: yes)
[7235](https://github.com/flutter/engine/pull/7235) Fix settings.advisory_script_uri in iOS createShell (cla: yes)
[7237](https://github.com/flutter/engine/pull/7237) Allow inferred types using diamond syntax (cla: yes)
[7238](https://github.com/flutter/engine/pull/7238) Clarify TextAffinity docs (cla: yes)
[7239](https://github.com/flutter/engine/pull/7239) Simplify nested try-with-resources statements (cla: yes)
[7240](https://github.com/flutter/engine/pull/7240) Fix linter errors in ResourceUpdater (cla: yes)
[7241](https://github.com/flutter/engine/pull/7241) Support user-provided font-fallback. (cla: yes)
[7242](https://github.com/flutter/engine/pull/7242) Revert spelling correction in licence matcher (cla: yes)
[7244](https://github.com/flutter/engine/pull/7244) iOS A11y memory leak (cla: yes)
[7245](https://github.com/flutter/engine/pull/7245) Roll buildroot to support Android SDK 28 (cla: yes)
[7246](https://github.com/flutter/engine/pull/7246) Update iOS unit test for the removal of hex string encoding of uint64 data (cla: yes)
[7248](https://github.com/flutter/engine/pull/7248) Update terminology to match that of the flutter tool (cla: yes)
[7250](https://github.com/flutter/engine/pull/7250) Extract function to collect licenses for component (cla: yes)
[7254](https://github.com/flutter/engine/pull/7254) Fix javadoc for Android-28 (cla: yes)
[7256](https://github.com/flutter/engine/pull/7256) Document native functions for compilation trace (cla: yes)
[7257](https://github.com/flutter/engine/pull/7257) Add a system message channel for controlling the Skia resource cache size (cla: yes)
[7258](https://github.com/flutter/engine/pull/7258) Remove unused GrContext in AndroidSurfaceGL (cla: yes)
[7260](https://github.com/flutter/engine/pull/7260) Re-run license tool on all source when it changes (cla: yes)
[7261](https://github.com/flutter/engine/pull/7261) Update usage of some Android APIs that are deprecated in API level 28 (cla: yes)
[7266](https://github.com/flutter/engine/pull/7266) Eliminate use of new keyword in license tool (cla: yes)
[7267](https://github.com/flutter/engine/pull/7267) Mark all unreassigned locals final in license tool (cla: yes)
[7269](https://github.com/flutter/engine/pull/7269) [License] Eliminate duplicate case in switch (cla: yes)
[7270](https://github.com/flutter/engine/pull/7270) [License] Assert license filename is non-null, non-empty (cla: yes)
[7272](https://github.com/flutter/engine/pull/7272) Make IOManager own resource context (cla: yes)
[7273](https://github.com/flutter/engine/pull/7273) [License] Sync analysis_options.yaml from framework (cla: yes)
[7274](https://github.com/flutter/engine/pull/7274) TextAffinity Docs Improvement (cla: yes)
[7275](https://github.com/flutter/engine/pull/7275) [License] Enable avoid_positional_boolean_parameters lint (cla: yes)
[7276](https://github.com/flutter/engine/pull/7276) Remove unused native function dumpCompilationTrace() (cla: yes)
[7281](https://github.com/flutter/engine/pull/7281) TextInputType.number default fix (cla: yes)
[7282](https://github.com/flutter/engine/pull/7282) Add elevation and thickness to SemanticsNode (accessibility, cla: yes)
[7283](https://github.com/flutter/engine/pull/7283) Revert "Roll Dart to version e15e8609aa8610f8c432f1caf2ab89358e2fce50" (cla: yes)
[7284](https://github.com/flutter/engine/pull/7284) Roll buildroot and update method of getting android SDK and support libs (cla: yes)
[7286](https://github.com/flutter/engine/pull/7286) Roll version of Dart to d1817ddc91fd3aea061647b2e21860c47a5a5180 (cla: yes)
[7287](https://github.com/flutter/engine/pull/7287) Paint all backgrounds first to prevent overlap (cla: yes)
[7307](https://github.com/flutter/engine/pull/7307) Only reject gestures to embedded UIViews when the framework says so. (cla: yes)
[7308](https://github.com/flutter/engine/pull/7308) Support loading flutter assets from dynamic patch (cla: yes)
[7309](https://github.com/flutter/engine/pull/7309) Allow dynamic patches without a patch number. (cla: yes)
[7313](https://github.com/flutter/engine/pull/7313) Revert "Only reject gestures to embedded UIViews when the framework s⦠(cla: yes)
[7315](https://github.com/flutter/engine/pull/7315) Reland "Only reject gestures to embedded UIViews when the framework sa⦠(cla: yes)
[7316](https://github.com/flutter/engine/pull/7316) Roll dart to 88e6fe0f67 (cla: yes)
[7317](https://github.com/flutter/engine/pull/7317) Recreate the overlay rendering surfaces if the GrContext was changed. (cla: yes)
[7322](https://github.com/flutter/engine/pull/7322) Roll buildroot (cla: yes)
[7324](https://github.com/flutter/engine/pull/7324) Update GetCallbackHandle to use Dart_IsTearOff instead of a string comparison (cla: yes)
[7325](https://github.com/flutter/engine/pull/7325) Minor refactoring of dynamic patching code. (cla: yes)
[7327](https://github.com/flutter/engine/pull/7327) Give more control over when dynamic patches get downloaded and installed. (cla: yes)
[7346](https://github.com/flutter/engine/pull/7346) Make `ParagraphConstraints` have const constructor (cla: yes)
[7354](https://github.com/flutter/engine/pull/7354) Preparing to remove SK_SUPPORT_LEGACY_PAINT_TEXTMEASURE (cla: yes)
[7360](https://github.com/flutter/engine/pull/7360) Fix typo clas -> class (cla: yes)
[7363](https://github.com/flutter/engine/pull/7363) Roll Dart to version ec86471ccc47a62df8b4009e1fb37c66ff9dc91b (cla: yes)
[7370](https://github.com/flutter/engine/pull/7370) [HR] Documentation cleanup (cla: yes)
[7371](https://github.com/flutter/engine/pull/7371) Test SDK roll (cla: yes)
[7374](https://github.com/flutter/engine/pull/7374) Revert "Test SDK roll" (cla: yes)
[7387](https://github.com/flutter/engine/pull/7387) Improve TextAffinity Docs (cla: yes)
[7398](https://github.com/flutter/engine/pull/7398) Replace Java code with equivalent, more concise code. (cla: yes)
[7401](https://github.com/flutter/engine/pull/7401) Reset ParagraphBuilder after build() (cla: yes)
[7403](https://github.com/flutter/engine/pull/7403) Dart SDK roll for 2019-01-07 (cla: yes)
[7404](https://github.com/flutter/engine/pull/7404) fix up analysis for Dart in Engine (cla: yes)
[7405](https://github.com/flutter/engine/pull/7405) Dart SDK roll for 2019-01-07 (cla: yes)
[7409](https://github.com/flutter/engine/pull/7409) Cleanup dead code (cla: yes)
[7410](https://github.com/flutter/engine/pull/7410) Refactor shared code into separate function to simplify further work. (cla: yes)
[7411](https://github.com/flutter/engine/pull/7411) Dart SDK roll for 2019-01-08 (cla: yes)
[7413](https://github.com/flutter/engine/pull/7413) remove deprecated updateNode argument (cla: yes)
[7414](https://github.com/flutter/engine/pull/7414) Strut implementation (cla: yes)
[7416](https://github.com/flutter/engine/pull/7416) Dart SDK roll for 2019-01-08 (cla: yes)
[7417](https://github.com/flutter/engine/pull/7417) Dart SDK roll for 2019-01-09 (cla: yes)
[7419](https://github.com/flutter/engine/pull/7419) Dart SDK roll for 2019-01-09 (cla: yes)
[7421](https://github.com/flutter/engine/pull/7421) Dart SDK roll for 2019-01-09 (cla: yes)
[7426](https://github.com/flutter/engine/pull/7426) Refactor dynamic patching to use clearer naming and structure. (cla: yes)
[7427](https://github.com/flutter/engine/pull/7427) Allow embedders to add per shell idle notification callbacks. (cla: yes)
[7428](https://github.com/flutter/engine/pull/7428) Download dynamic patch to separate file to avoid races (cla: yes)
[7429](https://github.com/flutter/engine/pull/7429) Eliminate unused import of ZipException (cla: yes)
[7431](https://github.com/flutter/engine/pull/7431) Dart SDK roll for 2019-01-09 (cla: yes)
[7432](https://github.com/flutter/engine/pull/7432) Improve 404 handling when downloading dynamic patches. (cla: yes)
[7433](https://github.com/flutter/engine/pull/7433) Eliminate std::string using directive (cla: yes)
[7435](https://github.com/flutter/engine/pull/7435) Add Ahem to LibTxt testing fonts. (cla: yes)
[7436](https://github.com/flutter/engine/pull/7436) Clear the font collection's cache when a font is dynamically loaded (cla: yes)
[7437](https://github.com/flutter/engine/pull/7437) Temporary revert of Dart SDK rolls made since 2019/01/08 (cla: yes)
[7439](https://github.com/flutter/engine/pull/7439) Remove legacy and deprecated defaultClipBehavior (cla: yes)
[7442](https://github.com/flutter/engine/pull/7442) Move Picture.toImage rasterization to the GPU thread (cla: yes)
[7443](https://github.com/flutter/engine/pull/7443) Avg ms/frame instead of FPS in performance overlay (cla: yes)
[7444](https://github.com/flutter/engine/pull/7444) Pass deadline to embedder idle notification callback (cla: yes)
[7445](https://github.com/flutter/engine/pull/7445) Use anti-aliasing when drawing text in the performance overlay (cla: yes)
[7446](https://github.com/flutter/engine/pull/7446) Reland Dart SDK rolls made since 2019/01/08 (cla: yes)
[7447](https://github.com/flutter/engine/pull/7447) Make SetLocales more consistent with other RuntimeController methods (cla: yes)
[7449](https://github.com/flutter/engine/pull/7449) Dart SDK roll for 2019-01-11 (cla: yes)
[7450](https://github.com/flutter/engine/pull/7450) Stop pumping frames in applicationWillResignActive (cla: yes)
[7451](https://github.com/flutter/engine/pull/7451) Dart SDK roll for 2019-01-11 (cla: yes)
[7459](https://github.com/flutter/engine/pull/7459) add ColorFilter matrix support (cla: yes)
[7461](https://github.com/flutter/engine/pull/7461) Dart SDK roll for 2019-01-14 (cla: yes)
[7463](https://github.com/flutter/engine/pull/7463) Dart SDK roll for 2019-01-14 (cla: yes)
[7464](https://github.com/flutter/engine/pull/7464) update site to use SkFont for text fields (cla: yes)
[7476](https://github.com/flutter/engine/pull/7476) Log errors returned from method channel invocations in the text input plugin (cla: yes)
[7480](https://github.com/flutter/engine/pull/7480) Switch to Skia's new SkColorSpace factory (cla: yes)
[7483](https://github.com/flutter/engine/pull/7483) Revert "Add elevation and thickness to SemanticsNode" (cla: yes)
[7484](https://github.com/flutter/engine/pull/7484) Reland "Add elevation and thickness to SemanticsNode (#7282)" (accessibility, cla: yes)
[7485](https://github.com/flutter/engine/pull/7485) Execute Picture.toImage on the current thread in the test environment (cla: yes)
[7488](https://github.com/flutter/engine/pull/7488) Implemented Dark Mode for Android (#25525) (cla: yes)
[7492](https://github.com/flutter/engine/pull/7492) Cleanup Dart sticky errors API and roll tonic to 4634b29a24ccfc0fcfafcc8196ef30131185ad88 (cla: yes)
[7493](https://github.com/flutter/engine/pull/7493) Add runttime unittest that loads and runs an isolate from the kernel. (cla: yes)
[7495](https://github.com/flutter/engine/pull/7495) Add unittest that runs Dart code synchronously. (cla: yes)
[7496](https://github.com/flutter/engine/pull/7496) Validate dynamic patches before attempting to install (cla: yes)
[7497](https://github.com/flutter/engine/pull/7497) Deprecate FlutterProjectArgs.main_path, packages_path (cla: yes)
[7500](https://github.com/flutter/engine/pull/7500) Introduced a number of Java system channels in io/flutter/embedding/engine/systemchannels/ (cla: yes)
[7503](https://github.com/flutter/engine/pull/7503) Edit the bundleid so that it conform to UIT specifications. (cla: yes)
[7511](https://github.com/flutter/engine/pull/7511) Remove unused headers (cla: yes)
[7512](https://github.com/flutter/engine/pull/7512) Wrap the user entrypoint function in a zone with native exception callback. (cla: yes)
[7516](https://github.com/flutter/engine/pull/7516) Fixes Android pressure range (cla: yes)
[7518](https://github.com/flutter/engine/pull/7518) Update default flutter_assets path for iOS embedding (cla: yes)
[7522](https://github.com/flutter/engine/pull/7522) Revert "Wrap the user entrypoint function in a zone with native exception callback. (#7512)" (cla: yes)
[7525](https://github.com/flutter/engine/pull/7525) Support custom kernel blob path in test fixtures (cla: yes)
[7528](https://github.com/flutter/engine/pull/7528) Ensure the ResourceContext is not ripped out from under dart (cla: yes)
[7530](https://github.com/flutter/engine/pull/7530) Fix suspicious typo "painted" to "paint" (cla: yes)
[7532](https://github.com/flutter/engine/pull/7532) Mark new unavailable for those init marked unavailable (cla: yes)
[7533](https://github.com/flutter/engine/pull/7533) Configure the embedder for AOT in "profile" and "release" runtime modes. (cla: yes)
[7537](https://github.com/flutter/engine/pull/7537) Add mock capability to PerformanceOverlayLayer (cla: yes)
[7538](https://github.com/flutter/engine/pull/7538) Allow embedders to specify AOT snapshot buffers. (cla: yes)
[7539](https://github.com/flutter/engine/pull/7539) IWYU to get SkFontMetrics (cla: yes)
[7544](https://github.com/flutter/engine/pull/7544) Keep engine alive if VC is not deallocated (cla: yes)
[7545](https://github.com/flutter/engine/pull/7545) IWYU, esp. since SkFontMetrics.h is leaving SkPaint.h (cla: yes)
[7548](https://github.com/flutter/engine/pull/7548) Remove SkColorSpaceXformCanvas, use color-managed SkSurfaces instead (cla: yes)
[7549](https://github.com/flutter/engine/pull/7549) Remove the shell build target's dependency on the embedder library (cla: yes)
[7551](https://github.com/flutter/engine/pull/7551) Re-land "Wrap the user entrypoint function in a zone with native exception callback. (#7512)" (cla: yes)
[7558](https://github.com/flutter/engine/pull/7558) Fix UIButton selector doesn't work in iOS platformview (cla: yes)
[7563](https://github.com/flutter/engine/pull/7563) Fix typos in Fuchsia (cla: yes)
[7566](https://github.com/flutter/engine/pull/7566) Avoid unnecessarily creating/destroying the PlatformView (cla: yes)
[7567](https://github.com/flutter/engine/pull/7567) Rename FlutterResult in embedder.h (cla: yes)
[7576](https://github.com/flutter/engine/pull/7576) Allow generating coverage reports for all unit-tests in the engine. (cla: yes)
[7577](https://github.com/flutter/engine/pull/7577) [embedder] Avoid looking for the kernel binary in AOT builds. (cla: yes)
[7579](https://github.com/flutter/engine/pull/7579) Add lcov coverage file generation. (cla: yes)
[7588](https://github.com/flutter/engine/pull/7588) Embed ICU data inside libflutter.so on Android (cla: yes)
[7591](https://github.com/flutter/engine/pull/7591) Roll buildroot to b4d21cb2a64d63218c8d99533d9c14e99201e8d8 (cla: yes)
[7602](https://github.com/flutter/engine/pull/7602) Update buildtools to c9e5400c9e03a0cfb7313d14fde38525399a7715 (cla: yes)
[7610](https://github.com/flutter/engine/pull/7610) Provide public api to allow FlutterEngine related context to be destoryed (affects: engine, cla: yes, customer: gold, platform-ios)
[7611](https://github.com/flutter/engine/pull/7611) Update license to sync with flutter/flutter (cla: yes)
[7617](https://github.com/flutter/engine/pull/7617) Allow the engine to redirect traces to systrace via settings. (cla: yes)
[7621](https://github.com/flutter/engine/pull/7621) Improve PathMetrics (cla: yes)
[7628](https://github.com/flutter/engine/pull/7628) Check in GEM_HOME for jazzy (cla: yes)
[7633](https://github.com/flutter/engine/pull/7633) Revert buildtools roll back to bac220c (cla: yes)
[7634](https://github.com/flutter/engine/pull/7634) Expose the Flutter engine, Dart and Skia versions to Dart. (cla: yes)
[7642](https://github.com/flutter/engine/pull/7642) Initial import of FDE macOS framework (cla: yes)
[7643](https://github.com/flutter/engine/pull/7643) Respect default goma path on Windows (cla: yes)
[7645](https://github.com/flutter/engine/pull/7645) Fix dynamic array -> vector (cla: yes)
[7647](https://github.com/flutter/engine/pull/7647) Update the verify_exported script to include the symbols for ICU data (cla: yes)
[7648](https://github.com/flutter/engine/pull/7648) [embedder] Document make_resource_current on FlutterOpenGLRendererConfig and warn if the callback is not set. (cla: yes)
[7649](https://github.com/flutter/engine/pull/7649) Fix two typos in embedder docs (cla: yes)
[7651](https://github.com/flutter/engine/pull/7651) Add FlutterProjectArgs::root_isolate_create_callback (cla: yes)
[7658](https://github.com/flutter/engine/pull/7658) Use the Wuffs GIF decoder (cla: yes)
[7659](https://github.com/flutter/engine/pull/7659) DCHECK that clip layer's behavior isn't none (cla: yes)
[7660](https://github.com/flutter/engine/pull/7660) Add kernel-worker and dart2js to BUILD.gn (cla: yes)
[7678](https://github.com/flutter/engine/pull/7678) Move Brightness definition to dart:ui (#27479) (cla: yes)
[7686](https://github.com/flutter/engine/pull/7686) Replace hb_face_reference_table with hb_ot_color_has_png in isColorBitmapFont (cla: yes)
[7687](https://github.com/flutter/engine/pull/7687) Lower the threshold to raster cache pictures (cla: yes)
[7689](https://github.com/flutter/engine/pull/7689) Revert "Disable the persistent cache (#6835)" (cla: yes)
[7691](https://github.com/flutter/engine/pull/7691) Don't warn for Async texture uploads on Fuchsia (cla: yes)
[7692](https://github.com/flutter/engine/pull/7692) Ensure dart2js and kernel worker snapshots are copied out of gen dir (cla: yes)
[7694](https://github.com/flutter/engine/pull/7694) Create stubbed dart:ui implementation, dart2js libraries file, copy rule (cla: yes)
[7701](https://github.com/flutter/engine/pull/7701) Revert "Lower the threshold to raster cache pictures" (cla: yes)
[7702](https://github.com/flutter/engine/pull/7702) Update snapshot build rules to generate .o files instead of .S files on Windows (Windows, cla: yes)
[7708](https://github.com/flutter/engine/pull/7708) [fuchsia] Update scenic include (cla: yes)
[7713](https://github.com/flutter/engine/pull/7713) Disable wuff on Windows (cla: yes)
[7715](https://github.com/flutter/engine/pull/7715) Decode using the last cached required frame (cla: yes, crash)
[7717](https://github.com/flutter/engine/pull/7717) Allow all entrypoints support by the command line VM. (cla: yes)
[7718](https://github.com/flutter/engine/pull/7718) Roll buildroot to c82412bcdcd593f1385a478ae2c4b8eb9814f3b8 (cla: yes)
[7719](https://github.com/flutter/engine/pull/7719) libtxt: support justification of RTL text (cla: yes)
[7725](https://github.com/flutter/engine/pull/7725) Correct libraries.yaml path for stub_ui, add brightness, copy dart2js_platform.dill files (cla: yes)
[7726](https://github.com/flutter/engine/pull/7726) Fix versions implementation (cla: yes)
[7731](https://github.com/flutter/engine/pull/7731) [fuchsia] Update path to fuchsia.ui.scenic (cla: yes)
[7733](https://github.com/flutter/engine/pull/7733) Update documentation for command line args in FlutterProjectArgs. (cla: yes)
[7734](https://github.com/flutter/engine/pull/7734) Use all font managers to discover fonts for strut. (cla: yes)
[7735](https://github.com/flutter/engine/pull/7735) Use correct flags on LUCI/legacy (cla: yes)
[7737](https://github.com/flutter/engine/pull/7737) Provide a default pressure range if a MotionEvent does not have a device (cla: yes)
[7738](https://github.com/flutter/engine/pull/7738) Android embedding refactor pr3 add remaining systemchannels (cla: yes)
[7739](https://github.com/flutter/engine/pull/7739) Add onPlatformBrightnessChanged/platformBrightness to stub ui window. (cla: yes)
[7740](https://github.com/flutter/engine/pull/7740) Rename macOS framework to FlutterMacOS.framework (cla: yes)
[7741](https://github.com/flutter/engine/pull/7741) use full git hash for version (cla: yes)
[7744](https://github.com/flutter/engine/pull/7744) Support for loading dynamic patches in AOT mode. (cla: yes)
[7746](https://github.com/flutter/engine/pull/7746) Don't call OnAnimatorNotifyIdle if a frame is scheduled (cla: yes)
[7751](https://github.com/flutter/engine/pull/7751) Create mipmaps for images when uploading them on the IO thread (cla: yes)
[7753](https://github.com/flutter/engine/pull/7753) allow specifying out directory root (cla: yes)
[7755](https://github.com/flutter/engine/pull/7755) Document GPUSurfaceGLDelegate methods and move it to its own file. (cla: yes)
[7756](https://github.com/flutter/engine/pull/7756) Add flutter config to macOS targets (cla: yes)
[7758](https://github.com/flutter/engine/pull/7758) Recommended implementation of combining characters implementation. (cla: yes)
[7759](https://github.com/flutter/engine/pull/7759) Throttle picture raster cache (cla: yes)
[7762](https://github.com/flutter/engine/pull/7762) Allow specifying the out directory prefix (cla: yes)
[7764](https://github.com/flutter/engine/pull/7764) Add x bit to some python scripts (cla: yes)
[7765](https://github.com/flutter/engine/pull/7765) Revert "Add mock capability to PerformanceOverlayLayer" (cla: yes)
[7777](https://github.com/flutter/engine/pull/7777) Support for binary decompression of dynamic patches. (cla: yes)
[7785](https://github.com/flutter/engine/pull/7785) Don't use WUFFs (cla: yes)
[7786](https://github.com/flutter/engine/pull/7786) Update licenses for the switch away from the Wuffs GIF decoder (cla: yes)
[7790](https://github.com/flutter/engine/pull/7790) Allow embedders to specify pointer device IDs. (cla: yes)
[7791](https://github.com/flutter/engine/pull/7791) Add space metrics tracking for trailing whitespace "ghost" runs. (cla: yes)
[7801](https://github.com/flutter/engine/pull/7801) Revert "Use all font managers to discover fonts for strut. (#7734)" (cla: yes)
[7804](https://github.com/flutter/engine/pull/7804) Add support for new Scenic clip planes. (cla: yes)
[7806](https://github.com/flutter/engine/pull/7806) Remove the Dart JIT snapshot data from AOT builds of the embedder library (cla: yes)
[7807](https://github.com/flutter/engine/pull/7807) Add flow events connecting pointer events to frames (cla: yes)
[7809](https://github.com/flutter/engine/pull/7809) Use newer Skia API for PathMeasure (cla: yes)
[7811](https://github.com/flutter/engine/pull/7811) Add FFI to libraries.yaml. (cla: yes)
[7813](https://github.com/flutter/engine/pull/7813) Expose more pointer phases in embedder.h (cla: yes)
[7814](https://github.com/flutter/engine/pull/7814) Fix typo in painting.dart (cla: yes, waiting for tree to go green)
[7815](https://github.com/flutter/engine/pull/7815) Allow specifying the buildtools path (cla: yes, waiting for tree to go green)
[7819](https://github.com/flutter/engine/pull/7819) Fix tests that were committed after cirrus ran (cla: yes)
[7826](https://github.com/flutter/engine/pull/7826) Pass flow id properly. (cla: yes)
[7827](https://github.com/flutter/engine/pull/7827) Remove unnecessary entry-point closurization. (cla: yes)
[7830](https://github.com/flutter/engine/pull/7830) Move up ndk version that is being downloaded(old one no longer available). (cla: yes)
[7832](https://github.com/flutter/engine/pull/7832) Shut down and restart the Dart VM as needed. (cla: yes)
[7834](https://github.com/flutter/engine/pull/7834) [fuchsia][SCN-1054] Map elevation onto -Z in Scenic (cla: yes)
[7836](https://github.com/flutter/engine/pull/7836) Delete GL textures when they are released from the texture registry. (cla: yes)
[7837](https://github.com/flutter/engine/pull/7837) Fix NullPointerException in SurfaceTextureRegistryEntry (cla: yes)
[7838](https://github.com/flutter/engine/pull/7838) Fix NullPointerException in ResourceCleaner (cla: yes)
[7839](https://github.com/flutter/engine/pull/7839) Ensure to pass dill file after VM options for gen_snapshot (cla: yes)
[7841](https://github.com/flutter/engine/pull/7841) Don't call static method from instance variable (cla: yes)
[7843](https://github.com/flutter/engine/pull/7843) Add support for calling into other plugins from a background context on iOS (cla: yes)
[7845](https://github.com/flutter/engine/pull/7845) Add fml::FileExists implementation for Windows (cla: yes)
[7846](https://github.com/flutter/engine/pull/7846) Update buildroot to 7f64ff4928e to unblock Mac builds. (cla: yes)
[7849](https://github.com/flutter/engine/pull/7849) Revert "Android embedding refactor pr3 add remaining systemchannels (β¦ (cla: yes)
[7853](https://github.com/flutter/engine/pull/7853) Revert "Support for binary decompression of dynamic patches. (#7777)" (cla: yes)
[7862](https://github.com/flutter/engine/pull/7862) Reland "Lower the threshold to raster cache pictures (#7687)" (cla: yes)
[7863](https://github.com/flutter/engine/pull/7863) Reland PerformanceOverlayLayer golden test (cla: yes)
[7874](https://github.com/flutter/engine/pull/7874) Android embedding refactor pr3 add remaining systemchannels (cla: yes)
[7875](https://github.com/flutter/engine/pull/7875) Fix caret being at left edge when newline pressed on centered text (cla: yes)
[7876](https://github.com/flutter/engine/pull/7876) Revert "Remove unnecessary entry-point closurization." (cla: yes)
[7877](https://github.com/flutter/engine/pull/7877) Revert "Shut down and restart the Dart VM as needed." (cla: yes)
[7878](https://github.com/flutter/engine/pull/7878) Android embedding refactor pr5 add flutterengine impl (cla: yes)
[7880](https://github.com/flutter/engine/pull/7880) Test profile and release build and unit tests (cla: yes)
[7882](https://github.com/flutter/engine/pull/7882) Fix minor typos in accessibility action docs (cla: yes)
[7883](https://github.com/flutter/engine/pull/7883) Correct onAccessibilityFeaturesChanged docs (cla: yes)
[7886](https://github.com/flutter/engine/pull/7886) Revert "Android embedding refactor pr3 add remaining systemchannels" (cla: yes)
[7891](https://github.com/flutter/engine/pull/7891) Add accessibility semantics support to embedder (cla: yes)
[7892](https://github.com/flutter/engine/pull/7892) Android embedding refactor pr3 add remaining systemchannels (cla: yes)
[7893](https://github.com/flutter/engine/pull/7893) Respect the custom GL proc table when creating the resource context on the IO thread. (cla: yes)
[7895](https://github.com/flutter/engine/pull/7895) Revert "Reland PerformanceOverlayLayer golden test (#7863)" (cla: yes)
[7899](https://github.com/flutter/engine/pull/7899) Eliminate .member = foo struct initialization (cla: yes)
[7904](https://github.com/flutter/engine/pull/7904) Reland "Remove unnecessary entry-point closurization." (cla: yes)
## PRs closed in this release of flutter/plugins
From Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800
[690](https://github.com/flutter/plugins/pull/690) [video_player] Fix aspect ratio (cla: yes)
[842](https://github.com/flutter/plugins/pull/842) Remove base detector class and change detection method name (cla: yes, flutterfire)
[895](https://github.com/flutter/plugins/pull/895) [connectivity] Added getWifiIP() (cla: yes)
[896](https://github.com/flutter/plugins/pull/896) [firebase-analytics] Enable setAnalyticsCollectionEnabled support for iOS (cla: no, flutterfire, submit queue)
[926](https://github.com/flutter/plugins/pull/926) Remove firebase_auth dependency from android_alarm_manager library and add initialize step to readme (cla: yes, documentation, submit queue)
[936](https://github.com/flutter/plugins/pull/936) Fixed typo `BarcodeValueType` (cla: yes)
[947](https://github.com/flutter/plugins/pull/947) fix: url_launcher can't launcher for Android (cla: yes)
[949](https://github.com/flutter/plugins/pull/949) Fixes: 'webview_flutter/WebviewFlutterPlugin.h' file not found (cla: yes)
[950](https://github.com/flutter/plugins/pull/950) Show https://flutter.io in the webview_flutter example. (cla: yes)
[954](https://github.com/flutter/plugins/pull/954) add new plugins reference to README.md (cla: yes)
[956](https://github.com/flutter/plugins/pull/956) Make the description for webview_flutter longer. (cla: yes)
[957](https://github.com/flutter/plugins/pull/957) fix message structure from intent (cla: yes)
[959](https://github.com/flutter/plugins/pull/959) Add navigation methods to webview_flutter (cla: yes)
[960](https://github.com/flutter/plugins/pull/960) Fail call when trying to recover auth with backgrounded app (cla: yes)
[961](https://github.com/flutter/plugins/pull/961) Control the GoogleMap options with widget parameters. (cla: yes)
[965](https://github.com/flutter/plugins/pull/965) Add byte streaming capability for the camera (cla: yes)
[967](https://github.com/flutter/plugins/pull/967) Fix initialUrl null check for webview_flutter (cla: yes)
[971](https://github.com/flutter/plugins/pull/971) Add the ability for ML Kit to create image from bytes (cla: yes)
[972](https://github.com/flutter/plugins/pull/972) Fix typo in WebView's "initWithWithFrame". (cla: yes)
[974](https://github.com/flutter/plugins/pull/974) Implemented reload method in webview_flutter (cla: yes)
[976](https://github.com/flutter/plugins/pull/976) [camera] Fix issue with crash when the physical device's orientation is unknown on Android. (cla: yes)
[977](https://github.com/flutter/plugins/pull/977) Temporarily add exoplayer repo accidentally deleted from jcenter (cla: yes)
[992](https://github.com/flutter/plugins/pull/992) Add currentUrl accessor to WebView plugin. (cla: yes)
[993](https://github.com/flutter/plugins/pull/993) Allow user to handle PlatformExceptions caught by FirebaseAnalyticsObserver._sendScreenView(). (cla: yes)
[995](https://github.com/flutter/plugins/pull/995) Bump webview_flutter's version. (cla: yes)
[997](https://github.com/flutter/plugins/pull/997) closeWebView fixes for url_launcher (cla: yes)
[1002](https://github.com/flutter/plugins/pull/1002) Fixed local_auth crash with API < 24 #24339 (cla: yes)
[1006](https://github.com/flutter/plugins/pull/1006) Bump android_alarm_manager version to 0.2.3 (cla: yes)
[1021](https://github.com/flutter/plugins/pull/1021) javascript evaluation ios/android (cla: yes, feature, webview)
[1024](https://github.com/flutter/plugins/pull/1024) Doc and build script updates to the IAP plugin (cla: yes)
[1025](https://github.com/flutter/plugins/pull/1025) Fix CI analyzer errors (cla: yes)
[1031](https://github.com/flutter/plugins/pull/1031) Workaround the Gradle crash due to non ASCII characters. (cla: yes)
[1034](https://github.com/flutter/plugins/pull/1034) Remove comments from license file (cla: yes)
[1037](https://github.com/flutter/plugins/pull/1037) Save photo orientation on iOS (cla: yes)
[1040](https://github.com/flutter/plugins/pull/1040) Rev version to publish 0.3.1 to pub (cla: yes)
[1042](https://github.com/flutter/plugins/pull/1042) Remove scary message (cla: yes)
[1046](https://github.com/flutter/plugins/pull/1046) Fix Crash When StartPreview Error (cla: yes)
[1051](https://github.com/flutter/plugins/pull/1051) Fix image picker crash on IOS (cla: yes)
[1057](https://github.com/flutter/plugins/pull/1057) [IAP] Check if the payment processor is available (cla: yes)
[1058](https://github.com/flutter/plugins/pull/1058) Update dart doc for forceSafariVC for the usage of universal links on iOS (cla: yes)
[1060](https://github.com/flutter/plugins/pull/1060) Bump camera plugin version and update changelog. (cla: yes)
[1062](https://github.com/flutter/plugins/pull/1062) Url launcher ios universallinksonly (cla: yes)
[1065](https://github.com/flutter/plugins/pull/1065) Supress `strong_mode_implicit_dynamic_method` for `invokeMethod` calls. (cla: yes)
[1068](https://github.com/flutter/plugins/pull/1068) Iap productlist ios (cla: yes)
[1072](https://github.com/flutter/plugins/pull/1072) adding nil check (cla: yes)
[1076](https://github.com/flutter/plugins/pull/1076) Fix `Manifest versionCode not found` (cla: yes)
[1082](https://github.com/flutter/plugins/pull/1082) [IAP] Clean up Dart unit tests (cla: yes)
[1083](https://github.com/flutter/plugins/pull/1083) [IAP] Add missing license headers (cla: yes)
[1084](https://github.com/flutter/plugins/pull/1084) [IAP] Fetch SkuDetails from Google Play (cla: yes)
[1085](https://github.com/flutter/plugins/pull/1085) Url launcher refactor (cla: yes)
[1086](https://github.com/flutter/plugins/pull/1086) Enable compute credits for commits, and for macOS PRs (cla: yes)
[1087](https://github.com/flutter/plugins/pull/1087) cirrues update to mojave-xcode-10.1 (cla: yes)
[1088](https://github.com/flutter/plugins/pull/1088) add deprecated_member_use_from_same_package to pass analyzer (cla: yes)
[1089](https://github.com/flutter/plugins/pull/1089) Fix a crash when selecting downloaded images on certain devices (cla: yes)
[1090](https://github.com/flutter/plugins/pull/1090) [IAP] Generate boilerplate serializers (cla: yes)
[1092](https://github.com/flutter/plugins/pull/1092) Fix broken documentation link to AndroidBuildVersionCodes (cla: yes)
[1093](https://github.com/flutter/plugins/pull/1093) [image_picker] Fixed a crash that would occur when called in quick succession on Android (cla: yes)
[1102](https://github.com/flutter/plugins/pull/1102) cleanup (cla: yes)
[1103](https://github.com/flutter/plugins/pull/1103) Migrate independent plugins to AndroidX (cla: yes)
[1104](https://github.com/flutter/plugins/pull/1104) Include Android SDK 27 in the docker image and accept licenses (cla: yes)
[1105](https://github.com/flutter/plugins/pull/1105) update change log for url launcher (cla: yes)
[1106](https://github.com/flutter/plugins/pull/1106) [firebase_ml_vision] Set minimum iOS to 8 (cla: yes)
[1108](https://github.com/flutter/plugins/pull/1108) Remove 'init' static method (cla: yes)
[1109](https://github.com/flutter/plugins/pull/1109) Update all plugins to minimum iOS 8.0 (cla: yes)
[1112](https://github.com/flutter/plugins/pull/1112) [IAP] Update README (cla: yes)
[1115](https://github.com/flutter/plugins/pull/1115) Migrate remaining plugins to AndroidX (cla: yes)
[1116](https://github.com/flutter/plugins/pull/1116) Add WebView JavaScript channels (Dart side). (cla: yes)
[1117](https://github.com/flutter/plugins/pull/1117) [firebase_auth] Update a broken dependency. (cla: yes)
[1118](https://github.com/flutter/plugins/pull/1118) [IAP] Update dev deps to match flutter_driver (cla: yes)
[1120](https://github.com/flutter/plugins/pull/1120) A few additional Androix dependencies (cla: yes)
[1124](https://github.com/flutter/plugins/pull/1124) Updated `launch` to use async and await, fixed the incorrect return value by `launch` method. (cla: yes)
[1125](https://github.com/flutter/plugins/pull/1125) Fixed image picker crash when used with android alarm manager (cla: yes)
[1126](https://github.com/flutter/plugins/pull/1126) [In_app_purchase] add payment translators in objc (cla: yes)
[1127](https://github.com/flutter/plugins/pull/1127) Revert AndroidX changes for 1.0.0 plugins (cla: yes)
[1128](https://github.com/flutter/plugins/pull/1128) Migrate to AndroidX forward roll (cla: yes)
[1129](https://github.com/flutter/plugins/pull/1129) android_alarm_manager background execution bug fixes (bugfix, cla: yes, submit queue)
[1130](https://github.com/flutter/plugins/pull/1130) WebView JavasScript channels Android implementation. (cla: yes, feature, webview)
[1132](https://github.com/flutter/plugins/pull/1132) Use string to save double for shared_preference(Android). (bugfix, cla: yes, needs love, submit queue)
[1133](https://github.com/flutter/plugins/pull/1133) Added support for persisting alarms across reboots (cla: yes, feature)
[1134](https://github.com/flutter/plugins/pull/1134) Updated connectivity to singleton (cla: yes)
[1135](https://github.com/flutter/plugins/pull/1135) FIx issue with calculating iOS image orientation in certain special c⦠(cla: yes)
[1138](https://github.com/flutter/plugins/pull/1138) Add a gradle warning to the AndroidX plugins (cla: yes)
[1139](https://github.com/flutter/plugins/pull/1139) WebView JavaScript channels - iOS implementation. (cla: yes)
[1140](https://github.com/flutter/plugins/pull/1140) Change iOS video format back to bgra8888 (cla: yes)
[1147](https://github.com/flutter/plugins/pull/1147) [In_app_purchase] Use json serializer for skproduct wrapper and related classes. (cla: yes)
[1148](https://github.com/flutter/plugins/pull/1148) Update NSNull check with directly checking the expected type. (cla: yes)
[1149](https://github.com/flutter/plugins/pull/1149) Allow clearing cookies for FlutterWebView (cla: yes)
[1155](https://github.com/flutter/plugins/pull/1155) Updating the example to match the new API (cla: yes, documentation, flutterfire, submit queue)
[1156](https://github.com/flutter/plugins/pull/1156) Add capability of using single plane buffers (cla: yes)
[1157](https://github.com/flutter/plugins/pull/1157) Workaround to fix the camera positioning issue on the google map view (cla: yes)
[1161](https://github.com/flutter/plugins/pull/1161) Add Swift example to README.md for google_maps_flutter (cla: yes)
[1162](https://github.com/flutter/plugins/pull/1162) [In_app_purchase] Expose nslocale and expose currencySymbol instead of currencyCode to match android (cla: yes)
[1163](https://github.com/flutter/plugins/pull/1163) Change from Rectangle<num>/Point<num> to Rect/Offset for ui convenience (cla: yes)
[1169](https://github.com/flutter/plugins/pull/1169) [In_app_purchase] getproductlist basic draft (cla: yes)
[1170](https://github.com/flutter/plugins/pull/1170) Remove ML models from ML Kit Vision plugin (cla: yes)
[1171](https://github.com/flutter/plugins/pull/1171) Revert "IAP add payment translators in objc (#1126)" (cla: yes)
[1172](https://github.com/flutter/plugins/pull/1172) [In_app_purchase] add payment objc translators (cla: yes)
[1173](https://github.com/flutter/plugins/pull/1173) Fix biometrics check error below ios11. (cla: yes)
[1175](https://github.com/flutter/plugins/pull/1175) Add unit tests to connectivity plugin (cla: yes)
[1176](https://github.com/flutter/plugins/pull/1176) Fix Firebase phone auth on Android (cla: yes)
[1177](https://github.com/flutter/plugins/pull/1177) Fix bug causing black screen on some Android devices (cla: yes)
[1178](https://github.com/flutter/plugins/pull/1178) [In_app_purchase] iOS add payment dart wrappers (cla: yes)
[1180](https://github.com/flutter/plugins/pull/1180) Expose exception on the signIn method in Google sign in. (cla: yes)
[1185](https://github.com/flutter/plugins/pull/1185) remove extra space (cla: yes)
[1193](https://github.com/flutter/plugins/pull/1193) Mark some packages as unpublishable (cla: yes)
[1194](https://github.com/flutter/plugins/pull/1194) [In_app_purchase] Fix the param map passed down to the platform channel when calling querySkuDetails (cla: yes)
[1195](https://github.com/flutter/plugins/pull/1195) Fix bug where HttpMetric/Trace dictionaries weren't being initialized on iOS (cla: yes)
[1199](https://github.com/flutter/plugins/pull/1199) [In_app_purchase] fix requesthandler crash (cla: yes)
[1200](https://github.com/flutter/plugins/pull/1200) WebView controller let's you clear cache (cla: yes)
[1202](https://github.com/flutter/plugins/pull/1202) Fix IllegalStateException for cloud_firestore transactions (cla: yes)
[1203](https://github.com/flutter/plugins/pull/1203) Don't send empty cloud_firestore snapshots on iOS when encountering errors (cla: yes)
[1204](https://github.com/flutter/plugins/pull/1204) Remove assertion for firebase_core that can interfere with hot-restart (cla: yes)
[1205](https://github.com/flutter/plugins/pull/1205) Introduce CODEOWNERS (cla: yes)
[1206](https://github.com/flutter/plugins/pull/1206) Fix iOS transactions when getting a snapshot that doesn't exist (cla: yes)
[1207](https://github.com/flutter/plugins/pull/1207) Fix cloud_firestore dates on some iOS devices (cla: yes)
[1209](https://github.com/flutter/plugins/pull/1209) fix firestore multiple app support for DocumentSnapshot and transactions (cla: yes)
[1210](https://github.com/flutter/plugins/pull/1210) cloud functions multiple app support (cla: yes)
[1212](https://github.com/flutter/plugins/pull/1212) Change version webview flutter (cla: yes)
[1213](https://github.com/flutter/plugins/pull/1213) Set GoogleAppMeasurement dependency version (cla: yes)
[1214](https://github.com/flutter/plugins/pull/1214) Video player supported formats (cla: yes)
[1215](https://github.com/flutter/plugins/pull/1215) Bump video_player version to 0.10.0+2 (cla: yes)
[1217](https://github.com/flutter/plugins/pull/1217) [android_alarm_manager] Include missing dependency (cla: yes)
[1220](https://github.com/flutter/plugins/pull/1220) remove the blank line in CODEOWNER (cla: yes)
[1221](https://github.com/flutter/plugins/pull/1221) Remove the method channel's reference to webview/maps on dispose. (cla: yes)
[1222](https://github.com/flutter/plugins/pull/1222) [In_app_purchase]remove categories (cla: yes)
[1225](https://github.com/flutter/plugins/pull/1225) Rotate image file based on Exif data (cla: yes, submit queue)
[1226](https://github.com/flutter/plugins/pull/1226) Remove categories (cla: yes)
[1230](https://github.com/flutter/plugins/pull/1230) [IAP] Add Java call for launchBillingFlow (cla: yes)
[1231](https://github.com/flutter/plugins/pull/1231) [in_app_purchase] make payment objc (cla: yes)
[1232](https://github.com/flutter/plugins/pull/1232) [IAP] Add the Dart API for launchBillingFlow (cla: yes)
[1238](https://github.com/flutter/plugins/pull/1238) [Camera] remove extra space in CHANGELOG (cla: yes)
[1242](https://github.com/flutter/plugins/pull/1242) Bugfix documents: webview_flutter JavascriptChannel, Example is not updated. (cla: yes)
[1246](https://github.com/flutter/plugins/pull/1246) Collection literals ignores in webview flutter plugin (cla: yes)
[1248](https://github.com/flutter/plugins/pull/1248) Remove left over conflict marker (cla: yes)
| website/src/release/release-notes/changelogs/changelog-1.2.1.md/0 | {
"file_path": "website/src/release/release-notes/changelogs/changelog-1.2.1.md",
"repo_id": "website",
"token_count": 43225
} | 1,248 |
---
title: Flutter 2.2.0 release notes
short-title: 2.2.0 release notes
description: Release notes for Flutter 2.2.0.
---
This page has release notes for 2.2.0.
For information about subsequent bug-fix releases, see
[Hotfixes to the Stable Channel][].
[Hotfixes to the Stable Channel]: https://github.com/flutter/flutter/wiki/Hotfixes-to-the-Stable-Channel
## Merged PRs by labels for `flutter/flutter`
### framework - 397 pull request(s)
[70171](https://github.com/flutter/flutter/pull/70171) [Checkbox] Adds shape property (cla: yes, f: material design, framework, waiting for tree to go green)
[71138](https://github.com/flutter/flutter/pull/71138) Let InkWell/Ink/ancestor support GlobalKey so that splash does not stop when changing position. (cla: yes, f: material design, framework, waiting for tree to go green)
[71217](https://github.com/flutter/flutter/pull/71217) Added checkboxHorizontalMargin to DataTable and PaginatedDataTable (cla: yes, f: material design, framework)
[71864](https://github.com/flutter/flutter/pull/71864) ignore sliver underflow if the last children is no longer at the previous last index (cla: yes, framework, waiting for tree to go green)
[72008](https://github.com/flutter/flutter/pull/72008) added debugDisableShadows usage explaination (cla: yes, framework)
[72052](https://github.com/flutter/flutter/pull/72052) Feature refresh indicator padding (cla: yes, f: material design, framework)
[72707](https://github.com/flutter/flutter/pull/72707) Fix/ValueListenableBuilder rebuilds (cla: yes, framework, waiting for tree to go green)
[72828](https://github.com/flutter/flutter/pull/72828) Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[73042](https://github.com/flutter/flutter/pull/73042) Timer based pointer event resampling (cla: yes, f: gestures, framework)
[73105](https://github.com/flutter/flutter/pull/73105) [UserAccountsDrawerHeader] New option for changing profiles images size (cla: yes, f: material design, framework, waiting for tree to go green)
[73143](https://github.com/flutter/flutter/pull/73143) Add optional DragAnchorStrategy to Draggable (cla: yes, framework, waiting for tree to go green)
[73510](https://github.com/flutter/flutter/pull/73510) Reland "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73526](https://github.com/flutter/flutter/pull/73526) SliverAppBar Default Elevation Patch (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73750](https://github.com/flutter/flutter/pull/73750) Remove deprecated BinaryMessages (cla: yes, framework, severe: API break, waiting for tree to go green)
[73751](https://github.com/flutter/flutter/pull/73751) Remove deprecated TypeMatcher class (cla: yes, framework, severe: API break, waiting for tree to go green)
[73964](https://github.com/flutter/flutter/pull/73964) Adds First/Last buttons to PaginatedDataTable (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)
[74043](https://github.com/flutter/flutter/pull/74043) Added enableFeedback property to BottomNavigationBar (cla: yes, f: material design, framework, waiting for tree to go green)
[74046](https://github.com/flutter/flutter/pull/74046) Fix "[proposal] provide a way to change the clipBehavior of the AnimatedList widget " (cla: yes, framework)
[74047](https://github.com/flutter/flutter/pull/74047) Fix "Support configurable hit test behavior on Draggable and DragTarget" (cla: yes, framework, waiting for tree to go green)
[74373](https://github.com/flutter/flutter/pull/74373) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[74415](https://github.com/flutter/flutter/pull/74415) Adding hero example (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[74446](https://github.com/flutter/flutter/pull/74446) Don't leak exceptions thrown by message channels (a: tests, cla: yes, framework, waiting for tree to go green)
[74592](https://github.com/flutter/flutter/pull/74592) Allow long press delay duration for LongPressDraggable to be adjustable (cla: yes, framework, waiting for tree to go green)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[74684](https://github.com/flutter/flutter/pull/74684) [flutter] throw more specific error messages if a lerp'd type does not conform to Tween (cla: yes, framework)
[74697](https://github.com/flutter/flutter/pull/74697) Added a ReorderableListView.builder constructor (cla: yes, f: material design, framework)
[74701](https://github.com/flutter/flutter/pull/74701) Switch global key registry to be owned by the build owner. (cla: yes, framework)
[74722](https://github.com/flutter/flutter/pull/74722) TextField and last input character should visible on the screen when the cursor is not shown (cla: yes, f: material design, framework, waiting for tree to go green)
[74747](https://github.com/flutter/flutter/pull/74747) fix title format tweaks (cla: yes, framework, waiting for tree to go green)
[74758](https://github.com/flutter/flutter/pull/74758) Remove FocusTraversalGroups from the final sorted list of descendants. (cla: yes, framework)
[74768](https://github.com/flutter/flutter/pull/74768) Use the shortcuts temporary solution only on web (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74773](https://github.com/flutter/flutter/pull/74773) Added ButtonStyle.fixedSize (cla: yes, f: material design, framework, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74805](https://github.com/flutter/flutter/pull/74805) [State Restoration] CupertinoModalPopupRoute (cla: yes, f: cupertino, framework, waiting for tree to go green)
[74821](https://github.com/flutter/flutter/pull/74821) Remove "unnecessary" imports in material (cla: yes, f: material design, framework, waiting for tree to go green)
[74826](https://github.com/flutter/flutter/pull/74826) Cherrypick Use the shortcuts temporary solution only on web (#74768) (cla: yes, f: cupertino, f: material design, framework)
[74835](https://github.com/flutter/flutter/pull/74835) Add more references to LongPressDraggable (cla: yes, framework)
[74837](https://github.com/flutter/flutter/pull/74837) InputDecorator negative baseline error message (cla: yes, f: material design, framework, waiting for tree to go green)
[74842](https://github.com/flutter/flutter/pull/74842) Fix a bug with duplicate keys being used in the ReorderableListView. (cla: yes, f: material design, framework, waiting for tree to go green)
[74851](https://github.com/flutter/flutter/pull/74851) fixes precision error during SliverGridRegularTileLayout (cla: yes, framework, waiting for tree to go green)
[74853](https://github.com/flutter/flutter/pull/74853) Migrate flutter_goldens to NNBD (a: null-safety, cla: yes, framework, team, waiting for tree to go green)
[74854](https://github.com/flutter/flutter/pull/74854) always pass filterQuality specified in the Image widget to canvas (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)
[74856](https://github.com/flutter/flutter/pull/74856) driver nnbd (a: tests, cla: yes, framework, team)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74880](https://github.com/flutter/flutter/pull/74880) Fix a slider layout bug when the overlay size is smaller than the thumb size (cla: yes, f: material design, framework, waiting for tree to go green)
[74899](https://github.com/flutter/flutter/pull/74899) Remove "unnecessary" imports in material/ (cla: yes, f: material design, framework, waiting for tree to go green)
[74901](https://github.com/flutter/flutter/pull/74901) Remove "unnecessary" imports in test/animation (cla: yes, framework, waiting for tree to go green)
[74906](https://github.com/flutter/flutter/pull/74906) Improve Dropdown Menu (cla: yes, f: material design, framework, waiting for tree to go green)
[74909](https://github.com/flutter/flutter/pull/74909) Update the Focus widget to update the node's onKey handler when the widget updates (cla: yes, framework)
[74916](https://github.com/flutter/flutter/pull/74916) Only show devtools deep links for render overflow errors (cla: yes, framework, waiting for tree to go green)
[74927](https://github.com/flutter/flutter/pull/74927) fix word in doc comment (cla: yes, framework, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[74949](https://github.com/flutter/flutter/pull/74949) Added ButtonStyle.splashFactory and NoSplash.splashFactory (cla: yes, f: material design, framework, waiting for tree to go green)
[74972](https://github.com/flutter/flutter/pull/74972) Show an X when images can't load. (cla: yes, framework, waiting for tree to go green)
[75005](https://github.com/flutter/flutter/pull/75005) Remove "unnecessary" imports in material (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75006](https://github.com/flutter/flutter/pull/75006) Remove "unnecessary" imports in cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75007](https://github.com/flutter/flutter/pull/75007) Remove "unnecessary" imports in foundation,gestures tests (cla: yes, framework, waiting for tree to go green)
[75030](https://github.com/flutter/flutter/pull/75030) Revert "NNBD integration_test" (a: tests, cla: yes, framework, team)
[75032](https://github.com/flutter/flutter/pull/75032) Text Editing Movement Keys via Shortcuts (cla: yes, f: material design, framework)
[75037](https://github.com/flutter/flutter/pull/75037) [web] benchmark and optimize defaultTargetPlatform (cla: yes, framework, team)
[75049](https://github.com/flutter/flutter/pull/75049) Removed the "new" keyword from the Flutter_test examples (a: tests, cla: yes, framework)
[75074](https://github.com/flutter/flutter/pull/75074) Reland integration_test NNBD (a: tests, cla: yes, framework, team)
[75095](https://github.com/flutter/flutter/pull/75095) Fixed improper assertion of maxCrossAxisExtent (cla: yes, f: scrolling, framework)
[75102](https://github.com/flutter/flutter/pull/75102) Fix formatting in rendering/box (cla: yes, framework, waiting for tree to go green)
[75138](https://github.com/flutter/flutter/pull/75138) AlertDialog: Remove scrollability by default (cla: yes, f: material design, framework, waiting for tree to go green)
[75169](https://github.com/flutter/flutter/pull/75169) Added scrollController property to TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)
[75175](https://github.com/flutter/flutter/pull/75175) Make flutter_driver be usable from a null-safe app (a: tests, cla: yes, framework, waiting for tree to go green)
[75194](https://github.com/flutter/flutter/pull/75194) Remove unactionable message that was appearing during test execution. (cla: yes, framework, waiting for tree to go green)
[75198](https://github.com/flutter/flutter/pull/75198) Remove "unnecessary" imports in painting tests (cla: yes, framework)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75266](https://github.com/flutter/flutter/pull/75266) Revert "Make flutter_driver be usable from a null-safe app" (a: tests, cla: yes, framework)
[75269](https://github.com/flutter/flutter/pull/75269) Reland "Make flutter_driver be usable from a null-safe app (#75175)" (a: tests, cla: yes, framework, waiting for tree to go green)
[75271](https://github.com/flutter/flutter/pull/75271) Add test for driver test organisation (a: tests, cla: yes, framework, waiting for tree to go green)
[75287](https://github.com/flutter/flutter/pull/75287) Add fix for maxEnforced -> maxEnforcement (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75291](https://github.com/flutter/flutter/pull/75291) [Api docs] Dartpad demo for alert dialog. (cla: yes, f: material design, framework)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75308](https://github.com/flutter/flutter/pull/75308) Fix the NestedScrollView exception when rebuilding during scheduleWarmUpFrame (cla: yes, framework, waiting for tree to go green)
[75317](https://github.com/flutter/flutter/pull/75317) Revert "Add test for driver test organisation" (a: tests, cla: yes, framework)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75340](https://github.com/flutter/flutter/pull/75340) Added BorderRadius.copyWith (cla: yes, framework, waiting for tree to go green)
[75343](https://github.com/flutter/flutter/pull/75343) More null-safety fixes for flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75358](https://github.com/flutter/flutter/pull/75358) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75359](https://github.com/flutter/flutter/pull/75359) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75360](https://github.com/flutter/flutter/pull/75360) Fix BottomNavigationBar MediaQuery padding (cla: yes, f: material design, framework, waiting for tree to go green)
[75393](https://github.com/flutter/flutter/pull/75393) Add onLongPress property to DataCell: #72609 (cla: yes, f: material design, framework, waiting for tree to go green)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75454](https://github.com/flutter/flutter/pull/75454) ToggleButtons focus,highlight,hoverElevation = 0 (cla: yes, f: material design, framework, waiting for tree to go green)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75513](https://github.com/flutter/flutter/pull/75513) Modified the computeMinIntrinsicHeight method to calculate the height properly (cla: yes, f: material design, framework, waiting for tree to go green)
[75519](https://github.com/flutter/flutter/pull/75519) Added TextButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[75522](https://github.com/flutter/flutter/pull/75522) Fix for issue #75518 - ListTile.divideTiles throws error if empty list is passed when null-safety enabled (cla: yes, f: material design, framework, waiting for tree to go green)
[75532](https://github.com/flutter/flutter/pull/75532) Revert "TextField and last input character should visible on the screen when the cursor is not shown (#74722)" (cla: yes, f: material design, framework)
[75541](https://github.com/flutter/flutter/pull/75541) fixes TextInputFormatter gets wrong old value of a selection (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75549](https://github.com/flutter/flutter/pull/75549) Document that a CupertinoApp isn't necessary for an iOS app (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75554](https://github.com/flutter/flutter/pull/75554) Fixed grammatical typo (cla: yes, framework)
[75576](https://github.com/flutter/flutter/pull/75576) Allow callers to pump a root widget with no child (cla: yes, framework)
[75603](https://github.com/flutter/flutter/pull/75603) Widen getText support for RichText with multiple text spans in driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75604](https://github.com/flutter/flutter/pull/75604) Reland #74722 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75614](https://github.com/flutter/flutter/pull/75614) Add RenderEditable keys listener back in attach() (cla: yes, framework, waiting for tree to go green)
[75624](https://github.com/flutter/flutter/pull/75624) Add more checks when use Navigator 2.0 (cla: yes, framework, waiting for tree to go green)
[75637](https://github.com/flutter/flutter/pull/75637) Remove "unnecessary" imports in test/rendering (cla: yes, framework, waiting for tree to go green)
[75649](https://github.com/flutter/flutter/pull/75649) Fix for VelocityTracker deprecation (cla: yes, framework, team, waiting for tree to go green)
[75666](https://github.com/flutter/flutter/pull/75666) Create an InlineSpanSemanticsInformation only if the TextSpan has text (cla: yes, framework)
[75669](https://github.com/flutter/flutter/pull/75669) Revert "Fix/ValueListenableBuilder rebuilds" (cla: yes, framework, waiting for tree to go green)
[75670](https://github.com/flutter/flutter/pull/75670) CupertinoPageTransition Optimizations (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75676](https://github.com/flutter/flutter/pull/75676) Removed ButtonBar from AlertDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[75678](https://github.com/flutter/flutter/pull/75678) Loosen ui.TextStyle toString tests (cla: yes, framework, waiting for tree to go green)
[75705](https://github.com/flutter/flutter/pull/75705) Remove "unnecessary" imports in tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75707](https://github.com/flutter/flutter/pull/75707) Remove "unnecessary" imports in test/services (cla: yes, framework, waiting for tree to go green)
[75734](https://github.com/flutter/flutter/pull/75734) Revert "Remove deprecated TypeMatcher class" (cla: yes, framework, waiting for tree to go green)
[75738](https://github.com/flutter/flutter/pull/75738) adding freeze parameter to Texture and TextureBox (cla: yes, framework, waiting for tree to go green)
[75748](https://github.com/flutter/flutter/pull/75748) Fix constraints of popupmenu (cla: yes, f: material design, framework, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[75764](https://github.com/flutter/flutter/pull/75764) ScrollController.jumpTo zero should not trigger the refresh indicator (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[75769](https://github.com/flutter/flutter/pull/75769) fix(flutter_driver): Properly declare socket as nullable (a: tests, cla: yes, framework, waiting for tree to go green)
[75794](https://github.com/flutter/flutter/pull/75794) Fix for #75792 - allow use of Animator<Color?> with LinearProgressIndicator (cla: yes, f: material design, framework, waiting for tree to go green)
[75796](https://github.com/flutter/flutter/pull/75796) Remove "unnecessary" imports in test/widgets (cla: yes, framework, waiting for tree to go green)
[75804](https://github.com/flutter/flutter/pull/75804) [flutter_releases] Flutter Framework 1.26.0-17.5.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75809](https://github.com/flutter/flutter/pull/75809) Apply bottom margin to FABs that have been boosted into the Safe Area (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[75811](https://github.com/flutter/flutter/pull/75811) Move ensureVisualUpdate call to call sites in WidgetsBinding.attachRootWidget() (cla: yes, framework)
[75813](https://github.com/flutter/flutter/pull/75813) Audit and update deprecation warnings (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75820](https://github.com/flutter/flutter/pull/75820) Remove some `dynamic's. (cla: yes, framework, waiting for tree to go green)
[75863](https://github.com/flutter/flutter/pull/75863) Clean up some documentation around shader warm-up. (cla: yes, framework, waiting for tree to go green)
[75873](https://github.com/flutter/flutter/pull/75873) Revert "Removed ButtonBar from AlertDialog" (cla: yes, f: material design, framework)
[75894](https://github.com/flutter/flutter/pull/75894) Fix FocusManager constructor (a: tests, cla: yes, framework)
[75895](https://github.com/flutter/flutter/pull/75895) Refactor Hero example (cla: yes, framework, waiting for tree to go green)
[75899](https://github.com/flutter/flutter/pull/75899) Adding checkbox demo (cla: yes, f: material design, framework)
[75903](https://github.com/flutter/flutter/pull/75903) deprecated consistency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[75937](https://github.com/flutter/flutter/pull/75937) [flutter_releases] Flutter Framework 1.26.0-17.6.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75943](https://github.com/flutter/flutter/pull/75943) Reject unaccepted pointers in Drag recognizer (cla: yes, framework, waiting for tree to go green)
[75945](https://github.com/flutter/flutter/pull/75945) [web] Treeshake keymaps for web (4% code size reduction in hello world) (a: tests, cla: yes, framework, waiting for tree to go green)
[75949](https://github.com/flutter/flutter/pull/75949) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75950](https://github.com/flutter/flutter/pull/75950) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75952](https://github.com/flutter/flutter/pull/75952) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75967](https://github.com/flutter/flutter/pull/75967) [TextSelectionTheme] improve docs (cla: yes, f: material design, framework, waiting for tree to go green)
[76013](https://github.com/flutter/flutter/pull/76013) Added OutlinedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76021](https://github.com/flutter/flutter/pull/76021) Improve lifecycle docs (cla: yes, framework, waiting for tree to go green)
[76022](https://github.com/flutter/flutter/pull/76022) [flutter_tools] stop using throttled print for service extensions (cla: yes, framework, tool)
[76033](https://github.com/flutter/flutter/pull/76033) Correct the unit of file size from "kb" (maybe "kilo bits") to "KB" (cla: yes, framework, waiting for tree to go green)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[76134](https://github.com/flutter/flutter/pull/76134) Revert "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76146](https://github.com/flutter/flutter/pull/76146) Added clearSnackBars method to ScaffoldMessengerState (cla: yes, f: material design, framework, waiting for tree to go green)
[76157](https://github.com/flutter/flutter/pull/76157) Remove "unnecessary" imports in flutter_test (a: tests, cla: yes, framework, waiting for tree to go green)
[76158](https://github.com/flutter/flutter/pull/76158) Remove "unnecessary" imports in flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[76162](https://github.com/flutter/flutter/pull/76162) Const constructor audit. (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[76167](https://github.com/flutter/flutter/pull/76167) Reland: Removed ButtonBar from AlertDialog #75676 (cla: yes, f: material design, framework)
[76173](https://github.com/flutter/flutter/pull/76173) Scrollbar updates for native Android behavior (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[76174](https://github.com/flutter/flutter/pull/76174) Use a null default skip value in testWidgets so it can inherit the group's skip flag (a: tests, cla: yes, framework, waiting for tree to go green)
[76179](https://github.com/flutter/flutter/pull/76179) Revert "Timer based pointer event resampling" (cla: yes, framework)
[76181](https://github.com/flutter/flutter/pull/76181) Minor ui.TextStyle toString test improvement (cla: yes, framework, waiting for tree to go green)
[76195](https://github.com/flutter/flutter/pull/76195) Reland: Timer based pointer event resampling (cla: yes, framework)
[76221](https://github.com/flutter/flutter/pull/76221) Added ElevatedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76232](https://github.com/flutter/flutter/pull/76232) Revert "Remove some `dynamic's." (cla: yes, framework)
[76238](https://github.com/flutter/flutter/pull/76238) Reland: Removed ButtonBar from AlertDialog #75676 (#76167) (cla: yes, f: material design, framework)
[76239](https://github.com/flutter/flutter/pull/76239) Remove some `dynamic`s (mark II) (cla: yes, framework, waiting for tree to go green)
[76246](https://github.com/flutter/flutter/pull/76246) Removed ButtonBar from the Scaffold and About widgets (cla: yes, f: material design, framework)
[76251](https://github.com/flutter/flutter/pull/76251) Add missing widget of the week video links to API docs (cla: yes, f: material design, framework, waiting for tree to go green)
[76272](https://github.com/flutter/flutter/pull/76272) Add assertion of recordable list (cla: yes, f: material design, framework, waiting for tree to go green)
[76275](https://github.com/flutter/flutter/pull/76275) Remove one TODO (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[76278](https://github.com/flutter/flutter/pull/76278) Remove a14n todos (cla: yes, f: cupertino, framework)
[76312](https://github.com/flutter/flutter/pull/76312) add keyboardDismissBehavior into SingleChildScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)
[76327](https://github.com/flutter/flutter/pull/76327) Keep the selection after 'Copy' pressed on iOS. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[76331](https://github.com/flutter/flutter/pull/76331) Remove deprecated TypeMatcher (cla: yes, framework, severe: API break, team, waiting for tree to go green)
[76339](https://github.com/flutter/flutter/pull/76339) Add fix for BottomNavigationBarItem.title -> label (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[76343](https://github.com/flutter/flutter/pull/76343) Added the ability to bring up the date picker dialogs in calendar or text input only mode. (cla: yes, f: material design, framework)
[76387](https://github.com/flutter/flutter/pull/76387) Refactor tabbar code sample (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[76493](https://github.com/flutter/flutter/pull/76493) Add menuMaxHeight for DropdownButton (cla: yes, f: material design, framework, waiting for tree to go green)
[76532](https://github.com/flutter/flutter/pull/76532) [Fonts] Improve update_icons script (cla: yes, f: material design, framework, team)
[76542](https://github.com/flutter/flutter/pull/76542) Add a EdgeInsetsDirectional.all constructor similar to EdgeInsets.all (cla: yes, framework, waiting for tree to go green)
[76600](https://github.com/flutter/flutter/pull/76600) Dispose image when cache clear (cla: yes, framework, waiting for tree to go green)
[76607](https://github.com/flutter/flutter/pull/76607) [Fonts] Update material icons (cla: yes, f: material design, framework)
[76627](https://github.com/flutter/flutter/pull/76627) Revert "fixes TextInputFormatter gets wrong old value of a selection β¦ (cla: yes, f: cupertino, f: material design, framework)
[76641](https://github.com/flutter/flutter/pull/76641) Hide selection handles from semantics (cla: yes, f: material design, framework)
[76653](https://github.com/flutter/flutter/pull/76653) Reland "fixes TextInputFormatter gets wrong old value of a selection" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[76656](https://github.com/flutter/flutter/pull/76656) [web] Arrow keys change selected item in dropdown (cla: yes, f: focus, f: material design, framework, platform-web, waiting for tree to go green)
[76691](https://github.com/flutter/flutter/pull/76691) [Fonts] Sort material icons (cla: yes, f: material design, framework, team)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[76745](https://github.com/flutter/flutter/pull/76745) Toggleable Refactor (cla: yes, f: material design, framework, waiting for tree to go green)
[76752](https://github.com/flutter/flutter/pull/76752) Clarify what AndroidMotionEvent is for. (cla: yes, framework, waiting for tree to go green)
[76764](https://github.com/flutter/flutter/pull/76764) Fix DropdownButton crash when viewport size is too small for the entirety of the menu's height (cla: yes, f: material design, framework, waiting for tree to go green)
[76810](https://github.com/flutter/flutter/pull/76810) Removed BottomNavigationBar accentColor dependency (cla: yes, f: material design, framework)
[76842](https://github.com/flutter/flutter/pull/76842) Declare DragTarget onMove event as taking a generic parameter (cla: yes, framework, waiting for tree to go green)
[76847](https://github.com/flutter/flutter/pull/76847) Add system channel to access the localization plugin. (cla: yes, framework)
[76877](https://github.com/flutter/flutter/pull/76877) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework)
[76892](https://github.com/flutter/flutter/pull/76892) Reland "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76904](https://github.com/flutter/flutter/pull/76904) Revert "Removed CheckboxListTile accentColor dependency" (cla: yes, f: material design, framework)
[76906](https://github.com/flutter/flutter/pull/76906) Removed RadioListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76908](https://github.com/flutter/flutter/pull/76908) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76909](https://github.com/flutter/flutter/pull/76909) Removed SwitchListTile accentColor dependency (cla: yes, f: material design, framework)
[76963](https://github.com/flutter/flutter/pull/76963) changed 'constrains' to 'constraints' in ChildLayoutHelper.dryLayoutC⦠(cla: yes, framework, waiting for tree to go green)
[76992](https://github.com/flutter/flutter/pull/76992) Sort icon last (cla: yes, f: material design, framework)
[77001](https://github.com/flutter/flutter/pull/77001) Add TextLeadingDistribution to TextStyle (cla: yes, f: material design, framework, waiting for tree to go green)
[77004](https://github.com/flutter/flutter/pull/77004) Removed ListTile accentColor dependency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[77014](https://github.com/flutter/flutter/pull/77014) Expose the diff from ComparisonResult (a: tests, cla: yes, framework, waiting for tree to go green)
[77022](https://github.com/flutter/flutter/pull/77022) SliverAppBar default backwards compatibility fix (cla: yes, f: material design, framework, waiting for tree to go green)
[77024](https://github.com/flutter/flutter/pull/77024) Adds set text semantics action to render editable (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77026](https://github.com/flutter/flutter/pull/77026) Change some dynamics to Object? and document slot better (cla: yes, f: cupertino, framework, waiting for tree to go green)
[77027](https://github.com/flutter/flutter/pull/77027) Enable missing_whitespace_between_adjacent_strings (cla: yes, f: material design, framework, team, tool)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77039](https://github.com/flutter/flutter/pull/77039) RawKeyboardWindows: Filter out IME events (cla: yes, framework, waiting for tree to go green)
[77068](https://github.com/flutter/flutter/pull/77068) Revert "Toggable Refactor" (cla: yes, f: material design, framework)
[77087](https://github.com/flutter/flutter/pull/77087) Enable file_names and package_names lints (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[77090](https://github.com/flutter/flutter/pull/77090) Add instructions to integration_test example README (a: tests, cla: yes, framework, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77172](https://github.com/flutter/flutter/pull/77172) Support block delete with word and line modifiers (a: text input, cla: yes, framework, waiting for tree to go green)
[77186](https://github.com/flutter/flutter/pull/77186) use textdirection for gradient of ShapeDecoration (cla: yes, framework, waiting for tree to go green)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77230](https://github.com/flutter/flutter/pull/77230) Add supported custom font formats in official docs (cla: yes, framework, waiting for tree to go green)
[77263](https://github.com/flutter/flutter/pull/77263) Re-land "Toggable Refactor (#76745)" (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77286](https://github.com/flutter/flutter/pull/77286) Revert "[showModalBottomSheet] fix: showModalBottomSheet does not mov⦠(cla: yes, f: material design, framework, waiting for tree to go green)
[77287](https://github.com/flutter/flutter/pull/77287) Fix semantics node id overflow issue (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77288](https://github.com/flutter/flutter/pull/77288) FocusableActionDetector now exposes descendantsAreFocusable property (cla: yes, framework, waiting for tree to go green)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77295](https://github.com/flutter/flutter/pull/77295) disable semantics test for adding Set Text action in engine (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77386](https://github.com/flutter/flutter/pull/77386) Roll Engine from 299eb3e710c1 to 67abe7f9a9e4 (13 revisions) (a: tests, cla: yes, engine, framework)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77410](https://github.com/flutter/flutter/pull/77410) Fix missing root Scaffold check in ScaffoldMessenger (cla: yes, f: material design, f: routes, framework, severe: crash, waiting for tree to go green)
[77414](https://github.com/flutter/flutter/pull/77414) InteractiveViewer.builder (cla: yes, framework, waiting for tree to go green)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
[77427](https://github.com/flutter/flutter/pull/77427) Declare NavigationRailDestination.label as non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77454](https://github.com/flutter/flutter/pull/77454) Fix a legacy TODO (a: tests, cla: yes, framework, team, waiting for tree to go green)
[77463](https://github.com/flutter/flutter/pull/77463) [docs] added flutter-fix and dart-fix public links (cla: yes, framework, waiting for tree to go green)
[77497](https://github.com/flutter/flutter/pull/77497) Update ClampingScrollSimulation to better match Android (cla: yes, framework, waiting for tree to go green)
[77606](https://github.com/flutter/flutter/pull/77606) [Docs] RouteObserver<PageRoute> cannot subscribe ModalRoute (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77608](https://github.com/flutter/flutter/pull/77608) Provide caret rect to text input plugin (cla: yes, framework, waiting for tree to go green)
[77612](https://github.com/flutter/flutter/pull/77612) Fixed Action code sample in the documentation had a bug issue #77591 (cla: yes, framework, waiting for tree to go green)
[77652](https://github.com/flutter/flutter/pull/77652) Removed MaterialApp accentColor dependency. (cla: yes, f: material design, framework)
[77666](https://github.com/flutter/flutter/pull/77666) DropdownItems with a null value should still display its child (cla: yes, f: material design, framework, waiting for tree to go green)
[77689](https://github.com/flutter/flutter/pull/77689) add final keywork (cla: yes, framework, waiting for tree to go green)
[77719](https://github.com/flutter/flutter/pull/77719) Remove unnecessary question marks (cla: yes, framework, waiting for tree to go green)
[77730](https://github.com/flutter/flutter/pull/77730) Fix gesture recognizer in selectable rich text should be focusable in⦠(cla: yes, framework, waiting for tree to go green)
[77732](https://github.com/flutter/flutter/pull/77732) Removed Stepper accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[77733](https://github.com/flutter/flutter/pull/77733) [Hero] toHero flightShuttleBuilder overrides fromHero flightShuttleBuilder (cla: yes, framework, waiting for tree to go green)
[77739](https://github.com/flutter/flutter/pull/77739) [DatePicker] Don't jump to the current month (cla: yes, f: material design, framework, waiting for tree to go green)
[77744](https://github.com/flutter/flutter/pull/77744) Removed PaginatedDataTable accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77751](https://github.com/flutter/flutter/pull/77751) Refactor: Move mouse cursor classes to "services" package (cla: yes, f: material design, framework, waiting for tree to go green)
[77753](https://github.com/flutter/flutter/pull/77753) Fix UNNECESSARY_TYPE_CHECK_TRUE hints. (cla: yes, framework, waiting for tree to go green)
[77754](https://github.com/flutter/flutter/pull/77754) Add mouseCursor, onEnter, and onExit to TextSpan (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[77769](https://github.com/flutter/flutter/pull/77769) [FloatingActionButtonLocation] Avoid docked FAB to be clipped by the software keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[77789](https://github.com/flutter/flutter/pull/77789) Rename 'moduleName' to 'componentName' (cla: yes, framework, waiting for tree to go green)
[77793](https://github.com/flutter/flutter/pull/77793) [FloatingActionButtonLocation] Add spacing between placement entries in documentation (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77825](https://github.com/flutter/flutter/pull/77825) Make LocalFileComparator.compare easier to override (a: tests, cla: yes, framework, waiting for tree to go green)
[77837](https://github.com/flutter/flutter/pull/77837) non-breaking changes recommended by prefer_mixin lint (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77844](https://github.com/flutter/flutter/pull/77844) Fix some issues flagged by unawaited_futures lint (cla: yes, f: material design, framework, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77859](https://github.com/flutter/flutter/pull/77859) Do not replace text with semantics labels in selectable text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[77863](https://github.com/flutter/flutter/pull/77863) Autocomplete dartpad examples fix (cla: yes, f: material design, framework)
[77864](https://github.com/flutter/flutter/pull/77864) ShaderMask on web for CupertinoContextMenu (cla: yes, f: cupertino, framework)
[77868](https://github.com/flutter/flutter/pull/77868) Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77879](https://github.com/flutter/flutter/pull/77879) [State Restoration] Material Date Picker (a: state restoration, cla: yes, f: date/time picker, f: material design, framework, waiting for tree to go green)
[77881](https://github.com/flutter/flutter/pull/77881) Add minWidth constraint to RawChip when materialTapTargetSize is padded (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[77884](https://github.com/flutter/flutter/pull/77884) Removed RefreshIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77933](https://github.com/flutter/flutter/pull/77933) Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
[77951](https://github.com/flutter/flutter/pull/77951) Update composing rect documentation (cla: yes, framework)
[77976](https://github.com/flutter/flutter/pull/77976) Removed ProgressIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77980](https://github.com/flutter/flutter/pull/77980) Fix sample lint warnings (cla: yes, framework)
[77994](https://github.com/flutter/flutter/pull/77994) ConstraintsTransformBox (cla: yes, framework, waiting for tree to go green)
[77997](https://github.com/flutter/flutter/pull/77997) Removed TabPageSelector accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77999](https://github.com/flutter/flutter/pull/77999) Removed InputDecorator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78004](https://github.com/flutter/flutter/pull/78004) Fix documentation for Scrollbar.radius (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[78018](https://github.com/flutter/flutter/pull/78018) Fixed Buttons with icon RenderFlex overflow (cla: yes, f: material design, framework)
[78051](https://github.com/flutter/flutter/pull/78051) Fix bug in ButtonStyle.lerp(), in _LerpSides (cla: yes, f: material design, framework, waiting for tree to go green)
[78055](https://github.com/flutter/flutter/pull/78055) [integration_test] delay for at least one frame timing. (a: tests, cla: yes, framework, waiting for tree to go green)
[78058](https://github.com/flutter/flutter/pull/78058) Fix CupertinoTextField incorrect background color when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[78081](https://github.com/flutter/flutter/pull/78081) Table widget rendering bug (cla: yes, framework, waiting for tree to go green)
[78140](https://github.com/flutter/flutter/pull/78140) CupertinoTextField to show disabled background color when decoration is null (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78143](https://github.com/flutter/flutter/pull/78143) Update docs to reflect Null Safety (cla: yes, d: api docs, d: examples, documentation, framework)
[78161](https://github.com/flutter/flutter/pull/78161) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[78202](https://github.com/flutter/flutter/pull/78202) Dedup CupertinoAlertDialog and CupertinoActionSheet source code (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78218](https://github.com/flutter/flutter/pull/78218) Make KeySet.hashCode a late final (cla: yes, framework, waiting for tree to go green)
[78263](https://github.com/flutter/flutter/pull/78263) Remove keyLabel and debugName from Logical/PhysicalKeyboardKey (a: tests, cla: yes, framework, team)
[78269](https://github.com/flutter/flutter/pull/78269) Inline some element methods for better stack overflow affinity (cla: yes, framework, waiting for tree to go green)
[78281](https://github.com/flutter/flutter/pull/78281) Added iconColor and textColor properties to ExpansionTile (cla: yes, f: material design, framework)
[78296](https://github.com/flutter/flutter/pull/78296) Removed FloatingActionButton accentColor dependency. (cla: yes, f: material design, framework)
[78302](https://github.com/flutter/flutter/pull/78302) Change the material docs link (cla: yes, f: material design, framework, waiting for tree to go green)
[78311](https://github.com/flutter/flutter/pull/78311) [Fonts] Update material icons (cla: yes, f: material design, framework)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78371](https://github.com/flutter/flutter/pull/78371) Removed accentTextTheme references from Typography API doc (cla: yes, f: material design, framework)
[78375](https://github.com/flutter/flutter/pull/78375) Removed accentColor refs from API docs (cla: yes, f: material design, framework)
[78395](https://github.com/flutter/flutter/pull/78395) fix the position of popup menu when have unsafe area (cla: yes, f: material design, framework, waiting for tree to go green)
[78428](https://github.com/flutter/flutter/pull/78428) Include validation for DatePicker and DateRangePicker inputOnly mode (cla: yes, f: date/time picker, f: material design, framework)
[78449](https://github.com/flutter/flutter/pull/78449) Remove accentColor et al. from tests (cla: yes, f: material design, framework, team)
[78450](https://github.com/flutter/flutter/pull/78450) Add restorationId to Material/CupertinoPage (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78464](https://github.com/flutter/flutter/pull/78464) Fix typos in keyboard code (cla: yes, framework, waiting for tree to go green)
[78478](https://github.com/flutter/flutter/pull/78478) Fix error when choose noon on time picker (cla: yes, f: material design, framework, waiting for tree to go green)
[78484](https://github.com/flutter/flutter/pull/78484) Clean up ignores that are not ignoring anything (a: accessibility, cla: yes, f: cupertino, f: material design, framework)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78493](https://github.com/flutter/flutter/pull/78493) Clean up ignores that are not ignoring anything (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[78497](https://github.com/flutter/flutter/pull/78497) Migrate our custom ignore syntax to flutter_ignore (cla: yes, framework, team, tool, waiting for tree to go green)
[78501](https://github.com/flutter/flutter/pull/78501) Remove whitespace directionality formatter (cla: yes, f: material design, framework, waiting for tree to go green)
[78506](https://github.com/flutter/flutter/pull/78506) [State Restoration] Material DateRangePicker, adds some general state restoration tests (a: state restoration, cla: yes, f: date/time picker, f: material design, framework)
[78523](https://github.com/flutter/flutter/pull/78523) Custom PopupMenuItem padding (cla: yes, f: material design, framework)
[78573](https://github.com/flutter/flutter/pull/78573) Mac word modifier TextEditingActions (cla: yes, framework, waiting for tree to go green)
[78574](https://github.com/flutter/flutter/pull/78574) Removed GridTileBar accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78576](https://github.com/flutter/flutter/pull/78576) Removed DayPicker dependence on accentColor. (cla: yes, f: material design, framework, waiting for tree to go green)
[78581](https://github.com/flutter/flutter/pull/78581) leading distribution docs (cla: yes, framework, waiting for tree to go green)
[78584](https://github.com/flutter/flutter/pull/78584) Revert "Fix a legacy TODO" (a: tests, cla: yes, framework, team)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
[78630](https://github.com/flutter/flutter/pull/78630) Revert "Fix a legacy TODO (#77454)" (#78584) (a: tests, cla: yes, framework, team)
[78633](https://github.com/flutter/flutter/pull/78633) Fixes AlertDialog and SimpleDialog to not merge their content semantics (cla: yes, f: material design, framework, waiting for tree to go green)
[78658](https://github.com/flutter/flutter/pull/78658) Add fix for RectangularSliderTrackShape (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78661](https://github.com/flutter/flutter/pull/78661) Revert "ConstraintsTransformBox" (cla: yes, framework)
[78663](https://github.com/flutter/flutter/pull/78663) Remove "unnecessary" imports in packages/flutter/lib. (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78672](https://github.com/flutter/flutter/pull/78672) Add fixes for [InputDecoration, InputDecorationTheme] hasFloatingPlaceholder -> floatingLabelBehavior (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78673](https://github.com/flutter/flutter/pull/78673) Reland "ConstraintsTransformBox (#77994)" reverted in (#78661) (cla: yes, framework, waiting for tree to go green)
[78707](https://github.com/flutter/flutter/pull/78707) Don't call onChanged callbacks when formatter rejects the change & handle text input formatter exceptions. (cla: yes, framework, waiting for tree to go green)
[78731](https://github.com/flutter/flutter/pull/78731) Add MaterialStateBorderSide.resolveWith (cla: yes, f: material design, framework)
[78738](https://github.com/flutter/flutter/pull/78738) Improve documentation for PointerSignalResolver class (cla: yes, framework)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78771](https://github.com/flutter/flutter/pull/78771) Removed TimePicker dependence on accentTextTheme. (cla: yes, f: material design, framework)
[78808](https://github.com/flutter/flutter/pull/78808) Add dismiss action to modal barrier (cla: yes, framework)
[78815](https://github.com/flutter/flutter/pull/78815) Automatically activate testfield in macOS when receives accessibility⦠(cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78817](https://github.com/flutter/flutter/pull/78817) Slight cleanup in PointerSignalResolver docs (cla: yes, framework)
[78825](https://github.com/flutter/flutter/pull/78825) Revert "Fixed Buttons with icon RenderFlex overflow" (cla: yes, f: material design, framework, waiting for tree to go green)
[78854](https://github.com/flutter/flutter/pull/78854) Check if `MultiChildRenderObjectElement` has an associated RO (cla: yes, framework, waiting for tree to go green)
[78867](https://github.com/flutter/flutter/pull/78867) Revert "InteractiveViewer.builder" (cla: yes, framework)
[78890](https://github.com/flutter/flutter/pull/78890) Resolved contradictory documentation of showGeneralDialog and default value of 'barrierLabel' argument (cla: yes, framework, waiting for tree to go green)
[78897](https://github.com/flutter/flutter/pull/78897) Add dart Fix for TextSelectionThemeData (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78919](https://github.com/flutter/flutter/pull/78919) Fix rendereditable to check the latest text before setting the selection (cla: yes, f: material design, framework, waiting for tree to go green)
[78928](https://github.com/flutter/flutter/pull/78928) change all dynamic slot to Object type (cla: yes, f: cupertino, f: material design, framework)
[78933](https://github.com/flutter/flutter/pull/78933) Fix hit testing in PointerSignalResolver sample (cla: yes, framework)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[78990](https://github.com/flutter/flutter/pull/78990) InteractiveViewer should call onInteractionUpdate even when gesture is disabled (cla: yes, framework, waiting for tree to go green)
[79003](https://github.com/flutter/flutter/pull/79003) [flutter] use null aware operators for function invocations (cla: yes, f: material design, framework, waiting for tree to go green)
[79005](https://github.com/flutter/flutter/pull/79005) Revert "Remove keyLabel and debugName from Logical/PhysicalKeyboardKey" (a: tests, cla: yes, framework, team)
[79009](https://github.com/flutter/flutter/pull/79009) Updated TimePickerThemeData API doc (cla: yes, f: material design, framework, waiting for tree to go green)
[79014](https://github.com/flutter/flutter/pull/79014) Revert "Remove whitespace directionality formatter" (cla: yes, framework)
[79015](https://github.com/flutter/flutter/pull/79015) Reland "Remove whitespace directionality formatter (#78501)" reverted in #79014 (cla: yes, framework, waiting for tree to go green)
[79024](https://github.com/flutter/flutter/pull/79024) Removed the built-in overlay from ReorderableListView. (cla: yes, f: material design, framework, will affect goldens)
[79027](https://github.com/flutter/flutter/pull/79027) [Fonts] Remove update_icons TODO (cla: yes, f: material design, framework, team, waiting for tree to go green)
[79034](https://github.com/flutter/flutter/pull/79034) [flutter_test] make showKeyboard respect finder's skipOffstage value (a: tests, cla: yes, framework, waiting for tree to go green)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79053](https://github.com/flutter/flutter/pull/79053) Revert "Removed accentColor dependency from ExpansionTile" (cla: yes, f: material design, framework, waiting for tree to go green)
[79056](https://github.com/flutter/flutter/pull/79056) Fix web text field shortcuts (cla: yes, framework, waiting for tree to go green)
[79058](https://github.com/flutter/flutter/pull/79058) Revert "[Fonts] Update material icons (#78311)" (cla: yes, f: material design, framework)
[79061](https://github.com/flutter/flutter/pull/79061) Refactor text editing test APIs (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79071](https://github.com/flutter/flutter/pull/79071) Fix missed ignores (cla: yes, framework, tool)
[79085](https://github.com/flutter/flutter/pull/79085) Redo fix for button.icon layout overflow (cla: yes, f: material design, framework)
[79090](https://github.com/flutter/flutter/pull/79090) Add timeline summary entries to capture vsync frame lag (a: tests, cla: yes, framework, waiting for tree to go green)
[79099](https://github.com/flutter/flutter/pull/79099) [versions] roll to latest test (a: tests, cla: yes, framework, team)
[79100](https://github.com/flutter/flutter/pull/79100) Make LogicalKeyboardKey.keyLabel a getter and better (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79160](https://github.com/flutter/flutter/pull/79160) Clarify documentation for DragAnchorStrategy. (cla: yes, framework, team, waiting for tree to go green)
[79193](https://github.com/flutter/flutter/pull/79193) docs: add an example to ReorderableListView.builder (cla: yes, f: material design, framework)
[79217](https://github.com/flutter/flutter/pull/79217) Revert "Make LogicalKeyboardKey.keyLabel a getter and better" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79239](https://github.com/flutter/flutter/pull/79239) Remove references to @required in favor of the `required` keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[79289](https://github.com/flutter/flutter/pull/79289) Drain socket before throwing (a: images, cla: yes, framework, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[79299](https://github.com/flutter/flutter/pull/79299) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79300](https://github.com/flutter/flutter/pull/79300) Revert "Let InkWell/Ink/ancestor support GlobalKey so that splash doe⦠(cla: yes, f: material design, framework)
[79302](https://github.com/flutter/flutter/pull/79302) Reland Make LogicalKeyboardKey.keyLabel a getter and better #79100 (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79308](https://github.com/flutter/flutter/pull/79308) Makes text selection match the native behavior (cla: yes, framework, waiting for tree to go green)
[79310](https://github.com/flutter/flutter/pull/79310) Always write full timeline before summary (a: tests, cla: yes, framework, team)
[79352](https://github.com/flutter/flutter/pull/79352) add missing trailing commas (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[79364](https://github.com/flutter/flutter/pull/79364) [Reland][Fonts] Update material icons (cla: yes, f: material design, framework)
[79382](https://github.com/flutter/flutter/pull/79382) Apply carriedVelocity unless substantially different (cla: yes, framework, waiting for tree to go green)
[79407](https://github.com/flutter/flutter/pull/79407) Rolls isKeyboardKey engine change with fix (a: accessibility, a: tests, cla: yes, engine, framework, waiting for tree to go green)
[79412](https://github.com/flutter/flutter/pull/79412) add a link to the data driven file format docs (cla: yes, framework, waiting for tree to go green)
[79434](https://github.com/flutter/flutter/pull/79434) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79484](https://github.com/flutter/flutter/pull/79484) Properly position the built-in drag handles on horizontal ReorderableListViews. (cla: yes, f: material design, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79489](https://github.com/flutter/flutter/pull/79489) Fix length formatter typo (cla: yes, f: material design, framework, waiting for tree to go green)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79506](https://github.com/flutter/flutter/pull/79506) `enterText` to move the caret to the end (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[79562](https://github.com/flutter/flutter/pull/79562) remove unnecessary trailing commas (cla: yes, f: cupertino, f: material design, framework)
[79590](https://github.com/flutter/flutter/pull/79590) Revert "Don't call onChanged callbacks when formatter rejects the change & handle text input formatter exceptions. (#78707)" (cla: yes, framework, waiting for tree to go green)
[79608](https://github.com/flutter/flutter/pull/79608) Remove "unnecessary" imports in test/widgets (cla: yes, framework, tool, waiting for tree to go green)
[79620](https://github.com/flutter/flutter/pull/79620) update CupertinoPicker.selectionOverlay to nullable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[79642](https://github.com/flutter/flutter/pull/79642) Add back button listener widget (cla: yes, framework, waiting for tree to go green)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79654](https://github.com/flutter/flutter/pull/79654) Revert "`enterText` to move the caret to the end" (a: tests, cla: yes, f: material design, framework)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79668](https://github.com/flutter/flutter/pull/79668) Fix typo: edition -> editing (a: text input, cla: yes, framework)
[79674](https://github.com/flutter/flutter/pull/79674) Revert "Support block delete with word and line modifiers (#77172)" (cla: yes, framework)
[79695](https://github.com/flutter/flutter/pull/79695) Support block delete with word and line modifiers (cla: yes, framework)
[79743](https://github.com/flutter/flutter/pull/79743) Update the `Dismissible` code sample (cla: yes, d: examples, framework, waiting for tree to go green)
[79771](https://github.com/flutter/flutter/pull/79771) Fix typo in scroll_activity.dart (cla: yes, framework, waiting for tree to go green)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
[79828](https://github.com/flutter/flutter/pull/79828) Revert "Fix error when choose noon on time picker (#78478)" (cla: yes, f: material design, framework)
[79829](https://github.com/flutter/flutter/pull/79829) Redo Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
[79842](https://github.com/flutter/flutter/pull/79842) fix cupertino refresh control style (cla: yes, f: cupertino, framework, waiting for tree to go green)
[79877](https://github.com/flutter/flutter/pull/79877) Fix RenderEditable register the raw keyboard listener twice (cla: yes, framework)
[79919](https://github.com/flutter/flutter/pull/79919) update BorderTween nullable (cla: yes, framework)
[79959](https://github.com/flutter/flutter/pull/79959) Unblock roll by reverting #79061 (a: tests, cla: yes, framework, team)
[79968](https://github.com/flutter/flutter/pull/79968) Revert "Support block delete with word and line modifiers" (cla: yes, framework)
[79973](https://github.com/flutter/flutter/pull/79973) Support block delete with word and line modifiers (cla: yes, framework)
### team - 360 pull request(s)
[70141](https://github.com/flutter/flutter/pull/70141) Run cirrus linux-docs only on presubmit. (cla: yes, team)
[70673](https://github.com/flutter/flutter/pull/70673) Point to a new artifacts location. (cla: yes, f: material design, team, tool)
[72828](https://github.com/flutter/flutter/pull/72828) Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[73828](https://github.com/flutter/flutter/pull/73828) Exclude arm64 from valid iOS simulators (cla: yes, team, tool, waiting for tree to go green)
[73981](https://github.com/flutter/flutter/pull/73981) Format try/prod_builders.json (cla: yes, team, waiting for tree to go green)
[74378](https://github.com/flutter/flutter/pull/74378) Dump logs on failing devicelab test to recipe artifact location (cla: yes, team, team: flakes)
[74382](https://github.com/flutter/flutter/pull/74382) Remove unnecessary imports in dev/benchmarks (cla: yes, team, waiting for tree to go green)
[74533](https://github.com/flutter/flutter/pull/74533) Only write the pid-file while listening to SIGUSR signals. (cla: yes, team, tool, waiting for tree to go green)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[74755](https://github.com/flutter/flutter/pull/74755) no more mockito for fuchsia remote debug protocol (cla: yes, team, tool, waiting for tree to go green)
[74762](https://github.com/flutter/flutter/pull/74762) Null safe migration for fuchsia remote debug protocol (cla: yes, team, tool)
[74763](https://github.com/flutter/flutter/pull/74763) Remove package image dependency (cla: yes, team, tool, waiting for tree to go green)
[74770](https://github.com/flutter/flutter/pull/74770) drop mockito for integration_test (cla: yes, team, waiting for tree to go green)
[74777](https://github.com/flutter/flutter/pull/74777) Replace MockXcode with Xcode.test in unit tests (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[74778](https://github.com/flutter/flutter/pull/74778) Rename setUpMockXcodeBuildHandler -> setUpFakeXcodeBuildHandler in tests (cla: yes, team, tool, waiting for tree to go green)
[74780](https://github.com/flutter/flutter/pull/74780) Remove MockProcessManager from channel_test and other tests (cla: yes, team, tool)
[74781](https://github.com/flutter/flutter/pull/74781) roll packages (cla: yes, team)
[74782](https://github.com/flutter/flutter/pull/74782) Drop mockito for flutter_goldens (cla: yes, team)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74820](https://github.com/flutter/flutter/pull/74820) Remove "unnecessary" imports in examples (cla: yes, d: examples, team, waiting for tree to go green)
[74832](https://github.com/flutter/flutter/pull/74832) [flutter_tools] opt all flutter tool libraries and tests out of null safety. (cla: yes, team, tool)
[74838](https://github.com/flutter/flutter/pull/74838) Swap MockStdio to FakeStdio in tests (cla: yes, team, tool)
[74847](https://github.com/flutter/flutter/pull/74847) Swap mockito import for test/fake (cla: yes, team, tool)
[74848](https://github.com/flutter/flutter/pull/74848) Run tests in sound null safety mode for fuchsia_remote_debug_protocol (cla: yes, team, waiting for tree to go green)
[74853](https://github.com/flutter/flutter/pull/74853) Migrate flutter_goldens to NNBD (a: null-safety, cla: yes, framework, team, waiting for tree to go green)
[74856](https://github.com/flutter/flutter/pull/74856) driver nnbd (a: tests, cla: yes, framework, team)
[74857](https://github.com/flutter/flutter/pull/74857) Migrate remaining examples to null-safety (cla: yes, d: examples, team, waiting for tree to go green)
[74861](https://github.com/flutter/flutter/pull/74861) Migrate some dev/ things to null-safety (cla: yes, team, waiting for tree to go green)
[74862](https://github.com/flutter/flutter/pull/74862) Migrate automated_tests to null-safety (cla: yes, team, waiting for tree to go green)
[74865](https://github.com/flutter/flutter/pull/74865) Add canRun override to FakeProcessManager (cla: yes, team, tool)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74869](https://github.com/flutter/flutter/pull/74869) Revert "Remove package image dependency" (cla: yes, team, tool)
[74874](https://github.com/flutter/flutter/pull/74874) Update packages (cla: yes, team, tool, waiting for tree to go green)
[74885](https://github.com/flutter/flutter/pull/74885) Unpin mysteriously pinned packages (cla: yes, team, tool, waiting for tree to go green)
[74922](https://github.com/flutter/flutter/pull/74922) NNBD integration_test (cla: yes, team, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[74943](https://github.com/flutter/flutter/pull/74943) vm_service 6.0.1-nullsafety.1, dwds 8.0.2 (cla: yes, team, tool, waiting for tree to go green)
[74946](https://github.com/flutter/flutter/pull/74946) Replace MockUsage with TestUsage (cla: yes, team, tool, waiting for tree to go green)
[74956](https://github.com/flutter/flutter/pull/74956) Replace MockProcessManager with FakeProcessManager in cocoapods_test (cla: yes, team, tool)
[75022](https://github.com/flutter/flutter/pull/75022) Migrate driver tests in example/ to NNBD (cla: yes, d: examples, team, waiting for tree to go green)
[75023](https://github.com/flutter/flutter/pull/75023) Migrate some benchmarks to NNBD (cla: yes, team, waiting for tree to go green)
[75026](https://github.com/flutter/flutter/pull/75026) Bump flutter_gallery_assets (cla: yes, team, tool, waiting for tree to go green)
[75029](https://github.com/flutter/flutter/pull/75029) Migrate off e2e (cla: yes, team, tool, waiting for tree to go green)
[75030](https://github.com/flutter/flutter/pull/75030) Revert "NNBD integration_test" (a: tests, cla: yes, framework, team)
[75033](https://github.com/flutter/flutter/pull/75033) Split tools_tests subshards into separate shards to support sub-sub-sharding (cla: yes, team, waiting for tree to go green)
[75037](https://github.com/flutter/flutter/pull/75037) [web] benchmark and optimize defaultTargetPlatform (cla: yes, framework, team)
[75039](https://github.com/flutter/flutter/pull/75039) add a benchmark test for stack size (cla: yes, team, waiting for tree to go green)
[75044](https://github.com/flutter/flutter/pull/75044) Replace MockConfig with TestConfig (cla: yes, team, tool, waiting for tree to go green)
[75053](https://github.com/flutter/flutter/pull/75053) Revert "Migrate some benchmarks to NNBD" (cla: yes, team)
[75074](https://github.com/flutter/flutter/pull/75074) Reland integration_test NNBD (a: tests, cla: yes, framework, team)
[75096](https://github.com/flutter/flutter/pull/75096) Grammatical mistake on pull request template (cla: yes, team)
[75161](https://github.com/flutter/flutter/pull/75161) Revert "Migrate driver tests in example/ to NNBD" (cla: yes, d: examples, team)
[75163](https://github.com/flutter/flutter/pull/75163) Avoid iOS local networking dialog in integration tests (cla: yes, platform-ios, team, waiting for tree to go green)
[75170](https://github.com/flutter/flutter/pull/75170) Replace context FakeUsage with TestUsage (cla: yes, team, tool)
[75171](https://github.com/flutter/flutter/pull/75171) Adopt tool_test shard builders (cla: yes, team, waiting for tree to go green)
[75179](https://github.com/flutter/flutter/pull/75179) Adopt subshard naming convention in build_tests (cla: yes, team, team: infra, waiting for tree to go green)
[75185](https://github.com/flutter/flutter/pull/75185) Remove dead tool_coverage code (cla: yes, team)
[75189](https://github.com/flutter/flutter/pull/75189) Remove hard-coded subshard numbers from the test runner (cla: yes, team, waiting for tree to go green)
[75193](https://github.com/flutter/flutter/pull/75193) Update to latest templates (cla: yes, team, waiting for tree to go green)
[75264](https://github.com/flutter/flutter/pull/75264) Re-land "Migrate driver tests in example/ to NNBD (#75022)" (cla: yes, d: examples, team, waiting for tree to go green)
[75265](https://github.com/flutter/flutter/pull/75265) Re-land "Migrate some benchmarks to NNBD (75023)" (cla: yes, team, waiting for tree to go green)
[75273](https://github.com/flutter/flutter/pull/75273) Mark tool_integration_tests not flaky (cla: yes, team, waiting for tree to go green)
[75275](https://github.com/flutter/flutter/pull/75275) Run flutter_driver, integration_test, flutter_localizations, and fuchsia_remote_debug_protocol in framework_tests presubmit (cla: yes, team, waiting for tree to go green)
[75276](https://github.com/flutter/flutter/pull/75276) Replace MockPlistParser with FakePlistParser (cla: yes, team, tool)
[75287](https://github.com/flutter/flutter/pull/75287) Add fix for maxEnforced -> maxEnforcement (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75331](https://github.com/flutter/flutter/pull/75331) Revert "Re-land "Migrate some benchmarks to NNBD (75023)" " (cla: yes, team)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75350](https://github.com/flutter/flutter/pull/75350) [flutter_tools] move process manager into tool (cla: yes, team, tool)
[75370](https://github.com/flutter/flutter/pull/75370) roll packages (cla: yes, cp: 1.26, cp: 1.26 completed, team, waiting for tree to go green)
[75374](https://github.com/flutter/flutter/pull/75374) Added memory benchmark for flutter engine groups. (cla: yes, team, waiting for tree to go green)
[75383](https://github.com/flutter/flutter/pull/75383) Revert "add a benchmark test for stack size" (cla: yes, team)
[75389](https://github.com/flutter/flutter/pull/75389) Update prepare_package to upload artifacts to old and new buckets. (cla: yes, team)
[75431](https://github.com/flutter/flutter/pull/75431) Reland "Migrate some benchmarks to NNBD (#75023)" (cla: yes, team, waiting for tree to go green)
[75434](https://github.com/flutter/flutter/pull/75434) Reland "add a benchmark test for stack size (#75039)" (cla: yes, team)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75515](https://github.com/flutter/flutter/pull/75515) Manually close the tree for issue/75514 (cla: yes, team)
[75530](https://github.com/flutter/flutter/pull/75530) Add flutter update packages to some tests. (cla: yes, team)
[75533](https://github.com/flutter/flutter/pull/75533) add prod builder for android stack size test (cla: yes, team)
[75535](https://github.com/flutter/flutter/pull/75535) [web] new service worker loading mechanism (cla: yes, team, tool)
[75542](https://github.com/flutter/flutter/pull/75542) Refresh Flutter infra README (cla: yes, team, waiting for tree to go green)
[75543](https://github.com/flutter/flutter/pull/75543) Move FakeBotDetector to fakes (cla: yes, team, tool, waiting for tree to go green)
[75544](https://github.com/flutter/flutter/pull/75544) MockProcessManager -> FakeProcessManager (cla: yes, team, tool)
[75545](https://github.com/flutter/flutter/pull/75545) Add exception to FakeCommand (cla: yes, team, tool, waiting for tree to go green)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75639](https://github.com/flutter/flutter/pull/75639) Revert "[flutter_tools] move process manager into tool" (cla: yes, team, tool)
[75649](https://github.com/flutter/flutter/pull/75649) Fix for VelocityTracker deprecation (cla: yes, framework, team, waiting for tree to go green)
[75660](https://github.com/flutter/flutter/pull/75660) fuchsia_remote_debug_protocol: never published (cla: yes, team, waiting for tree to go green)
[75665](https://github.com/flutter/flutter/pull/75665) ios_platform_view tests pass when device rotated (cla: yes, team, waiting for tree to go green)
[75672](https://github.com/flutter/flutter/pull/75672) Gallery transition tests pass when device rotated (cla: yes, team, waiting for tree to go green)
[75682](https://github.com/flutter/flutter/pull/75682) Revert "Manually close the tree for issue/75514" (cla: yes, team)
[75733](https://github.com/flutter/flutter/pull/75733) [flutter_releases] Roll pub for flutter-1.26-candidate.17 (cla: yes, team, tool)
[75736](https://github.com/flutter/flutter/pull/75736) Compress module_test_ios xcresult (cla: yes, team, team: infra)
[75743](https://github.com/flutter/flutter/pull/75743) added missing gradle files to the test harness for multiple_flutters (cla: yes, team, waiting for tree to go green)
[75757](https://github.com/flutter/flutter/pull/75757) Remove dead mock classes (cla: yes, team, tool, waiting for tree to go green)
[75759](https://github.com/flutter/flutter/pull/75759) MockPub -> FakePub (cla: yes, team, tool, waiting for tree to go green)
[75772](https://github.com/flutter/flutter/pull/75772) Update Flutter SDK constraint in integration test to match templates (cla: yes, team)
[75773](https://github.com/flutter/flutter/pull/75773) Update Flutter SDK constraint in plugin test to match template (cla: yes, team)
[75793](https://github.com/flutter/flutter/pull/75793) FlutterEngineGroup memory test: added precache before executing gradle. (cla: yes, team, waiting for tree to go green)
[75797](https://github.com/flutter/flutter/pull/75797) [flutter_releases] Update additional pub packages to stable for 1.26.0-17.4.pre (cla: yes, team, tool)
[75798](https://github.com/flutter/flutter/pull/75798) Add mac/android smoke catalina test to dashboard (cla: yes, team, waiting for tree to go green)
[75813](https://github.com/flutter/flutter/pull/75813) Audit and update deprecation warnings (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75814](https://github.com/flutter/flutter/pull/75814) change stack size test to test arm device (cla: yes, team, waiting for tree to go green)
[75866](https://github.com/flutter/flutter/pull/75866) added flutter_engine_group_performance to the prod_builders (cla: yes, team, waiting for tree to go green)
[75888](https://github.com/flutter/flutter/pull/75888) All arguments must be documented. (cla: yes, team, tool, waiting for tree to go green)
[75892](https://github.com/flutter/flutter/pull/75892) Mark flutter_engine_group_performance not flaky (cla: yes, team)
[75903](https://github.com/flutter/flutter/pull/75903) deprecated consistency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[75920](https://github.com/flutter/flutter/pull/75920) Mark mac_android_smoke_catalina_start_up test as unflaky (cla: yes, team, waiting for tree to go green)
[75933](https://github.com/flutter/flutter/pull/75933) Fix dart_docs. (cla: yes, team)
[76028](https://github.com/flutter/flutter/pull/76028) Fix problem causing tasks to timeout. (cla: yes, team)
[76143](https://github.com/flutter/flutter/pull/76143) Update all packages (cla: yes, team, tool)
[76153](https://github.com/flutter/flutter/pull/76153) Do not fail if 9xth_percentile_memory_usage is not recorded (cla: yes, team, team: flakes, waiting for tree to go green)
[76162](https://github.com/flutter/flutter/pull/76162) Const constructor audit. (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[76200](https://github.com/flutter/flutter/pull/76200) [flutter_tools] Support Integration Tests (cla: yes, team, tool, waiting for tree to go green)
[76223](https://github.com/flutter/flutter/pull/76223) Output unexpected Podfile.lock contents on test failure (cla: yes, team, waiting for tree to go green)
[76241](https://github.com/flutter/flutter/pull/76241) [fuchsia] - migrate device discovery workflows to use ffx (cla: yes, team, tool, waiting for tree to go green)
[76254](https://github.com/flutter/flutter/pull/76254) update all packages (cla: yes, team, waiting for tree to go green)
[76260](https://github.com/flutter/flutter/pull/76260) Remove mocks from visual_studio_test (cla: yes, team, tool)
[76264](https://github.com/flutter/flutter/pull/76264) MockProcessManager -> FakeProcessManager in os_test (cla: yes, team, tool, waiting for tree to go green)
[76266](https://github.com/flutter/flutter/pull/76266) Swap Mocks to Fakes in build_fuchsia_test (cla: yes, team, tool, waiting for tree to go green)
[76274](https://github.com/flutter/flutter/pull/76274) Swap Mocks to Fakes in config_test and other tests (cla: yes, team, tool, waiting for tree to go green)
[76275](https://github.com/flutter/flutter/pull/76275) Remove one TODO (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[76276](https://github.com/flutter/flutter/pull/76276) Adopt FakeProcess, remove MockProcess (cla: yes, team, tool, waiting for tree to go green)
[76279](https://github.com/flutter/flutter/pull/76279) Adopt FileExceptionHandler in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76280](https://github.com/flutter/flutter/pull/76280) Delete MockResidentCompiler (cla: yes, team, tool, waiting for tree to go green)
[76282](https://github.com/flutter/flutter/pull/76282) Adopt TestUsage in flutter_command_test (cla: yes, team, tool)
[76331](https://github.com/flutter/flutter/pull/76331) Remove deprecated TypeMatcher (cla: yes, framework, severe: API break, team, waiting for tree to go green)
[76339](https://github.com/flutter/flutter/pull/76339) Add fix for BottomNavigationBarItem.title -> label (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[76341](https://github.com/flutter/flutter/pull/76341) Upload logs before failing module_test_ios (cla: yes, team)
[76354](https://github.com/flutter/flutter/pull/76354) Adopt Artifacts.test(localEngine:) in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76355](https://github.com/flutter/flutter/pull/76355) Remove mockito from windows_device_test (cla: yes, team, tool, waiting for tree to go green)
[76358](https://github.com/flutter/flutter/pull/76358) Add mac_ios luci tests. (cla: yes, team)
[76392](https://github.com/flutter/flutter/pull/76392) [Fonts] Make it possible to run update_icons in google3 (cla: yes, team)
[76394](https://github.com/flutter/flutter/pull/76394) Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)" (cla: yes, engine, team)
[76403](https://github.com/flutter/flutter/pull/76403) Revert "Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)"" (cla: yes, engine, team)
[76409](https://github.com/flutter/flutter/pull/76409) Roll Gallery (required by the latest engine update and Dart SDK) (cla: yes, team)
[76415](https://github.com/flutter/flutter/pull/76415) [devicelab] Separate build and test from Flutter gallery tests (a: accessibility, cla: yes, team, waiting for tree to go green)
[76420](https://github.com/flutter/flutter/pull/76420) Update all packages and upgrade to path_provider 2.0.0-nullsafety (cla: yes, team, tool)
[76425](https://github.com/flutter/flutter/pull/76425) Remove unused flutter_driver_screenshot integration test (cla: yes, team, waiting for tree to go green)
[76426](https://github.com/flutter/flutter/pull/76426) Remove unused ios_add2app integration test (cla: yes, team)
[76429](https://github.com/flutter/flutter/pull/76429) Remove unused android_splash_screens integration test (cla: yes, team, waiting for tree to go green)
[76430](https://github.com/flutter/flutter/pull/76430) Remove unused image_loading integration test (cla: yes, team)
[76433](https://github.com/flutter/flutter/pull/76433) Turn on desktop and web integration tests for beta and stable (a: desktop, cla: yes, team, waiting for tree to go green)
[76511](https://github.com/flutter/flutter/pull/76511) Upgrade packages to pick up vm_snapshot_analysis fixes (cla: yes, team)
[76532](https://github.com/flutter/flutter/pull/76532) [Fonts] Improve update_icons script (cla: yes, f: material design, framework, team)
[76552](https://github.com/flutter/flutter/pull/76552) Mark linux_android_stack_size_test not flaky (cla: yes, team, waiting for tree to go green)
[76554](https://github.com/flutter/flutter/pull/76554) Build more integration tests during pre-submit (cla: yes, d: examples, team)
[76572](https://github.com/flutter/flutter/pull/76572) Revert "Remove unused flutter_driver_screenshot integration test" (cla: yes, team)
[76575](https://github.com/flutter/flutter/pull/76575) Remove unused flutter_driver_screenshot integration test (cla: yes, team, waiting for tree to go green)
[76576](https://github.com/flutter/flutter/pull/76576) Remove mac/ios agents and remove flaky flag from mac/ios on LUCI. (cla: yes, team)
[76633](https://github.com/flutter/flutter/pull/76633) Check for a closed output stream in the devicelab ADB log reader (cla: yes, team, waiting for tree to go green)
[76642](https://github.com/flutter/flutter/pull/76642) [devicelab] Add expectation test for upload metrics (cla: yes, team, waiting for tree to go green)
[76645](https://github.com/flutter/flutter/pull/76645) Enable dart_plugin_registry_test (cla: yes, team, waiting for tree to go green)
[76658](https://github.com/flutter/flutter/pull/76658) Add gallery integration iOS UI integration test (cla: yes, team, waiting for tree to go green)
[76673](https://github.com/flutter/flutter/pull/76673) Update all packages (cla: yes, team, waiting for tree to go green)
[76691](https://github.com/flutter/flutter/pull/76691) [Fonts] Sort material icons (cla: yes, f: material design, framework, team)
[76731](https://github.com/flutter/flutter/pull/76731) Fix codesign test: ios-deploy does not need entitlements (cla: yes, team, waiting for tree to go green)
[76732](https://github.com/flutter/flutter/pull/76732) Move a second batch of mac/ios tests to prod. (cla: yes, team)
[76800](https://github.com/flutter/flutter/pull/76800) Remove failing 32-bit iOS benchmarks (cla: yes, team, waiting for tree to go green)
[76803](https://github.com/flutter/flutter/pull/76803) Mark smoke_catalina_hot_mode_dev_cycle_ios__benchmark flaky (cla: yes, team)
[76820](https://github.com/flutter/flutter/pull/76820) Update dartdoc to 0.40.0. (cla: yes, team, waiting for tree to go green)
[76829](https://github.com/flutter/flutter/pull/76829) Remove dead ensureDirectoryExists (cla: yes, team, tool, waiting for tree to go green)
[76831](https://github.com/flutter/flutter/pull/76831) [customer_testing] Refactor runner to be testable (cla: yes, team, waiting for tree to go green)
[76838](https://github.com/flutter/flutter/pull/76838) Remove dart_plugin_registry_test timeouts (cla: yes, team, team: flakes, waiting for tree to go green)
[76898](https://github.com/flutter/flutter/pull/76898) Fix prepare package (cla: yes, team)
[76960](https://github.com/flutter/flutter/pull/76960) Move flaky flag from the remainin mac/ios tests. (cla: yes, team)
[77004](https://github.com/flutter/flutter/pull/77004) Removed ListTile accentColor dependency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[77010](https://github.com/flutter/flutter/pull/77010) Remove flaky flag from ios32 builders. (cla: yes, team)
[77027](https://github.com/flutter/flutter/pull/77027) Enable missing_whitespace_between_adjacent_strings (cla: yes, f: material design, framework, team, tool)
[77028](https://github.com/flutter/flutter/pull/77028) Turn on iOS podspec linting in test (a: tests, cla: yes, t: xcode, team)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77086](https://github.com/flutter/flutter/pull/77086) Revert "[devicelab] Separate build and test from Flutter gallery tests" (a: accessibility, cla: yes, team)
[77087](https://github.com/flutter/flutter/pull/77087) Enable file_names and package_names lints (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[77093](https://github.com/flutter/flutter/pull/77093) Apply changes caused by https://github.com/flutter/flutter/pull/76662 (cla: yes, d: examples, team, waiting for tree to go green)
[77095](https://github.com/flutter/flutter/pull/77095) Enable null_closures (cla: yes, team, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77105](https://github.com/flutter/flutter/pull/77105) Enable prefer_null_aware_operators lint (cla: yes, team, waiting for tree to go green)
[77106](https://github.com/flutter/flutter/pull/77106) enable provide_deprecation_message (cla: yes, team, waiting for tree to go green)
[77110](https://github.com/flutter/flutter/pull/77110) [devicelab] Create test command to pass task args (cla: yes, team, waiting for tree to go green)
[77113](https://github.com/flutter/flutter/pull/77113) Enable deprecation consistency (cla: yes, team, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77153](https://github.com/flutter/flutter/pull/77153) Update all versions! (cla: yes, team)
[77154](https://github.com/flutter/flutter/pull/77154) enable build test, roll engine (cla: yes, engine, team, tool)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77184](https://github.com/flutter/flutter/pull/77184) Store symlinks in package archive (cla: yes, team, waiting for tree to go green)
[77192](https://github.com/flutter/flutter/pull/77192) Increase dart migrate integration test timeout (cla: yes, team, team: flakes, tool, waiting for tree to go green)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77228](https://github.com/flutter/flutter/pull/77228) Add Windows desktop files for manual tests (a: desktop, cla: yes, platform-windows, team)
[77263](https://github.com/flutter/flutter/pull/77263) Re-land "Toggable Refactor (#76745)" (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77307](https://github.com/flutter/flutter/pull/77307) [devicelab] Create BuildTestTask (cla: yes, team, waiting for tree to go green)
[77327](https://github.com/flutter/flutter/pull/77327) Fix typo (cla: yes, d: examples, team)
[77329](https://github.com/flutter/flutter/pull/77329) Bitcode strip Flutter.framework in assemble build target (cla: yes, platform-ios, team, tool)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77400](https://github.com/flutter/flutter/pull/77400) [flutter_tools] migrate to null safe mustache (cla: yes, team, waiting for tree to go green)
[77405](https://github.com/flutter/flutter/pull/77405) Fix typo in Windows template (cla: yes, team, tool, waiting for tree to go green)
[77420](https://github.com/flutter/flutter/pull/77420) Add debug_second_compile_millis benchmark metric (cla: yes, platform-android, platform-ios, team, team: benchmark, waiting for tree to go green)
[77428](https://github.com/flutter/flutter/pull/77428) Add iOS archive codesign test (cla: yes, platform-ios, team, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77454](https://github.com/flutter/flutter/pull/77454) Fix a legacy TODO (a: tests, cla: yes, framework, team, waiting for tree to go green)
[77637](https://github.com/flutter/flutter/pull/77637) Increase activated devtools version to 2.0 (cla: yes, team)
[77648](https://github.com/flutter/flutter/pull/77648) Fix package declarations for add-to-app integration tests (cla: yes, team, waiting for tree to go green)
[77651](https://github.com/flutter/flutter/pull/77651) [fuchsia] remove no devices found from ffx parsing (cla: yes, team, tool, waiting for tree to go green)
[77653](https://github.com/flutter/flutter/pull/77653) [Analyze] Make deprecation note analyzer clearer on quote misuse (cla: yes, team)
[77657](https://github.com/flutter/flutter/pull/77657) Explain why devtools in pinned (cla: yes, team, waiting for tree to go green)
[77749](https://github.com/flutter/flutter/pull/77749) Remove mockito deps from dev (cla: yes, team, tool, waiting for tree to go green)
[77754](https://github.com/flutter/flutter/pull/77754) Add mouseCursor, onEnter, and onExit to TextSpan (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77837](https://github.com/flutter/flutter/pull/77837) non-breaking changes recommended by prefer_mixin lint (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77942](https://github.com/flutter/flutter/pull/77942) Refactor: use one subprojects property (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)
[77945](https://github.com/flutter/flutter/pull/77945) Update mockito dep and remove usage in manual tests and localizations (cla: yes, team, tool, waiting for tree to go green)
[77956](https://github.com/flutter/flutter/pull/77956) [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[77962](https://github.com/flutter/flutter/pull/77962) Remove MockFlutterVersions (cla: yes, team, tool, waiting for tree to go green)
[77968](https://github.com/flutter/flutter/pull/77968) Remove mocks from web devices test (cla: yes, team, tool, waiting for tree to go green)
[77982](https://github.com/flutter/flutter/pull/77982) Use flutter-cirrus gke cluster for framework tasks. (cla: yes, team, waiting for tree to go green)
[77983](https://github.com/flutter/flutter/pull/77983) Remove MockBuildSystem from generate_synthetic_packages_test (cla: yes, team, tool, waiting for tree to go green)
[77985](https://github.com/flutter/flutter/pull/77985) MockProcessUtils->FakeProcessManager in version_test (cla: yes, team, tool, waiting for tree to go green)
[77986](https://github.com/flutter/flutter/pull/77986) Remove mocks from build_windows_test (cla: yes, team, tool, waiting for tree to go green)
[77988](https://github.com/flutter/flutter/pull/77988) MockOperatingSystemUtils -> FakeOperatingSystemUtils (cla: yes, team, tool, waiting for tree to go green)
[77991](https://github.com/flutter/flutter/pull/77991) Remove mock from cocoapods_validator_test (cla: yes, team, tool)
[78078](https://github.com/flutter/flutter/pull/78078) Enable subshard builders for pre-submit (cla: yes, team, waiting for tree to go green)
[78089](https://github.com/flutter/flutter/pull/78089) Remove MockFlutterVersion from mocks (cla: yes, team, tool)
[78092](https://github.com/flutter/flutter/pull/78092) Remove mocks from compile_expression_test (cla: yes, team, tool)
[78161](https://github.com/flutter/flutter/pull/78161) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[78263](https://github.com/flutter/flutter/pull/78263) Remove keyLabel and debugName from Logical/PhysicalKeyboardKey (a: tests, cla: yes, framework, team)
[78276](https://github.com/flutter/flutter/pull/78276) Remove MockStdIn and MockStream (cla: yes, team, tool, waiting for tree to go green)
[78279](https://github.com/flutter/flutter/pull/78279) Remove mocks from cocoapods_test (cla: yes, team, tool, waiting for tree to go green)
[78317](https://github.com/flutter/flutter/pull/78317) [Fonts] Fix update_icons double newline bug (cla: yes, team, waiting for tree to go green)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78355](https://github.com/flutter/flutter/pull/78355) Revert "[devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
[78361](https://github.com/flutter/flutter/pull/78361) Reland [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[78378](https://github.com/flutter/flutter/pull/78378) Removed accentColor and accentTextTheme dependencies from flutter_gallery (cla: yes, f: material design, team, waiting for tree to go green)
[78381](https://github.com/flutter/flutter/pull/78381) Add test for dart compilation error build output (cla: yes, team, tool, waiting for tree to go green)
[78415](https://github.com/flutter/flutter/pull/78415) Revert "Add libblkid / liblzma / libgcrypt as an explicit dependancy on Linux" (cla: yes, team, tool)
[78430](https://github.com/flutter/flutter/pull/78430) Add Linux shard builders to Flutter build dashboard (cla: yes, team, waiting for tree to go green)
[78449](https://github.com/flutter/flutter/pull/78449) Remove accentColor et al. from tests (cla: yes, f: material design, framework, team)
[78459](https://github.com/flutter/flutter/pull/78459) add mac/windows shard builders as flaky (cla: yes, team)
[78483](https://github.com/flutter/flutter/pull/78483) Remove flaky flag for Linux shard builders (cla: yes, team, waiting for tree to go green)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78490](https://github.com/flutter/flutter/pull/78490) Clean-up ignores that are not ignoring anything (dev/ edition) (cla: yes, team, waiting for tree to go green)
[78496](https://github.com/flutter/flutter/pull/78496) Parse engine src path from an absolute --local-engine (cla: yes, team, tool)
[78497](https://github.com/flutter/flutter/pull/78497) Migrate our custom ignore syntax to flutter_ignore (cla: yes, framework, team, tool, waiting for tree to go green)
[78505](https://github.com/flutter/flutter/pull/78505) Remove flaky flag for Mac and Windows shard builders (cla: yes, team)
[78508](https://github.com/flutter/flutter/pull/78508) Move web tool test per-test timeout to shard (cla: yes, team, tool)
[78557](https://github.com/flutter/flutter/pull/78557) Update all versions and remove vm_service_client dependency (cla: yes, team, tool)
[78559](https://github.com/flutter/flutter/pull/78559) [devicelab] remove vm_service_client from devicelab (cla: yes, team)
[78568](https://github.com/flutter/flutter/pull/78568) Manually close the tree for https://github.com/flutter/flutter/issues/78567 (cla: yes, team)
[78584](https://github.com/flutter/flutter/pull/78584) Revert "Fix a legacy TODO" (a: tests, cla: yes, framework, team)
[78592](https://github.com/flutter/flutter/pull/78592) Skip linking against Flutter for CocoaPods transitive dependencies (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[78623](https://github.com/flutter/flutter/pull/78623) Reverts "Implement dartPluginClass support for plugins #74469" (cla: yes, d: examples, team, tool)
[78630](https://github.com/flutter/flutter/pull/78630) Revert "Fix a legacy TODO (#77454)" (#78584) (a: tests, cla: yes, framework, team)
[78636](https://github.com/flutter/flutter/pull/78636) Standardize tool test subshard selection (cla: yes, team, waiting for tree to go green)
[78647](https://github.com/flutter/flutter/pull/78647) Revert "Manually close the tree for https://github.com/flutter/flutter/issues/78567" (cla: yes, team)
[78654](https://github.com/flutter/flutter/pull/78654) roll more versions (cla: yes, team, waiting for tree to go green)
[78658](https://github.com/flutter/flutter/pull/78658) Add fix for RectangularSliderTrackShape (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78669](https://github.com/flutter/flutter/pull/78669) Remove ignores that are not ignoring anything (cla: yes, team, tool, waiting for tree to go green)
[78672](https://github.com/flutter/flutter/pull/78672) Add fixes for [InputDecoration, InputDecorationTheme] hasFloatingPlaceholder -> floatingLabelBehavior (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78678](https://github.com/flutter/flutter/pull/78678) Update cluster. (cla: yes, team, team: infra)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78764](https://github.com/flutter/flutter/pull/78764) remove codesign.dart (cla: yes, team)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
[78822](https://github.com/flutter/flutter/pull/78822) Take screenshot when drive fails (a: accessibility, cla: yes, team, team: flakes, tool)
[78836](https://github.com/flutter/flutter/pull/78836) Make version and time in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78843](https://github.com/flutter/flutter/pull/78843) Make language_version in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78845](https://github.com/flutter/flutter/pull/78845) Migrate flutter_tool tool helper files to null safety (a: null-safety, cla: yes, team, tool)
[78885](https://github.com/flutter/flutter/pull/78885) Exclude CI from tool root check (cla: yes, team, tool)
[78888](https://github.com/flutter/flutter/pull/78888) Add split Linux docs jobs to prod builder json (cla: yes, team, waiting for tree to go green)
[78892](https://github.com/flutter/flutter/pull/78892) Migrate command_help to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78893](https://github.com/flutter/flutter/pull/78893) Migrate signals.dart to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78896](https://github.com/flutter/flutter/pull/78896) Migrate flutter_tools file_system to null safety (a: null-safety, cla: yes, team, tool)
[78897](https://github.com/flutter/flutter/pull/78897) Add dart Fix for TextSelectionThemeData (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78901](https://github.com/flutter/flutter/pull/78901) Migrate flutter_tools os.dart to null safety (a: null-safety, cla: yes, team, tool)
[78910](https://github.com/flutter/flutter/pull/78910) Update packages to pick up new process version (cla: yes, team)
[78922](https://github.com/flutter/flutter/pull/78922) Migrate flutter_tool net.dart to null safety (a: null-safety, cla: yes, team, tool)
[78923](https://github.com/flutter/flutter/pull/78923) Migrate android_console to null safety (a: null-safety, cla: yes, team, tool)
[78932](https://github.com/flutter/flutter/pull/78932) Migrate error_handling_io to null safety (a: null-safety, cla: yes, team, tool)
[78934](https://github.com/flutter/flutter/pull/78934) Migrate deferred_components_validator to null safety (a: null-safety, cla: yes, team, tool)
[78939](https://github.com/flutter/flutter/pull/78939) Migrate localizations_utils to null safety (a: null-safety, cla: yes, team, tool)
[78942](https://github.com/flutter/flutter/pull/78942) Migrate visual_studio to null safety (a: null-safety, cla: yes, team, tool)
[78943](https://github.com/flutter/flutter/pull/78943) Migrate platform_plugins to null safety (a: null-safety, cla: yes, team, tool)
[78944](https://github.com/flutter/flutter/pull/78944) Migrate flutter_project_metadata to null safety (a: null-safety, cla: yes, team, tool)
[78949](https://github.com/flutter/flutter/pull/78949) Migrate device_port_forwarder to null safety (a: null-safety, cla: yes, team, tool)
[78991](https://github.com/flutter/flutter/pull/78991) Manually close the tree (cla: yes, team)
[79005](https://github.com/flutter/flutter/pull/79005) Revert "Remove keyLabel and debugName from Logical/PhysicalKeyboardKey" (a: tests, cla: yes, framework, team)
[79006](https://github.com/flutter/flutter/pull/79006) Revert "Manually close the tree" (cla: yes, team)
[79008](https://github.com/flutter/flutter/pull/79008) [ci] Run same script to analyze plugins as flutter/plugins. (cla: yes, team, waiting for tree to go green)
[79016](https://github.com/flutter/flutter/pull/79016) Split globals.dart into null safe and unsafe libraries (a: null-safety, cla: yes, team, tool)
[79027](https://github.com/flutter/flutter/pull/79027) [Fonts] Remove update_icons TODO (cla: yes, f: material design, framework, team, waiting for tree to go green)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79061](https://github.com/flutter/flutter/pull/79061) Refactor text editing test APIs (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79088](https://github.com/flutter/flutter/pull/79088) [versions] roll many versions (cla: yes, team, tool)
[79099](https://github.com/flutter/flutter/pull/79099) [versions] roll to latest test (a: tests, cla: yes, framework, team)
[79100](https://github.com/flutter/flutter/pull/79100) Make LogicalKeyboardKey.keyLabel a getter and better (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79108](https://github.com/flutter/flutter/pull/79108) Migrate gen_l10n_types to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79111](https://github.com/flutter/flutter/pull/79111) Migrate file_store to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79160](https://github.com/flutter/flutter/pull/79160) Clarify documentation for DragAnchorStrategy. (cla: yes, framework, team, waiting for tree to go green)
[79163](https://github.com/flutter/flutter/pull/79163) Add a test to exercise multiple async microtasks in frame workload (cla: yes, team, waiting for tree to go green)
[79217](https://github.com/flutter/flutter/pull/79217) Revert "Make LogicalKeyboardKey.keyLabel a getter and better" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79258](https://github.com/flutter/flutter/pull/79258) Add tests for integration tests to devicelab (cla: yes, team, waiting for tree to go green)
[79295](https://github.com/flutter/flutter/pull/79295) Enable android semantics integration test (a: accessibility, cla: yes, team, waiting for tree to go green)
[79296](https://github.com/flutter/flutter/pull/79296) skip android semantics integration test to enable engine roll (a: accessibility, cla: yes, team, waiting for tree to go green)
[79302](https://github.com/flutter/flutter/pull/79302) Reland Make LogicalKeyboardKey.keyLabel a getter and better #79100 (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79304](https://github.com/flutter/flutter/pull/79304) Update dartdoc to 0.41.0 (cla: yes, team, waiting for tree to go green)
[79310](https://github.com/flutter/flutter/pull/79310) Always write full timeline before summary (a: tests, cla: yes, framework, team)
[79317](https://github.com/flutter/flutter/pull/79317) Mark flutter_gallery__transition_perf_e2e_ios32 flaky (cla: yes, team)
[79322](https://github.com/flutter/flutter/pull/79322) Avoid hard coding "build" for test output files (cla: yes, team)
[79323](https://github.com/flutter/flutter/pull/79323) Revert "Mark flutter_gallery__transition_perf_e2e_ios32 flaky" (cla: yes, team)
[79324](https://github.com/flutter/flutter/pull/79324) Mark docs tests unflaky (cla: yes, team, waiting for tree to go green)
[79325](https://github.com/flutter/flutter/pull/79325) only cache release manifest files for 60 seconds (cla: yes, team)
[79329](https://github.com/flutter/flutter/pull/79329) fix tree (cla: yes, team)
[79332](https://github.com/flutter/flutter/pull/79332) Point gallery test data to FLUTTER_TEST_OUTPUTS_DIR (cla: yes, team, team: infra, waiting for tree to go green)
[79342](https://github.com/flutter/flutter/pull/79342) Migrate code_signing to null safety (a: null-safety, cla: yes, team, tool)
[79346](https://github.com/flutter/flutter/pull/79346) Migrate event_printer and test_config to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79394](https://github.com/flutter/flutter/pull/79394) Remove animation_with_microtasks_perf_ios__timeline_summary from prod⦠(cla: yes, team, waiting for tree to go green)
[79396](https://github.com/flutter/flutter/pull/79396) Create dev/ci.yaml (cla: yes, team, waiting for tree to go green)
[79419](https://github.com/flutter/flutter/pull/79419) one more path (a: accessibility, cla: yes, team)
[79421](https://github.com/flutter/flutter/pull/79421) Add missing io import to complex_layout_semantics_perf (a: accessibility, cla: yes, team)
[79456](https://github.com/flutter/flutter/pull/79456) roll gallery version to fix build (team)
[79460](https://github.com/flutter/flutter/pull/79460) [Stocks App] NNBD migration, refresh gen-l10n (a: internationalization, a: null-safety, cla: yes, team, waiting for tree to go green)
[79469](https://github.com/flutter/flutter/pull/79469) Migrate build_info to null safety (a: null-safety, cla: yes, team, tool)
[79470](https://github.com/flutter/flutter/pull/79470) Mark new_gallery__crane_perf flaky (cla: yes, team)
[79477](https://github.com/flutter/flutter/pull/79477) Revert "Mark new_gallery__crane_perf flaky" (cla: yes, team)
[79481](https://github.com/flutter/flutter/pull/79481) Fix device_port_forwarder file name typo (cla: yes, team, tool, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79496](https://github.com/flutter/flutter/pull/79496) Mark ios32 device tests flaky to reopen build. (cla: yes, team)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79504](https://github.com/flutter/flutter/pull/79504) Migrate android_studio to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79514](https://github.com/flutter/flutter/pull/79514) Take screenshot when startup perf test fails to run (cla: yes, team, team: infra, waiting for tree to go green)
[79520](https://github.com/flutter/flutter/pull/79520) Remove the warning about the Integration Test plugin (cla: yes, team, tool, waiting for tree to go green)
[79525](https://github.com/flutter/flutter/pull/79525) Migrate analysis to null safety (a: null-safety, cla: yes, team, tool)
[79560](https://github.com/flutter/flutter/pull/79560) Revert "Mark ios32 device tests flaky to reopen build." (cla: yes, team)
[79561](https://github.com/flutter/flutter/pull/79561) Mark integration_test_test as flaky (cla: yes, team, waiting for tree to go green)
[79583](https://github.com/flutter/flutter/pull/79583) Restore support for the --local-engine flag in devicelab/bin/run.dart (cla: yes, team, waiting for tree to go green)
[79587](https://github.com/flutter/flutter/pull/79587) Migrate fingerprint to null safety (a: null-safety, cla: yes, team, tool)
[79611](https://github.com/flutter/flutter/pull/79611) Migrate android_sdk and application_package to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79618](https://github.com/flutter/flutter/pull/79618) [flutter_tools] Remove special cased --no-chain-stack-traces (cla: yes, team, tool, waiting for tree to go green)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79682](https://github.com/flutter/flutter/pull/79682) Migrate doctor_validator to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79795](https://github.com/flutter/flutter/pull/79795) Update dartdoc to 0.42.0 (cla: yes, team, waiting for tree to go green)
[79801](https://github.com/flutter/flutter/pull/79801) Migrate tools chrome.dart to null safety (a: null-safety, cla: yes, team, tool)
[79804](https://github.com/flutter/flutter/pull/79804) Migrate linux_doctor to null safety (a: null-safety, cla: yes, team, tool)
[79805](https://github.com/flutter/flutter/pull/79805) Migrate vscode to null safety (a: null-safety, cla: yes, team, tool)
[79806](https://github.com/flutter/flutter/pull/79806) Migrate android_workflow to null safety (a: null-safety, cla: yes, team, tool)
[79807](https://github.com/flutter/flutter/pull/79807) Migrate some workflows and doctor validators to null safety (a: null-safety, cla: yes, team, tool)
[79813](https://github.com/flutter/flutter/pull/79813) Migrate intellij_validator to null safety (a: null-safety, cla: yes, team, tool)
[79816](https://github.com/flutter/flutter/pull/79816) Fix an NNBD error in the Gallery text form field demo (cla: yes, f: material design, team, waiting for tree to go green)
[79900](https://github.com/flutter/flutter/pull/79900) Move cache from globals to globals_null_migrated (a: null-safety, cla: yes, team, tool)
[79903](https://github.com/flutter/flutter/pull/79903) Revert "Reland [devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
[79907](https://github.com/flutter/flutter/pull/79907) Migrate flutter_tool test/src/common to null safety (a: null-safety, cla: yes, team, tool)
[79908](https://github.com/flutter/flutter/pull/79908) Start migrating flutter_tools test src to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79913](https://github.com/flutter/flutter/pull/79913) add new try/prod builders for validate_ci_config (cla: yes, team, waiting for tree to go green)
[79917](https://github.com/flutter/flutter/pull/79917) Allow null Config.getValue() results (a: null-safety, cla: yes, team, tool)
[79959](https://github.com/flutter/flutter/pull/79959) Unblock roll by reverting #79061 (a: tests, cla: yes, framework, team)
[79961](https://github.com/flutter/flutter/pull/79961) Mark integration_test_test as unflaky (cla: yes, team, waiting for tree to go green)
### tool - 346 pull request(s)
[61221](https://github.com/flutter/flutter/pull/61221) [flutter_tools] Add ARM64 Linux host and cross-building option support (a: desktop, cla: yes, platform-linux, tool)
[70673](https://github.com/flutter/flutter/pull/70673) Point to a new artifacts location. (cla: yes, f: material design, team, tool)
[71582](https://github.com/flutter/flutter/pull/71582) properly pass on gradle exit code (#71484) (cla: yes, tool, waiting for tree to go green)
[73205](https://github.com/flutter/flutter/pull/73205) Added warning when not enabled platform is selected (cla: yes, tool, waiting for tree to go green)
[73828](https://github.com/flutter/flutter/pull/73828) Exclude arm64 from valid iOS simulators (cla: yes, team, tool, waiting for tree to go green)
[74176](https://github.com/flutter/flutter/pull/74176) [flutter_tools] Simplify `flutter test` internals (cla: yes, tool, waiting for tree to go green)
[74236](https://github.com/flutter/flutter/pull/74236) [flutter_tools] Decouple FlutterPlatform from Process (cla: yes, tool, waiting for tree to go green)
[74447](https://github.com/flutter/flutter/pull/74447) [flutter_tools] experiment with skipping process resolution (cla: yes, tool)
[74469](https://github.com/flutter/flutter/pull/74469) Implement dartPluginClass support for plugins (cla: yes, tool)
[74533](https://github.com/flutter/flutter/pull/74533) Only write the pid-file while listening to SIGUSR signals. (cla: yes, team, tool, waiting for tree to go green)
[74740](https://github.com/flutter/flutter/pull/74740) Suppress 'Info: Compiling without sound null safety' message when building flutter_tools (cla: yes, tool)
[74744](https://github.com/flutter/flutter/pull/74744) [flutter_tools] catch errors when getting cwd (cla: yes, tool, waiting for tree to go green)
[74755](https://github.com/flutter/flutter/pull/74755) no more mockito for fuchsia remote debug protocol (cla: yes, team, tool, waiting for tree to go green)
[74762](https://github.com/flutter/flutter/pull/74762) Null safe migration for fuchsia remote debug protocol (cla: yes, team, tool)
[74763](https://github.com/flutter/flutter/pull/74763) Remove package image dependency (cla: yes, team, tool, waiting for tree to go green)
[74764](https://github.com/flutter/flutter/pull/74764) [flutter_tools] handle further devtools NPE (cla: yes, tool)
[74777](https://github.com/flutter/flutter/pull/74777) Replace MockXcode with Xcode.test in unit tests (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[74778](https://github.com/flutter/flutter/pull/74778) Rename setUpMockXcodeBuildHandler -> setUpFakeXcodeBuildHandler in tests (cla: yes, team, tool, waiting for tree to go green)
[74780](https://github.com/flutter/flutter/pull/74780) Remove MockProcessManager from channel_test and other tests (cla: yes, team, tool)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74817](https://github.com/flutter/flutter/pull/74817) [flutter_tools] remove mock from analyze_size_test.dart (cla: yes, tool, waiting for tree to go green)
[74818](https://github.com/flutter/flutter/pull/74818) [flutter_tools] delete old directories when unzipping ontop of them (cla: yes, tool)
[74827](https://github.com/flutter/flutter/pull/74827) Replace MockXcode with Xcode.test in more unit tests (cla: yes, tool)
[74829](https://github.com/flutter/flutter/pull/74829) [flutter_tools] rewrite Usage.test to capture objects instead of print logs (cla: yes, tool)
[74832](https://github.com/flutter/flutter/pull/74832) [flutter_tools] opt all flutter tool libraries and tests out of null safety. (cla: yes, team, tool)
[74834](https://github.com/flutter/flutter/pull/74834) Replace MockProcessManager with FakeProcessManager in process_test where possible (cla: yes, tool)
[74838](https://github.com/flutter/flutter/pull/74838) Swap MockStdio to FakeStdio in tests (cla: yes, team, tool)
[74844](https://github.com/flutter/flutter/pull/74844) Make `flutter create --sample` null-safe (cla: yes, tool, waiting for tree to go green)
[74847](https://github.com/flutter/flutter/pull/74847) Swap mockito import for test/fake (cla: yes, team, tool)
[74859](https://github.com/flutter/flutter/pull/74859) Remove the timeout when launching DevTools (cla: yes, tool, waiting for tree to go green)
[74865](https://github.com/flutter/flutter/pull/74865) Add canRun override to FakeProcessManager (cla: yes, team, tool)
[74867](https://github.com/flutter/flutter/pull/74867) Revert "Swap MockStdio to FakeStdio in tests" (cla: yes, tool)
[74869](https://github.com/flutter/flutter/pull/74869) Revert "Remove package image dependency" (cla: yes, team, tool)
[74874](https://github.com/flutter/flutter/pull/74874) Update packages (cla: yes, team, tool, waiting for tree to go green)
[74885](https://github.com/flutter/flutter/pull/74885) Unpin mysteriously pinned packages (cla: yes, team, tool, waiting for tree to go green)
[74919](https://github.com/flutter/flutter/pull/74919) [flutter_tools] remove mocks from file system test (cla: yes, tool)
[74932](https://github.com/flutter/flutter/pull/74932) Allow 'flutter create' in dev and example directories (cla: yes, tool, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[74943](https://github.com/flutter/flutter/pull/74943) vm_service 6.0.1-nullsafety.1, dwds 8.0.2 (cla: yes, team, tool, waiting for tree to go green)
[74946](https://github.com/flutter/flutter/pull/74946) Replace MockUsage with TestUsage (cla: yes, team, tool, waiting for tree to go green)
[74956](https://github.com/flutter/flutter/pull/74956) Replace MockProcessManager with FakeProcessManager in cocoapods_test (cla: yes, team, tool)
[74959](https://github.com/flutter/flutter/pull/74959) Make Linux apps non-unique by default. (cla: yes, tool)
[74992](https://github.com/flutter/flutter/pull/74992) [flutter_tools] move some fakes out of mocks.dart (cla: yes, tool, waiting for tree to go green)
[74994](https://github.com/flutter/flutter/pull/74994) [flutter_tools] remove mock SystemClock (cla: yes, tool, waiting for tree to go green)
[74995](https://github.com/flutter/flutter/pull/74995) [flutter_tools] remove mock android device from log reader test (cla: yes, tool, waiting for tree to go green)
[74999](https://github.com/flutter/flutter/pull/74999) [flutter_tools] remove most usage of MockDevice in resident runner test (cla: yes, tool, waiting for tree to go green)
[75012](https://github.com/flutter/flutter/pull/75012) Remove "unnecessary" imports in flutter_tools tests (cla: yes, tool, waiting for tree to go green)
[75026](https://github.com/flutter/flutter/pull/75026) Bump flutter_gallery_assets (cla: yes, team, tool, waiting for tree to go green)
[75027](https://github.com/flutter/flutter/pull/75027) [flutter_tools] switch dart defines to base64 to avoid windows control characters (cla: yes, tool)
[75029](https://github.com/flutter/flutter/pull/75029) Migrate off e2e (cla: yes, team, tool, waiting for tree to go green)
[75044](https://github.com/flutter/flutter/pull/75044) Replace MockConfig with TestConfig (cla: yes, team, tool, waiting for tree to go green)
[75160](https://github.com/flutter/flutter/pull/75160) [flutter_tools] skip web renderer defines unless web target is picked (cla: yes, tool)
[75170](https://github.com/flutter/flutter/pull/75170) Replace context FakeUsage with TestUsage (cla: yes, team, tool)
[75209](https://github.com/flutter/flutter/pull/75209) [gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified (a: internationalization, cla: yes, tool, waiting for tree to go green)
[75213](https://github.com/flutter/flutter/pull/75213) [flutter_tools] Merge some test options into DebuggingOptions (cla: yes, tool, waiting for tree to go green)
[75243](https://github.com/flutter/flutter/pull/75243) Add support for producing unstripped AOT snapshots. (cla: yes, tool, waiting for tree to go green)
[75251](https://github.com/flutter/flutter/pull/75251) [flutter_tools] add build system test for concurrent failures (cla: yes, tool)
[75259](https://github.com/flutter/flutter/pull/75259) [flutter_tools] use TestFeatureFlags instead of MockFeatureFlags (cla: yes, tool, waiting for tree to go green)
[75263](https://github.com/flutter/flutter/pull/75263) [flutter_tools] remove mockito from flutter symbolize test (cla: yes, tool)
[75276](https://github.com/flutter/flutter/pull/75276) Replace MockPlistParser with FakePlistParser (cla: yes, team, tool)
[75298](https://github.com/flutter/flutter/pull/75298) Catch VM Service disappearance from run/attach handler code (cla: yes, tool)
[75301](https://github.com/flutter/flutter/pull/75301) Return an empty FlutterViews list when the service disappears (cla: yes, tool, waiting for tree to go green)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75306](https://github.com/flutter/flutter/pull/75306) Revert "[gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified" (cla: yes, tool)
[75336](https://github.com/flutter/flutter/pull/75336) [flutter_tools] handle null package (cla: yes, tool)
[75346](https://github.com/flutter/flutter/pull/75346) Relands "[gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified" (a: internationalization, cla: yes, tool)
[75350](https://github.com/flutter/flutter/pull/75350) [flutter_tools] move process manager into tool (cla: yes, team, tool)
[75351](https://github.com/flutter/flutter/pull/75351) Suggest precache instead of build when engine artifacts are missing (cla: yes, platform-ios, tool)
[75361](https://github.com/flutter/flutter/pull/75361) [flutter_tools] remove web defines workaround (cla: yes, tool, waiting for tree to go green)
[75387](https://github.com/flutter/flutter/pull/75387) Install prebuilt iOS app only once (cla: yes, platform-ios, tool)
[75394](https://github.com/flutter/flutter/pull/75394) flutter_tool: DeferredComponent and LoadingUnit classes, Manifest deferred-components parsing (cla: yes, tool, waiting for tree to go green)
[75444](https://github.com/flutter/flutter/pull/75444) [flutter_tools] refactor devtools handler into its own class (cla: yes, tool)
[75471](https://github.com/flutter/flutter/pull/75471) [flutter_tools] use a single fake implementation of HttpClient (cla: yes, tool)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75535](https://github.com/flutter/flutter/pull/75535) [web] new service worker loading mechanism (cla: yes, team, tool)
[75543](https://github.com/flutter/flutter/pull/75543) Move FakeBotDetector to fakes (cla: yes, team, tool, waiting for tree to go green)
[75544](https://github.com/flutter/flutter/pull/75544) MockProcessManager -> FakeProcessManager (cla: yes, team, tool)
[75545](https://github.com/flutter/flutter/pull/75545) Add exception to FakeCommand (cla: yes, team, tool, waiting for tree to go green)
[75612](https://github.com/flutter/flutter/pull/75612) Fix Android Studio detection and plugins on Linux (cla: yes, tool, waiting for tree to go green)
[75639](https://github.com/flutter/flutter/pull/75639) Revert "[flutter_tools] move process manager into tool" (cla: yes, team, tool)
[75679](https://github.com/flutter/flutter/pull/75679) Consolidate ascii spinner stop in devtools activation (cla: yes, tool)
[75717](https://github.com/flutter/flutter/pull/75717) Fix analyzer warning, remove import (cla: yes, tool)
[75718](https://github.com/flutter/flutter/pull/75718) [flutter_tools] do not crash if shared profile restoration fails (cla: yes, tool)
[75719](https://github.com/flutter/flutter/pull/75719) [flutter_tools] catch error 32 in cache (cla: yes, tool, waiting for tree to go green)
[75733](https://github.com/flutter/flutter/pull/75733) [flutter_releases] Roll pub for flutter-1.26-candidate.17 (cla: yes, team, tool)
[75739](https://github.com/flutter/flutter/pull/75739) [flutter_tools] Deferred components setup validator (cla: yes, tool, waiting for tree to go green)
[75757](https://github.com/flutter/flutter/pull/75757) Remove dead mock classes (cla: yes, team, tool, waiting for tree to go green)
[75759](https://github.com/flutter/flutter/pull/75759) MockPub -> FakePub (cla: yes, team, tool, waiting for tree to go green)
[75797](https://github.com/flutter/flutter/pull/75797) [flutter_releases] Update additional pub packages to stable for 1.26.0-17.4.pre (cla: yes, team, tool)
[75804](https://github.com/flutter/flutter/pull/75804) [flutter_releases] Flutter Framework 1.26.0-17.5.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75807](https://github.com/flutter/flutter/pull/75807) [flutter_tools] refactor devtools handler to expose single method for run/attach and restart (cla: yes, tool, waiting for tree to go green)
[75822](https://github.com/flutter/flutter/pull/75822) Avoid duplicating Pods-Runner xcconfig #includes (cla: yes, t: xcode, tool, waiting for tree to go green)
[75871](https://github.com/flutter/flutter/pull/75871) [flutter_tools] remove package HTTP and add pub.dev head check tests (cla: yes, tool, waiting for tree to go green)
[75888](https://github.com/flutter/flutter/pull/75888) All arguments must be documented. (cla: yes, team, tool, waiting for tree to go green)
[75922](https://github.com/flutter/flutter/pull/75922) [flutter_tools] use temp dir for tester dill, use desktop log reader (cla: yes, tool)
[75925](https://github.com/flutter/flutter/pull/75925) [flutter_tools] add package:http to forbidden imports test (cla: yes, tool, waiting for tree to go green)
[75927](https://github.com/flutter/flutter/pull/75927) [flutter_tools] Send flutter_immediately_exit_test to the elemental plane to be reforged anew (cla: yes, tool)
[75930](https://github.com/flutter/flutter/pull/75930) [flutter_tools] use less path manipulation in the Android SDK (cla: yes, tool)
[75931](https://github.com/flutter/flutter/pull/75931) [flutter_tools] gradle cleanup 1 of 99999 (cla: yes, tool)
[75937](https://github.com/flutter/flutter/pull/75937) [flutter_releases] Flutter Framework 1.26.0-17.6.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75940](https://github.com/flutter/flutter/pull/75940) [flutter_tools] do not use context logger in gradle (cla: yes, tool, waiting for tree to go green)
[75954](https://github.com/flutter/flutter/pull/75954) Remove "unnecessary" imports in test/general.shard (cla: yes, tool)
[75981](https://github.com/flutter/flutter/pull/75981) [fuchsia] - update getting local host address logic (cla: yes, tool, waiting for tree to go green)
[76019](https://github.com/flutter/flutter/pull/76019) Fix package CHANGELOG template (cla: yes, tool)
[76020](https://github.com/flutter/flutter/pull/76020) [flutter_tools] Remove globals/mocks from GradleUtils (cla: yes, tool)
[76022](https://github.com/flutter/flutter/pull/76022) [flutter_tools] stop using throttled print for service extensions (cla: yes, framework, tool)
[76066](https://github.com/flutter/flutter/pull/76066) [flutter_tools] Avoid duplicated calls to l10n generation (a: internationalization, cla: yes, tool, waiting for tree to go green)
[76107](https://github.com/flutter/flutter/pull/76107) Flutter tool - Don't check for updates when run on a bot (cla: yes, tool, waiting for tree to go green)
[76123](https://github.com/flutter/flutter/pull/76123) Update link for missing desktop projects (cla: yes, tool, waiting for tree to go green)
[76133](https://github.com/flutter/flutter/pull/76133) Support --run-skipped in "flutter test" and pass through to package:test (cla: yes, tool, waiting for tree to go green)
[76143](https://github.com/flutter/flutter/pull/76143) Update all packages (cla: yes, team, tool)
[76192](https://github.com/flutter/flutter/pull/76192) [flutter_tools] Deferred components build system (cla: yes, severe: new feature, tool, waiting for tree to go green)
[76200](https://github.com/flutter/flutter/pull/76200) [flutter_tools] Support Integration Tests (cla: yes, team, tool, waiting for tree to go green)
[76241](https://github.com/flutter/flutter/pull/76241) [fuchsia] - migrate device discovery workflows to use ffx (cla: yes, team, tool, waiting for tree to go green)
[76252](https://github.com/flutter/flutter/pull/76252) [flutter_tools] remove mock process manager from gradle tests (cla: yes, tool)
[76258](https://github.com/flutter/flutter/pull/76258) [flutter_tools] allow bypassing context for FlutterProject creation, remove fromPath (cla: yes, tool, waiting for tree to go green)
[76260](https://github.com/flutter/flutter/pull/76260) Remove mocks from visual_studio_test (cla: yes, team, tool)
[76264](https://github.com/flutter/flutter/pull/76264) MockProcessManager -> FakeProcessManager in os_test (cla: yes, team, tool, waiting for tree to go green)
[76266](https://github.com/flutter/flutter/pull/76266) Swap Mocks to Fakes in build_fuchsia_test (cla: yes, team, tool, waiting for tree to go green)
[76268](https://github.com/flutter/flutter/pull/76268) [flutter_tools] replace some mock file/directories with new op handle (cla: yes, tool, waiting for tree to go green)
[76274](https://github.com/flutter/flutter/pull/76274) Swap Mocks to Fakes in config_test and other tests (cla: yes, team, tool, waiting for tree to go green)
[76276](https://github.com/flutter/flutter/pull/76276) Adopt FakeProcess, remove MockProcess (cla: yes, team, tool, waiting for tree to go green)
[76277](https://github.com/flutter/flutter/pull/76277) [flutter_tools] remove Artifacts dependency from globals in gradle, remove MockArtifacts from test (cla: yes, tool)
[76279](https://github.com/flutter/flutter/pull/76279) Adopt FileExceptionHandler in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76280](https://github.com/flutter/flutter/pull/76280) Delete MockResidentCompiler (cla: yes, team, tool, waiting for tree to go green)
[76282](https://github.com/flutter/flutter/pull/76282) Adopt TestUsage in flutter_command_test (cla: yes, team, tool)
[76330](https://github.com/flutter/flutter/pull/76330) [flutter_tools] remove global usage of flutterUsage from gradle (cla: yes, tool, waiting for tree to go green)
[76342](https://github.com/flutter/flutter/pull/76342) [flutter_tools] unify gradle/android sdk reinitialize checks in cache.dart (cla: yes, tool)
[76354](https://github.com/flutter/flutter/pull/76354) Adopt Artifacts.test(localEngine:) in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76355](https://github.com/flutter/flutter/pull/76355) Remove mockito from windows_device_test (cla: yes, team, tool, waiting for tree to go green)
[76382](https://github.com/flutter/flutter/pull/76382) Add sharding options to test command line (cla: yes, tool, waiting for tree to go green)
[76400](https://github.com/flutter/flutter/pull/76400) [flutter_tools] Refactor DeferredComponents validator and add build target (cla: yes, tool, waiting for tree to go green)
[76406](https://github.com/flutter/flutter/pull/76406) Do not show embedding warning for plugins when example app is missing (cla: yes, platform-android, tool, waiting for tree to go green)
[76414](https://github.com/flutter/flutter/pull/76414) Skip assemble version check in tool backend scripts (cla: yes, tool)
[76416](https://github.com/flutter/flutter/pull/76416) [flutter_tools] remove globals and mocks from android gradle builder and test (cla: yes, tool)
[76420](https://github.com/flutter/flutter/pull/76420) Update all packages and upgrade to path_provider 2.0.0-nullsafety (cla: yes, team, tool)
[76436](https://github.com/flutter/flutter/pull/76436) Remove unused imports of system libraries. (cla: yes, tool, waiting for tree to go green)
[76477](https://github.com/flutter/flutter/pull/76477) Remove deprecated author field in pubspec.yml templates (cla: yes, tool)
[76561](https://github.com/flutter/flutter/pull/76561) Disable warnings for the dart plugin registrant (cla: yes, tool)
[76579](https://github.com/flutter/flutter/pull/76579) [flutter_tools] Don't stringify null values in EventPrinter (cla: yes, tool, waiting for tree to go green)
[76618](https://github.com/flutter/flutter/pull/76618) [flutter_tools] enable experimental invalidation everywhere (cla: yes, tool, waiting for tree to go green)
[76650](https://github.com/flutter/flutter/pull/76650) [flutter_tools] cache adb path (cla: yes, tool, waiting for tree to go green)
[76662](https://github.com/flutter/flutter/pull/76662) Disable clang format in the plugin registrants (cla: yes, tool, waiting for tree to go green)
[76665](https://github.com/flutter/flutter/pull/76665) Move iOS framework thinning into the tool as assemble target (cla: yes, platform-ios, t: xcode, tool)
[76679](https://github.com/flutter/flutter/pull/76679) [flutter_tools] Fail fast when test dependencies are missing (cla: yes, tool, waiting for tree to go green)
[76714](https://github.com/flutter/flutter/pull/76714) [flutter_tools] add unit test for error 32 in cache deletion (cla: yes, tool, waiting for tree to go green)
[76721](https://github.com/flutter/flutter/pull/76721) [flutter_tools] replace vm_service extension methods with wrapper class (cla: yes, tool)
[76724](https://github.com/flutter/flutter/pull/76724) [flutter_tools] fix comment in resident web runner (cla: yes, tool, waiting for tree to go green)
[76725](https://github.com/flutter/flutter/pull/76725) [flutter_tools] remove process manager mocks from error_handling_io tests (cla: yes, tool, waiting for tree to go green)
[76743](https://github.com/flutter/flutter/pull/76743) [flutter_tools] remove remaining extensions (cla: yes, tool, waiting for tree to go green)
[76747](https://github.com/flutter/flutter/pull/76747) [flutter_tools] remove mockito from mdns client test (cla: yes, tool, waiting for tree to go green)
[76748](https://github.com/flutter/flutter/pull/76748) [flutter_tools] migrate async guard to null safety (cla: yes, tool)
[76802](https://github.com/flutter/flutter/pull/76802) [flutter_tools] switch FakeCache to cache.test and NoopUsage to TestUsage (cla: yes, tool)
[76806](https://github.com/flutter/flutter/pull/76806) [flutter_tools] simplify packages pass-through testing (cla: yes, tool, waiting for tree to go green)
[76812](https://github.com/flutter/flutter/pull/76812) [flutter_tools] remove mock from terminal test (cla: yes, tool)
[76813](https://github.com/flutter/flutter/pull/76813) [flutter_tools] remove mock from cmake project migrator (cla: yes, tool, waiting for tree to go green)
[76821](https://github.com/flutter/flutter/pull/76821) [flutter_tools] replace most MockBuildSystem instances with TestBuildSystem (cla: yes, tool, waiting for tree to go green)
[76829](https://github.com/flutter/flutter/pull/76829) Remove dead ensureDirectoryExists (cla: yes, team, tool, waiting for tree to go green)
[76830](https://github.com/flutter/flutter/pull/76830) Add ephemeral iOS directory to put future generated files (cla: yes, platform-ios, tool, waiting for tree to go green)
[76833](https://github.com/flutter/flutter/pull/76833) Opt into CocoaPods parallel codesigning (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[76834](https://github.com/flutter/flutter/pull/76834) Stop trying to thin iOS App.framework (cla: yes, t: xcode, tool, waiting for tree to go green)
[76884](https://github.com/flutter/flutter/pull/76884) [flutter_tools] remove all mock artifacts usage (cla: yes, tool)
[76887](https://github.com/flutter/flutter/pull/76887) [flutter_tools] remove mocks from android SDK tests (cla: yes, tool, waiting for tree to go green)
[77007](https://github.com/flutter/flutter/pull/77007) Move iOS Flutter.framework thinning into copy assemble build target (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77011](https://github.com/flutter/flutter/pull/77011) Fix typo in web template (cla: yes, tool, waiting for tree to go green)
[77025](https://github.com/flutter/flutter/pull/77025) Update minimum required version to Xcode 12 (cla: yes, t: xcode, tool, waiting for tree to go green)
[77027](https://github.com/flutter/flutter/pull/77027) Enable missing_whitespace_between_adjacent_strings (cla: yes, f: material design, framework, team, tool)
[77064](https://github.com/flutter/flutter/pull/77064) [flutter_tools] remove mock from logger tests (cla: yes, tool)
[77066](https://github.com/flutter/flutter/pull/77066) [flutter_tools] remove chrome launcher, analytics mock from web unit tests (cla: yes, tool, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77154](https://github.com/flutter/flutter/pull/77154) enable build test, roll engine (cla: yes, engine, team, tool)
[77158](https://github.com/flutter/flutter/pull/77158) [flutter_tools] remove mock from android studio test (cla: yes, tool, waiting for tree to go green)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77170](https://github.com/flutter/flutter/pull/77170) [flutter_tools] remove mocks from build_aar_test (cla: yes, tool, waiting for tree to go green)
[77192](https://github.com/flutter/flutter/pull/77192) Increase dart migrate integration test timeout (cla: yes, team, team: flakes, tool, waiting for tree to go green)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77202](https://github.com/flutter/flutter/pull/77202) [template] removes unused import from Kotlin and Android pluign template (cla: yes, tool, waiting for tree to go green)
[77220](https://github.com/flutter/flutter/pull/77220) [flutter_tools] Generalize waitForExtension (cla: yes, tool)
[77261](https://github.com/flutter/flutter/pull/77261) [flutter_tools] dont crash when looking for AS4.1 on windows with no LOCALAPPDATA (cla: yes, tool, waiting for tree to go green)
[77264](https://github.com/flutter/flutter/pull/77264) [flutter_tools] remove several AndroidSdk Mocks (cla: yes, tool, waiting for tree to go green)
[77316](https://github.com/flutter/flutter/pull/77316) Delete unzipped FlutterMacOS.framework before replacing artifact (cla: yes, platform-mac, tool, waiting for tree to go green)
[77329](https://github.com/flutter/flutter/pull/77329) Bitcode strip Flutter.framework in assemble build target (cla: yes, platform-ios, team, tool)
[77390](https://github.com/flutter/flutter/pull/77390) [flutter_tools] replace MockFlutterVersion usage with fake where possible, move from context (cla: yes, tool, waiting for tree to go green)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77399](https://github.com/flutter/flutter/pull/77399) [flutter_tools] add tool feature/scaffold for UWP (cla: yes, tool, waiting for tree to go green)
[77405](https://github.com/flutter/flutter/pull/77405) Fix typo in Windows template (cla: yes, team, tool, waiting for tree to go green)
[77424](https://github.com/flutter/flutter/pull/77424) archiveing -> archiving (cla: yes, tool, waiting for tree to go green)
[77432](https://github.com/flutter/flutter/pull/77432) [flutter_tools] remove most globals from resident web runner (cla: yes, tool, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77559](https://github.com/flutter/flutter/pull/77559) Remove "unnecessary" import in build_appbundle_test (cla: yes, tool)
[77566](https://github.com/flutter/flutter/pull/77566) Increase timeouts to fix build integration timeout flakes (cla: yes, tool)
[77651](https://github.com/flutter/flutter/pull/77651) [fuchsia] remove no devices found from ffx parsing (cla: yes, team, tool, waiting for tree to go green)
[77664](https://github.com/flutter/flutter/pull/77664) Move iOS codesigning into assemble build target (cla: yes, platform-ios, t: xcode, tool)
[77727](https://github.com/flutter/flutter/pull/77727) [flutter_tools] simplify platform null safety (cla: yes, tool)
[77731](https://github.com/flutter/flutter/pull/77731) [flutter_tools] remove mock processes from batch compile_test (cla: yes, tool)
[77738](https://github.com/flutter/flutter/pull/77738) [flutter_tools] migrate some base libraries to null safety (cla: yes, tool, waiting for tree to go green)
[77748](https://github.com/flutter/flutter/pull/77748) [flutter_tools] simplify fake imports for FakeProcessManager (cla: yes, tool, waiting for tree to go green)
[77749](https://github.com/flutter/flutter/pull/77749) Remove mockito deps from dev (cla: yes, team, tool, waiting for tree to go green)
[77756](https://github.com/flutter/flutter/pull/77756) Implement iOS app install deltas (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77757](https://github.com/flutter/flutter/pull/77757) Remove mock from event_printer_test (cla: yes, tool, waiting for tree to go green)
[77760](https://github.com/flutter/flutter/pull/77760) [flutter_tools] remove mocks from features test (cla: yes, tool, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77867](https://github.com/flutter/flutter/pull/77867) [flutter_tools] read expression compilation results before starting next compilation (cla: yes, tool)
[77926](https://github.com/flutter/flutter/pull/77926) Add libgcrypt as an explicit dependancy on Linux (cla: yes, tool, waiting for tree to go green)
[77942](https://github.com/flutter/flutter/pull/77942) Refactor: use one subprojects property (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)
[77945](https://github.com/flutter/flutter/pull/77945) Update mockito dep and remove usage in manual tests and localizations (cla: yes, team, tool, waiting for tree to go green)
[77953](https://github.com/flutter/flutter/pull/77953) [flutter_tools] remove globals from terminal (cla: yes, tool, waiting for tree to go green)
[77955](https://github.com/flutter/flutter/pull/77955) [flutter_tools] io cleanups to simplify null safety migration (cla: yes, tool, waiting for tree to go green)
[77961](https://github.com/flutter/flutter/pull/77961) [flutter_tools] provide more context for invalidation (cla: yes, tool, waiting for tree to go green)
[77962](https://github.com/flutter/flutter/pull/77962) Remove MockFlutterVersions (cla: yes, team, tool, waiting for tree to go green)
[77968](https://github.com/flutter/flutter/pull/77968) Remove mocks from web devices test (cla: yes, team, tool, waiting for tree to go green)
[77969](https://github.com/flutter/flutter/pull/77969) [flutter_tools] simplify shutdown hooks (cla: yes, tool, waiting for tree to go green)
[77983](https://github.com/flutter/flutter/pull/77983) Remove MockBuildSystem from generate_synthetic_packages_test (cla: yes, team, tool, waiting for tree to go green)
[77985](https://github.com/flutter/flutter/pull/77985) MockProcessUtils->FakeProcessManager in version_test (cla: yes, team, tool, waiting for tree to go green)
[77986](https://github.com/flutter/flutter/pull/77986) Remove mocks from build_windows_test (cla: yes, team, tool, waiting for tree to go green)
[77988](https://github.com/flutter/flutter/pull/77988) MockOperatingSystemUtils -> FakeOperatingSystemUtils (cla: yes, team, tool, waiting for tree to go green)
[77991](https://github.com/flutter/flutter/pull/77991) Remove mock from cocoapods_validator_test (cla: yes, team, tool)
[78037](https://github.com/flutter/flutter/pull/78037) [flutter_tools] check for cygwin uname in entrypoint scripts (cla: yes, tool, waiting for tree to go green)
[78067](https://github.com/flutter/flutter/pull/78067) [flutter_tools] scaffolding for Windows UWP template (cla: yes, tool, waiting for tree to go green)
[78079](https://github.com/flutter/flutter/pull/78079) [flutter_tools] Deferred components: Encode base module loading units in manifest metadata (cla: yes, tool, waiting for tree to go green)
[78085](https://github.com/flutter/flutter/pull/78085) Allow local networking Info.plist insertion to fail (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78089](https://github.com/flutter/flutter/pull/78089) Remove MockFlutterVersion from mocks (cla: yes, team, tool)
[78092](https://github.com/flutter/flutter/pull/78092) Remove mocks from compile_expression_test (cla: yes, team, tool)
[78113](https://github.com/flutter/flutter/pull/78113) [flutter_tools] Add support for custom devices (cla: yes, tool, waiting for tree to go green)
[78166](https://github.com/flutter/flutter/pull/78166) [flutter_tools] Fix avdmanager path detection (cla: yes, tool, waiting for tree to go green)
[78253](https://github.com/flutter/flutter/pull/78253) [flutter_tools] Add support for versioned Android cmdline tools (cla: yes, tool)
[78259](https://github.com/flutter/flutter/pull/78259) Point "flutter build ipa --analyze-size" to archive app output (a: existing-apps, cla: yes, tool, waiting for tree to go green)
[78272](https://github.com/flutter/flutter/pull/78272) Download platform artifacts from assemble if needed (cla: yes, t: gradle, t: xcode, tool, waiting for tree to go green)
[78276](https://github.com/flutter/flutter/pull/78276) Remove MockStdIn and MockStream (cla: yes, team, tool, waiting for tree to go green)
[78279](https://github.com/flutter/flutter/pull/78279) Remove mocks from cocoapods_test (cla: yes, team, tool, waiting for tree to go green)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78353](https://github.com/flutter/flutter/pull/78353) [flutter_tools] remove globals from logger (cla: yes, tool)
[78357](https://github.com/flutter/flutter/pull/78357) [flutter_tools] remove globals from process, fs (cla: yes, tool)
[78359](https://github.com/flutter/flutter/pull/78359) [flutter_tools] migrate context to null safety (cla: yes, tool)
[78380](https://github.com/flutter/flutter/pull/78380) [flutter_tools] handle OSError 2 from current working directory (cla: yes, tool)
[78381](https://github.com/flutter/flutter/pull/78381) Add test for dart compilation error build output (cla: yes, team, tool, waiting for tree to go green)
[78386](https://github.com/flutter/flutter/pull/78386) Try fixing web tool tests on windows (cla: yes, tool)
[78406](https://github.com/flutter/flutter/pull/78406) Command `flutter create` respects disabled iOS and Android (cla: yes, tool)
[78415](https://github.com/flutter/flutter/pull/78415) Revert "Add libblkid / liblzma / libgcrypt as an explicit dependancy on Linux" (cla: yes, team, tool)
[78474](https://github.com/flutter/flutter/pull/78474) [flutter_releases] Flutter Beta 2.1.0-12.2.pre Framework Cherrypicks (cla: yes, engine, tool)
[78482](https://github.com/flutter/flutter/pull/78482) Add trace logging to local engine path autodetection (cla: yes, tool)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78493](https://github.com/flutter/flutter/pull/78493) Clean up ignores that are not ignoring anything (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[78496](https://github.com/flutter/flutter/pull/78496) Parse engine src path from an absolute --local-engine (cla: yes, team, tool)
[78497](https://github.com/flutter/flutter/pull/78497) Migrate our custom ignore syntax to flutter_ignore (cla: yes, framework, team, tool, waiting for tree to go green)
[78508](https://github.com/flutter/flutter/pull/78508) Move web tool test per-test timeout to shard (cla: yes, team, tool)
[78557](https://github.com/flutter/flutter/pull/78557) Update all versions and remove vm_service_client dependency (cla: yes, team, tool)
[78592](https://github.com/flutter/flutter/pull/78592) Skip linking against Flutter for CocoaPods transitive dependencies (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[78619](https://github.com/flutter/flutter/pull/78619) Enable null safety by default in templates (cla: yes, tool)
[78623](https://github.com/flutter/flutter/pull/78623) Reverts "Implement dartPluginClass support for plugins #74469" (cla: yes, d: examples, team, tool)
[78624](https://github.com/flutter/flutter/pull/78624) [flutter_tools] add skeleton for build uwp (cla: yes, tool)
[78664](https://github.com/flutter/flutter/pull/78664) Remove "unnecessary" imports in test/general.shards. (cla: yes, tool, waiting for tree to go green)
[78665](https://github.com/flutter/flutter/pull/78665) Remove "unnecessary" imports in test/commands.shard. (cla: yes, tool, waiting for tree to go green)
[78666](https://github.com/flutter/flutter/pull/78666) Remove "unnecessary" imports. (cla: yes, tool, waiting for tree to go green)
[78669](https://github.com/flutter/flutter/pull/78669) Remove ignores that are not ignoring anything (cla: yes, team, tool, waiting for tree to go green)
[78674](https://github.com/flutter/flutter/pull/78674) Add '--protocol-traffic-log' option to 'analyze' command. (cla: yes, tool, waiting for tree to go green)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78778](https://github.com/flutter/flutter/pull/78778) [gen-l10n] Remove need for ignoring two lints in generated code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[78806](https://github.com/flutter/flutter/pull/78806) Pass the --disable-dds flag through to dwds (cla: yes, tool, waiting for tree to go green)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
[78816](https://github.com/flutter/flutter/pull/78816) [flutter_tools] migrate io, process, logger, terminal (cla: yes, tool)
[78822](https://github.com/flutter/flutter/pull/78822) Take screenshot when drive fails (a: accessibility, cla: yes, team, team: flakes, tool)
[78823](https://github.com/flutter/flutter/pull/78823) Update Podfile.lock modified timestamp when pod install is run (cla: yes, platform-ios, tool, waiting for tree to go green)
[78824](https://github.com/flutter/flutter/pull/78824) Record deferred components assets in AssetManifest.json (cla: yes, tool, waiting for tree to go green)
[78836](https://github.com/flutter/flutter/pull/78836) Make version and time in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78843](https://github.com/flutter/flutter/pull/78843) Make language_version in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78845](https://github.com/flutter/flutter/pull/78845) Migrate flutter_tool tool helper files to null safety (a: null-safety, cla: yes, team, tool)
[78885](https://github.com/flutter/flutter/pull/78885) Exclude CI from tool root check (cla: yes, team, tool)
[78892](https://github.com/flutter/flutter/pull/78892) Migrate command_help to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78893](https://github.com/flutter/flutter/pull/78893) Migrate signals.dart to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78896](https://github.com/flutter/flutter/pull/78896) Migrate flutter_tools file_system to null safety (a: null-safety, cla: yes, team, tool)
[78901](https://github.com/flutter/flutter/pull/78901) Migrate flutter_tools os.dart to null safety (a: null-safety, cla: yes, team, tool)
[78911](https://github.com/flutter/flutter/pull/78911) [flutter_tools] fix deletion of gradle wrapper artifacts in cache (cla: yes, tool, waiting for tree to go green)
[78913](https://github.com/flutter/flutter/pull/78913) [flutter_tools] handle concurrent modification in signal callback (cla: yes, tool)
[78915](https://github.com/flutter/flutter/pull/78915) [flutter_tools] remove suite channel access from web tests (cla: yes, tool, waiting for tree to go green)
[78922](https://github.com/flutter/flutter/pull/78922) Migrate flutter_tool net.dart to null safety (a: null-safety, cla: yes, team, tool)
[78923](https://github.com/flutter/flutter/pull/78923) Migrate android_console to null safety (a: null-safety, cla: yes, team, tool)
[78932](https://github.com/flutter/flutter/pull/78932) Migrate error_handling_io to null safety (a: null-safety, cla: yes, team, tool)
[78934](https://github.com/flutter/flutter/pull/78934) Migrate deferred_components_validator to null safety (a: null-safety, cla: yes, team, tool)
[78939](https://github.com/flutter/flutter/pull/78939) Migrate localizations_utils to null safety (a: null-safety, cla: yes, team, tool)
[78942](https://github.com/flutter/flutter/pull/78942) Migrate visual_studio to null safety (a: null-safety, cla: yes, team, tool)
[78943](https://github.com/flutter/flutter/pull/78943) Migrate platform_plugins to null safety (a: null-safety, cla: yes, team, tool)
[78944](https://github.com/flutter/flutter/pull/78944) Migrate flutter_project_metadata to null safety (a: null-safety, cla: yes, team, tool)
[78949](https://github.com/flutter/flutter/pull/78949) Migrate device_port_forwarder to null safety (a: null-safety, cla: yes, team, tool)
[78954](https://github.com/flutter/flutter/pull/78954) [flutter_tools] throwToolExit should return Never (cla: yes, tool, waiting for tree to go green)
[78961](https://github.com/flutter/flutter/pull/78961) Support WebSockets for dwds injected client (cla: yes, tool, waiting for tree to go green)
[78975](https://github.com/flutter/flutter/pull/78975) [gen-l10n] Remove more ignores, conditionally generate some code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[78988](https://github.com/flutter/flutter/pull/78988) [flutter_tools] migrate tool_backend.dart to null safety and add testing of exit conditions (cla: yes, tool, waiting for tree to go green)
[78995](https://github.com/flutter/flutter/pull/78995) [flutter_tools] use existing service implementations for web (cla: yes, tool, waiting for tree to go green)
[79010](https://github.com/flutter/flutter/pull/79010) Removed unnecessary ! in net.dart (cla: yes, tool)
[79016](https://github.com/flutter/flutter/pull/79016) Split globals.dart into null safe and unsafe libraries (a: null-safety, cla: yes, team, tool)
[79047](https://github.com/flutter/flutter/pull/79047) [flutter_tools] Remove reference to Fuchsia pm genkey and -k (cla: yes, tool)
[79052](https://github.com/flutter/flutter/pull/79052) [flutter_tools] separate concept of null safe language version from current language version (cla: yes, tool)
[79071](https://github.com/flutter/flutter/pull/79071) Fix missed ignores (cla: yes, framework, tool)
[79088](https://github.com/flutter/flutter/pull/79088) [versions] roll many versions (cla: yes, team, tool)
[79108](https://github.com/flutter/flutter/pull/79108) Migrate gen_l10n_types to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79111](https://github.com/flutter/flutter/pull/79111) Migrate file_store to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79167](https://github.com/flutter/flutter/pull/79167) [flutter_tools] make flutter.gradle compatible with 7 rc1 (cla: yes, tool, waiting for tree to go green)
[79173](https://github.com/flutter/flutter/pull/79173) [flutter_tools] guard L service extension in debug mode (cla: yes, tool, waiting for tree to go green)
[79263](https://github.com/flutter/flutter/pull/79263) [gen-l10n] Add `nullable-getter` flag (a: internationalization, cla: yes, tool, waiting for tree to go green)
[79338](https://github.com/flutter/flutter/pull/79338) Allow writing startup_info.json to somewhere other than the build dir (cla: yes, tool, waiting for tree to go green)
[79342](https://github.com/flutter/flutter/pull/79342) Migrate code_signing to null safety (a: null-safety, cla: yes, team, tool)
[79343](https://github.com/flutter/flutter/pull/79343) Check for outdated Podfile before running pod install (cla: yes, tool)
[79346](https://github.com/flutter/flutter/pull/79346) Migrate event_printer and test_config to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79379](https://github.com/flutter/flutter/pull/79379) [flutter_tools] do not make drive require pub if --no-pub is requested (cla: yes, tool, waiting for tree to go green)
[79418](https://github.com/flutter/flutter/pull/79418) Do not run version check if generating shell completion and stdout isn't terminal (cla: yes, tool, waiting for tree to go green)
[79422](https://github.com/flutter/flutter/pull/79422) Remove some globals from the tool (cla: yes, tool)
[79454](https://github.com/flutter/flutter/pull/79454) [flutter_tools] remove globals from Device and separate FlutterDeviceManager (cla: yes, tool)
[79455](https://github.com/flutter/flutter/pull/79455) [flutter_tools] Move sksl writing out of vm_service (cla: yes, tool)
[79459](https://github.com/flutter/flutter/pull/79459) [flutter_tools] remove unused testbed method (cla: yes, tool)
[79461](https://github.com/flutter/flutter/pull/79461) [flutter_tools] split application package factory dependencies (cla: yes, tool)
[79469](https://github.com/flutter/flutter/pull/79469) Migrate build_info to null safety (a: null-safety, cla: yes, team, tool)
[79479](https://github.com/flutter/flutter/pull/79479) [ Web ] Register service extensions with DDS, not DWDS (cla: yes, tool, waiting for tree to go green)
[79481](https://github.com/flutter/flutter/pull/79481) Fix device_port_forwarder file name typo (cla: yes, team, tool, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79501](https://github.com/flutter/flutter/pull/79501) [flutter_tools] Fix breakage when test main is tagged with @doNotStore (cla: yes, tool, waiting for tree to go green)
[79504](https://github.com/flutter/flutter/pull/79504) Migrate android_studio to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79507](https://github.com/flutter/flutter/pull/79507) Fix import device_port_forwarder typo (cla: yes, tool)
[79520](https://github.com/flutter/flutter/pull/79520) Remove the warning about the Integration Test plugin (cla: yes, team, tool, waiting for tree to go green)
[79521](https://github.com/flutter/flutter/pull/79521) [flutter_tools] Normalize test file paths before using them (cla: yes, tool, waiting for tree to go green)
[79525](https://github.com/flutter/flutter/pull/79525) Migrate analysis to null safety (a: null-safety, cla: yes, team, tool)
[79566](https://github.com/flutter/flutter/pull/79566) [flutter_tools] use Url path.Context for joining URI (cla: yes, tool, waiting for tree to go green)
[79580](https://github.com/flutter/flutter/pull/79580) [flutter_tools] split cache into API and implementation (cla: yes, tool)
[79587](https://github.com/flutter/flutter/pull/79587) Migrate fingerprint to null safety (a: null-safety, cla: yes, team, tool)
[79603](https://github.com/flutter/flutter/pull/79603) [flutter_tools] split features into 2 libraries, migrate to null safety (cla: yes, tool)
[79608](https://github.com/flutter/flutter/pull/79608) Remove "unnecessary" imports in test/widgets (cla: yes, framework, tool, waiting for tree to go green)
[79611](https://github.com/flutter/flutter/pull/79611) Migrate android_sdk and application_package to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79618](https://github.com/flutter/flutter/pull/79618) [flutter_tools] Remove special cased --no-chain-stack-traces (cla: yes, team, tool, waiting for tree to go green)
[79657](https://github.com/flutter/flutter/pull/79657) [flutter_tools] consume package:process exceptions (cla: yes, tool, waiting for tree to go green)
[79676](https://github.com/flutter/flutter/pull/79676) [flutter_tools] allow winuwp build to setup generated cmake file (cla: yes, tool, waiting for tree to go green)
[79682](https://github.com/flutter/flutter/pull/79682) Migrate doctor_validator to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79801](https://github.com/flutter/flutter/pull/79801) Migrate tools chrome.dart to null safety (a: null-safety, cla: yes, team, tool)
[79804](https://github.com/flutter/flutter/pull/79804) Migrate linux_doctor to null safety (a: null-safety, cla: yes, team, tool)
[79805](https://github.com/flutter/flutter/pull/79805) Migrate vscode to null safety (a: null-safety, cla: yes, team, tool)
[79806](https://github.com/flutter/flutter/pull/79806) Migrate android_workflow to null safety (a: null-safety, cla: yes, team, tool)
[79807](https://github.com/flutter/flutter/pull/79807) Migrate some workflows and doctor validators to null safety (a: null-safety, cla: yes, team, tool)
[79813](https://github.com/flutter/flutter/pull/79813) Migrate intellij_validator to null safety (a: null-safety, cla: yes, team, tool)
[79827](https://github.com/flutter/flutter/pull/79827) [flutter_tools] generate empty plugin registrants for winuwp and fix local engine for winuwp_ (cla: yes, tool)
[79864](https://github.com/flutter/flutter/pull/79864) [flutter_tools] migrate cache to null safety (cla: yes, tool, waiting for tree to go green)
[79898](https://github.com/flutter/flutter/pull/79898) migrate empty exceptions to tool exit with error message (cla: yes, tool, waiting for tree to go green)
[79900](https://github.com/flutter/flutter/pull/79900) Move cache from globals to globals_null_migrated (a: null-safety, cla: yes, team, tool)
[79907](https://github.com/flutter/flutter/pull/79907) Migrate flutter_tool test/src/common to null safety (a: null-safety, cla: yes, team, tool)
[79908](https://github.com/flutter/flutter/pull/79908) Start migrating flutter_tools test src to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79917](https://github.com/flutter/flutter/pull/79917) Allow null Config.getValue() results (a: null-safety, cla: yes, team, tool)
### f: material design - 209 pull request(s)
[70171](https://github.com/flutter/flutter/pull/70171) [Checkbox] Adds shape property (cla: yes, f: material design, framework, waiting for tree to go green)
[70673](https://github.com/flutter/flutter/pull/70673) Point to a new artifacts location. (cla: yes, f: material design, team, tool)
[71138](https://github.com/flutter/flutter/pull/71138) Let InkWell/Ink/ancestor support GlobalKey so that splash does not stop when changing position. (cla: yes, f: material design, framework, waiting for tree to go green)
[71217](https://github.com/flutter/flutter/pull/71217) Added checkboxHorizontalMargin to DataTable and PaginatedDataTable (cla: yes, f: material design, framework)
[72052](https://github.com/flutter/flutter/pull/72052) Feature refresh indicator padding (cla: yes, f: material design, framework)
[72828](https://github.com/flutter/flutter/pull/72828) Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[73105](https://github.com/flutter/flutter/pull/73105) [UserAccountsDrawerHeader] New option for changing profiles images size (cla: yes, f: material design, framework, waiting for tree to go green)
[73510](https://github.com/flutter/flutter/pull/73510) Reland "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73526](https://github.com/flutter/flutter/pull/73526) SliverAppBar Default Elevation Patch (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73964](https://github.com/flutter/flutter/pull/73964) Adds First/Last buttons to PaginatedDataTable (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)
[74043](https://github.com/flutter/flutter/pull/74043) Added enableFeedback property to BottomNavigationBar (cla: yes, f: material design, framework, waiting for tree to go green)
[74373](https://github.com/flutter/flutter/pull/74373) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[74697](https://github.com/flutter/flutter/pull/74697) Added a ReorderableListView.builder constructor (cla: yes, f: material design, framework)
[74722](https://github.com/flutter/flutter/pull/74722) TextField and last input character should visible on the screen when the cursor is not shown (cla: yes, f: material design, framework, waiting for tree to go green)
[74768](https://github.com/flutter/flutter/pull/74768) Use the shortcuts temporary solution only on web (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74773](https://github.com/flutter/flutter/pull/74773) Added ButtonStyle.fixedSize (cla: yes, f: material design, framework, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74821](https://github.com/flutter/flutter/pull/74821) Remove "unnecessary" imports in material (cla: yes, f: material design, framework, waiting for tree to go green)
[74826](https://github.com/flutter/flutter/pull/74826) Cherrypick Use the shortcuts temporary solution only on web (#74768) (cla: yes, f: cupertino, f: material design, framework)
[74837](https://github.com/flutter/flutter/pull/74837) InputDecorator negative baseline error message (cla: yes, f: material design, framework, waiting for tree to go green)
[74842](https://github.com/flutter/flutter/pull/74842) Fix a bug with duplicate keys being used in the ReorderableListView. (cla: yes, f: material design, framework, waiting for tree to go green)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74880](https://github.com/flutter/flutter/pull/74880) Fix a slider layout bug when the overlay size is smaller than the thumb size (cla: yes, f: material design, framework, waiting for tree to go green)
[74899](https://github.com/flutter/flutter/pull/74899) Remove "unnecessary" imports in material/ (cla: yes, f: material design, framework, waiting for tree to go green)
[74906](https://github.com/flutter/flutter/pull/74906) Improve Dropdown Menu (cla: yes, f: material design, framework, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[74949](https://github.com/flutter/flutter/pull/74949) Added ButtonStyle.splashFactory and NoSplash.splashFactory (cla: yes, f: material design, framework, waiting for tree to go green)
[75005](https://github.com/flutter/flutter/pull/75005) Remove "unnecessary" imports in material (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75032](https://github.com/flutter/flutter/pull/75032) Text Editing Movement Keys via Shortcuts (cla: yes, f: material design, framework)
[75138](https://github.com/flutter/flutter/pull/75138) AlertDialog: Remove scrollability by default (cla: yes, f: material design, framework, waiting for tree to go green)
[75169](https://github.com/flutter/flutter/pull/75169) Added scrollController property to TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75287](https://github.com/flutter/flutter/pull/75287) Add fix for maxEnforced -> maxEnforcement (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75291](https://github.com/flutter/flutter/pull/75291) [Api docs] Dartpad demo for alert dialog. (cla: yes, f: material design, framework)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75358](https://github.com/flutter/flutter/pull/75358) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75359](https://github.com/flutter/flutter/pull/75359) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75360](https://github.com/flutter/flutter/pull/75360) Fix BottomNavigationBar MediaQuery padding (cla: yes, f: material design, framework, waiting for tree to go green)
[75393](https://github.com/flutter/flutter/pull/75393) Add onLongPress property to DataCell: #72609 (cla: yes, f: material design, framework, waiting for tree to go green)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75454](https://github.com/flutter/flutter/pull/75454) ToggleButtons focus,highlight,hoverElevation = 0 (cla: yes, f: material design, framework, waiting for tree to go green)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75513](https://github.com/flutter/flutter/pull/75513) Modified the computeMinIntrinsicHeight method to calculate the height properly (cla: yes, f: material design, framework, waiting for tree to go green)
[75519](https://github.com/flutter/flutter/pull/75519) Added TextButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[75522](https://github.com/flutter/flutter/pull/75522) Fix for issue #75518 - ListTile.divideTiles throws error if empty list is passed when null-safety enabled (cla: yes, f: material design, framework, waiting for tree to go green)
[75532](https://github.com/flutter/flutter/pull/75532) Revert "TextField and last input character should visible on the screen when the cursor is not shown (#74722)" (cla: yes, f: material design, framework)
[75541](https://github.com/flutter/flutter/pull/75541) fixes TextInputFormatter gets wrong old value of a selection (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75604](https://github.com/flutter/flutter/pull/75604) Reland #74722 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75670](https://github.com/flutter/flutter/pull/75670) CupertinoPageTransition Optimizations (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75676](https://github.com/flutter/flutter/pull/75676) Removed ButtonBar from AlertDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[75748](https://github.com/flutter/flutter/pull/75748) Fix constraints of popupmenu (cla: yes, f: material design, framework, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[75764](https://github.com/flutter/flutter/pull/75764) ScrollController.jumpTo zero should not trigger the refresh indicator (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[75794](https://github.com/flutter/flutter/pull/75794) Fix for #75792 - allow use of Animator<Color?> with LinearProgressIndicator (cla: yes, f: material design, framework, waiting for tree to go green)
[75804](https://github.com/flutter/flutter/pull/75804) [flutter_releases] Flutter Framework 1.26.0-17.5.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75809](https://github.com/flutter/flutter/pull/75809) Apply bottom margin to FABs that have been boosted into the Safe Area (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[75813](https://github.com/flutter/flutter/pull/75813) Audit and update deprecation warnings (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75873](https://github.com/flutter/flutter/pull/75873) Revert "Removed ButtonBar from AlertDialog" (cla: yes, f: material design, framework)
[75899](https://github.com/flutter/flutter/pull/75899) Adding checkbox demo (cla: yes, f: material design, framework)
[75903](https://github.com/flutter/flutter/pull/75903) deprecated consistency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[75937](https://github.com/flutter/flutter/pull/75937) [flutter_releases] Flutter Framework 1.26.0-17.6.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75967](https://github.com/flutter/flutter/pull/75967) [TextSelectionTheme] improve docs (cla: yes, f: material design, framework, waiting for tree to go green)
[76013](https://github.com/flutter/flutter/pull/76013) Added OutlinedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76134](https://github.com/flutter/flutter/pull/76134) Revert "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76146](https://github.com/flutter/flutter/pull/76146) Added clearSnackBars method to ScaffoldMessengerState (cla: yes, f: material design, framework, waiting for tree to go green)
[76159](https://github.com/flutter/flutter/pull/76159) Remove "unnecessary" imports. (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[76162](https://github.com/flutter/flutter/pull/76162) Const constructor audit. (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[76167](https://github.com/flutter/flutter/pull/76167) Reland: Removed ButtonBar from AlertDialog #75676 (cla: yes, f: material design, framework)
[76173](https://github.com/flutter/flutter/pull/76173) Scrollbar updates for native Android behavior (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[76221](https://github.com/flutter/flutter/pull/76221) Added ElevatedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76238](https://github.com/flutter/flutter/pull/76238) Reland: Removed ButtonBar from AlertDialog #75676 (#76167) (cla: yes, f: material design, framework)
[76246](https://github.com/flutter/flutter/pull/76246) Removed ButtonBar from the Scaffold and About widgets (cla: yes, f: material design, framework)
[76251](https://github.com/flutter/flutter/pull/76251) Add missing widget of the week video links to API docs (cla: yes, f: material design, framework, waiting for tree to go green)
[76272](https://github.com/flutter/flutter/pull/76272) Add assertion of recordable list (cla: yes, f: material design, framework, waiting for tree to go green)
[76339](https://github.com/flutter/flutter/pull/76339) Add fix for BottomNavigationBarItem.title -> label (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[76343](https://github.com/flutter/flutter/pull/76343) Added the ability to bring up the date picker dialogs in calendar or text input only mode. (cla: yes, f: material design, framework)
[76387](https://github.com/flutter/flutter/pull/76387) Refactor tabbar code sample (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[76493](https://github.com/flutter/flutter/pull/76493) Add menuMaxHeight for DropdownButton (cla: yes, f: material design, framework, waiting for tree to go green)
[76532](https://github.com/flutter/flutter/pull/76532) [Fonts] Improve update_icons script (cla: yes, f: material design, framework, team)
[76607](https://github.com/flutter/flutter/pull/76607) [Fonts] Update material icons (cla: yes, f: material design, framework)
[76627](https://github.com/flutter/flutter/pull/76627) Revert "fixes TextInputFormatter gets wrong old value of a selection β¦ (cla: yes, f: cupertino, f: material design, framework)
[76641](https://github.com/flutter/flutter/pull/76641) Hide selection handles from semantics (cla: yes, f: material design, framework)
[76653](https://github.com/flutter/flutter/pull/76653) Reland "fixes TextInputFormatter gets wrong old value of a selection" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[76656](https://github.com/flutter/flutter/pull/76656) [web] Arrow keys change selected item in dropdown (cla: yes, f: focus, f: material design, framework, platform-web, waiting for tree to go green)
[76691](https://github.com/flutter/flutter/pull/76691) [Fonts] Sort material icons (cla: yes, f: material design, framework, team)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[76745](https://github.com/flutter/flutter/pull/76745) Toggleable Refactor (cla: yes, f: material design, framework, waiting for tree to go green)
[76764](https://github.com/flutter/flutter/pull/76764) Fix DropdownButton crash when viewport size is too small for the entirety of the menu's height (cla: yes, f: material design, framework, waiting for tree to go green)
[76810](https://github.com/flutter/flutter/pull/76810) Removed BottomNavigationBar accentColor dependency (cla: yes, f: material design, framework)
[76877](https://github.com/flutter/flutter/pull/76877) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework)
[76892](https://github.com/flutter/flutter/pull/76892) Reland "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76904](https://github.com/flutter/flutter/pull/76904) Revert "Removed CheckboxListTile accentColor dependency" (cla: yes, f: material design, framework)
[76906](https://github.com/flutter/flutter/pull/76906) Removed RadioListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76908](https://github.com/flutter/flutter/pull/76908) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76909](https://github.com/flutter/flutter/pull/76909) Removed SwitchListTile accentColor dependency (cla: yes, f: material design, framework)
[76992](https://github.com/flutter/flutter/pull/76992) Sort icon last (cla: yes, f: material design, framework)
[77001](https://github.com/flutter/flutter/pull/77001) Add TextLeadingDistribution to TextStyle (cla: yes, f: material design, framework, waiting for tree to go green)
[77004](https://github.com/flutter/flutter/pull/77004) Removed ListTile accentColor dependency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[77022](https://github.com/flutter/flutter/pull/77022) SliverAppBar default backwards compatibility fix (cla: yes, f: material design, framework, waiting for tree to go green)
[77027](https://github.com/flutter/flutter/pull/77027) Enable missing_whitespace_between_adjacent_strings (cla: yes, f: material design, framework, team, tool)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77068](https://github.com/flutter/flutter/pull/77068) Revert "Toggable Refactor" (cla: yes, f: material design, framework)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77263](https://github.com/flutter/flutter/pull/77263) Re-land "Toggable Refactor (#76745)" (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77286](https://github.com/flutter/flutter/pull/77286) Revert "[showModalBottomSheet] fix: showModalBottomSheet does not mov⦠(cla: yes, f: material design, framework, waiting for tree to go green)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77410](https://github.com/flutter/flutter/pull/77410) Fix missing root Scaffold check in ScaffoldMessenger (cla: yes, f: material design, f: routes, framework, severe: crash, waiting for tree to go green)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
[77427](https://github.com/flutter/flutter/pull/77427) Declare NavigationRailDestination.label as non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77652](https://github.com/flutter/flutter/pull/77652) Removed MaterialApp accentColor dependency. (cla: yes, f: material design, framework)
[77666](https://github.com/flutter/flutter/pull/77666) DropdownItems with a null value should still display its child (cla: yes, f: material design, framework, waiting for tree to go green)
[77732](https://github.com/flutter/flutter/pull/77732) Removed Stepper accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[77739](https://github.com/flutter/flutter/pull/77739) [DatePicker] Don't jump to the current month (cla: yes, f: material design, framework, waiting for tree to go green)
[77744](https://github.com/flutter/flutter/pull/77744) Removed PaginatedDataTable accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77751](https://github.com/flutter/flutter/pull/77751) Refactor: Move mouse cursor classes to "services" package (cla: yes, f: material design, framework, waiting for tree to go green)
[77754](https://github.com/flutter/flutter/pull/77754) Add mouseCursor, onEnter, and onExit to TextSpan (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[77769](https://github.com/flutter/flutter/pull/77769) [FloatingActionButtonLocation] Avoid docked FAB to be clipped by the software keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[77793](https://github.com/flutter/flutter/pull/77793) [FloatingActionButtonLocation] Add spacing between placement entries in documentation (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77837](https://github.com/flutter/flutter/pull/77837) non-breaking changes recommended by prefer_mixin lint (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77844](https://github.com/flutter/flutter/pull/77844) Fix some issues flagged by unawaited_futures lint (cla: yes, f: material design, framework, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77859](https://github.com/flutter/flutter/pull/77859) Do not replace text with semantics labels in selectable text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[77863](https://github.com/flutter/flutter/pull/77863) Autocomplete dartpad examples fix (cla: yes, f: material design, framework)
[77879](https://github.com/flutter/flutter/pull/77879) [State Restoration] Material Date Picker (a: state restoration, cla: yes, f: date/time picker, f: material design, framework, waiting for tree to go green)
[77881](https://github.com/flutter/flutter/pull/77881) Add minWidth constraint to RawChip when materialTapTargetSize is padded (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[77884](https://github.com/flutter/flutter/pull/77884) Removed RefreshIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77933](https://github.com/flutter/flutter/pull/77933) Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
[77976](https://github.com/flutter/flutter/pull/77976) Removed ProgressIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77997](https://github.com/flutter/flutter/pull/77997) Removed TabPageSelector accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77999](https://github.com/flutter/flutter/pull/77999) Removed InputDecorator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78004](https://github.com/flutter/flutter/pull/78004) Fix documentation for Scrollbar.radius (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[78018](https://github.com/flutter/flutter/pull/78018) Fixed Buttons with icon RenderFlex overflow (cla: yes, f: material design, framework)
[78051](https://github.com/flutter/flutter/pull/78051) Fix bug in ButtonStyle.lerp(), in _LerpSides (cla: yes, f: material design, framework, waiting for tree to go green)
[78281](https://github.com/flutter/flutter/pull/78281) Added iconColor and textColor properties to ExpansionTile (cla: yes, f: material design, framework)
[78296](https://github.com/flutter/flutter/pull/78296) Removed FloatingActionButton accentColor dependency. (cla: yes, f: material design, framework)
[78302](https://github.com/flutter/flutter/pull/78302) Change the material docs link (cla: yes, f: material design, framework, waiting for tree to go green)
[78311](https://github.com/flutter/flutter/pull/78311) [Fonts] Update material icons (cla: yes, f: material design, framework)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78371](https://github.com/flutter/flutter/pull/78371) Removed accentTextTheme references from Typography API doc (cla: yes, f: material design, framework)
[78375](https://github.com/flutter/flutter/pull/78375) Removed accentColor refs from API docs (cla: yes, f: material design, framework)
[78378](https://github.com/flutter/flutter/pull/78378) Removed accentColor and accentTextTheme dependencies from flutter_gallery (cla: yes, f: material design, team, waiting for tree to go green)
[78395](https://github.com/flutter/flutter/pull/78395) fix the position of popup menu when have unsafe area (cla: yes, f: material design, framework, waiting for tree to go green)
[78428](https://github.com/flutter/flutter/pull/78428) Include validation for DatePicker and DateRangePicker inputOnly mode (cla: yes, f: date/time picker, f: material design, framework)
[78449](https://github.com/flutter/flutter/pull/78449) Remove accentColor et al. from tests (cla: yes, f: material design, framework, team)
[78450](https://github.com/flutter/flutter/pull/78450) Add restorationId to Material/CupertinoPage (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78478](https://github.com/flutter/flutter/pull/78478) Fix error when choose noon on time picker (cla: yes, f: material design, framework, waiting for tree to go green)
[78484](https://github.com/flutter/flutter/pull/78484) Clean up ignores that are not ignoring anything (a: accessibility, cla: yes, f: cupertino, f: material design, framework)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78501](https://github.com/flutter/flutter/pull/78501) Remove whitespace directionality formatter (cla: yes, f: material design, framework, waiting for tree to go green)
[78506](https://github.com/flutter/flutter/pull/78506) [State Restoration] Material DateRangePicker, adds some general state restoration tests (a: state restoration, cla: yes, f: date/time picker, f: material design, framework)
[78523](https://github.com/flutter/flutter/pull/78523) Custom PopupMenuItem padding (cla: yes, f: material design, framework)
[78574](https://github.com/flutter/flutter/pull/78574) Removed GridTileBar accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78576](https://github.com/flutter/flutter/pull/78576) Removed DayPicker dependence on accentColor. (cla: yes, f: material design, framework, waiting for tree to go green)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
[78633](https://github.com/flutter/flutter/pull/78633) Fixes AlertDialog and SimpleDialog to not merge their content semantics (cla: yes, f: material design, framework, waiting for tree to go green)
[78658](https://github.com/flutter/flutter/pull/78658) Add fix for RectangularSliderTrackShape (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78663](https://github.com/flutter/flutter/pull/78663) Remove "unnecessary" imports in packages/flutter/lib. (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78672](https://github.com/flutter/flutter/pull/78672) Add fixes for [InputDecoration, InputDecorationTheme] hasFloatingPlaceholder -> floatingLabelBehavior (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78731](https://github.com/flutter/flutter/pull/78731) Add MaterialStateBorderSide.resolveWith (cla: yes, f: material design, framework)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78771](https://github.com/flutter/flutter/pull/78771) Removed TimePicker dependence on accentTextTheme. (cla: yes, f: material design, framework)
[78815](https://github.com/flutter/flutter/pull/78815) Automatically activate testfield in macOS when receives accessibility⦠(cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78825](https://github.com/flutter/flutter/pull/78825) Revert "Fixed Buttons with icon RenderFlex overflow" (cla: yes, f: material design, framework, waiting for tree to go green)
[78897](https://github.com/flutter/flutter/pull/78897) Add dart Fix for TextSelectionThemeData (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78919](https://github.com/flutter/flutter/pull/78919) Fix rendereditable to check the latest text before setting the selection (cla: yes, f: material design, framework, waiting for tree to go green)
[78928](https://github.com/flutter/flutter/pull/78928) change all dynamic slot to Object type (cla: yes, f: cupertino, f: material design, framework)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[79003](https://github.com/flutter/flutter/pull/79003) [flutter] use null aware operators for function invocations (cla: yes, f: material design, framework, waiting for tree to go green)
[79009](https://github.com/flutter/flutter/pull/79009) Updated TimePickerThemeData API doc (cla: yes, f: material design, framework, waiting for tree to go green)
[79024](https://github.com/flutter/flutter/pull/79024) Removed the built-in overlay from ReorderableListView. (cla: yes, f: material design, framework, will affect goldens)
[79027](https://github.com/flutter/flutter/pull/79027) [Fonts] Remove update_icons TODO (cla: yes, f: material design, framework, team, waiting for tree to go green)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79053](https://github.com/flutter/flutter/pull/79053) Revert "Removed accentColor dependency from ExpansionTile" (cla: yes, f: material design, framework, waiting for tree to go green)
[79058](https://github.com/flutter/flutter/pull/79058) Revert "[Fonts] Update material icons (#78311)" (cla: yes, f: material design, framework)
[79085](https://github.com/flutter/flutter/pull/79085) Redo fix for button.icon layout overflow (cla: yes, f: material design, framework)
[79193](https://github.com/flutter/flutter/pull/79193) docs: add an example to ReorderableListView.builder (cla: yes, f: material design, framework)
[79239](https://github.com/flutter/flutter/pull/79239) Remove references to @required in favor of the `required` keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[79299](https://github.com/flutter/flutter/pull/79299) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79300](https://github.com/flutter/flutter/pull/79300) Revert "Let InkWell/Ink/ancestor support GlobalKey so that splash doe⦠(cla: yes, f: material design, framework)
[79352](https://github.com/flutter/flutter/pull/79352) add missing trailing commas (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[79364](https://github.com/flutter/flutter/pull/79364) [Reland][Fonts] Update material icons (cla: yes, f: material design, framework)
[79434](https://github.com/flutter/flutter/pull/79434) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79484](https://github.com/flutter/flutter/pull/79484) Properly position the built-in drag handles on horizontal ReorderableListViews. (cla: yes, f: material design, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79489](https://github.com/flutter/flutter/pull/79489) Fix length formatter typo (cla: yes, f: material design, framework, waiting for tree to go green)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79506](https://github.com/flutter/flutter/pull/79506) `enterText` to move the caret to the end (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[79562](https://github.com/flutter/flutter/pull/79562) remove unnecessary trailing commas (cla: yes, f: cupertino, f: material design, framework)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79654](https://github.com/flutter/flutter/pull/79654) Revert "`enterText` to move the caret to the end" (a: tests, cla: yes, f: material design, framework)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79816](https://github.com/flutter/flutter/pull/79816) Fix an NNBD error in the Gallery text form field demo (cla: yes, f: material design, team, waiting for tree to go green)
[79828](https://github.com/flutter/flutter/pull/79828) Revert "Fix error when choose noon on time picker (#78478)" (cla: yes, f: material design, framework)
[79829](https://github.com/flutter/flutter/pull/79829) Redo Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
### a: tests - 69 pull request(s)
[74446](https://github.com/flutter/flutter/pull/74446) Don't leak exceptions thrown by message channels (a: tests, cla: yes, framework, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74854](https://github.com/flutter/flutter/pull/74854) always pass filterQuality specified in the Image widget to canvas (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)
[74856](https://github.com/flutter/flutter/pull/74856) driver nnbd (a: tests, cla: yes, framework, team)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[75030](https://github.com/flutter/flutter/pull/75030) Revert "NNBD integration_test" (a: tests, cla: yes, framework, team)
[75049](https://github.com/flutter/flutter/pull/75049) Removed the "new" keyword from the Flutter_test examples (a: tests, cla: yes, framework)
[75074](https://github.com/flutter/flutter/pull/75074) Reland integration_test NNBD (a: tests, cla: yes, framework, team)
[75175](https://github.com/flutter/flutter/pull/75175) Make flutter_driver be usable from a null-safe app (a: tests, cla: yes, framework, waiting for tree to go green)
[75266](https://github.com/flutter/flutter/pull/75266) Revert "Make flutter_driver be usable from a null-safe app" (a: tests, cla: yes, framework)
[75269](https://github.com/flutter/flutter/pull/75269) Reland "Make flutter_driver be usable from a null-safe app (#75175)" (a: tests, cla: yes, framework, waiting for tree to go green)
[75271](https://github.com/flutter/flutter/pull/75271) Add test for driver test organisation (a: tests, cla: yes, framework, waiting for tree to go green)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75317](https://github.com/flutter/flutter/pull/75317) Revert "Add test for driver test organisation" (a: tests, cla: yes, framework)
[75343](https://github.com/flutter/flutter/pull/75343) More null-safety fixes for flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75603](https://github.com/flutter/flutter/pull/75603) Widen getText support for RichText with multiple text spans in driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75769](https://github.com/flutter/flutter/pull/75769) fix(flutter_driver): Properly declare socket as nullable (a: tests, cla: yes, framework, waiting for tree to go green)
[75894](https://github.com/flutter/flutter/pull/75894) Fix FocusManager constructor (a: tests, cla: yes, framework)
[75945](https://github.com/flutter/flutter/pull/75945) [web] Treeshake keymaps for web (4% code size reduction in hello world) (a: tests, cla: yes, framework, waiting for tree to go green)
[76157](https://github.com/flutter/flutter/pull/76157) Remove "unnecessary" imports in flutter_test (a: tests, cla: yes, framework, waiting for tree to go green)
[76158](https://github.com/flutter/flutter/pull/76158) Remove "unnecessary" imports in flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[76174](https://github.com/flutter/flutter/pull/76174) Use a null default skip value in testWidgets so it can inherit the group's skip flag (a: tests, cla: yes, framework, waiting for tree to go green)
[77014](https://github.com/flutter/flutter/pull/77014) Expose the diff from ComparisonResult (a: tests, cla: yes, framework, waiting for tree to go green)
[77028](https://github.com/flutter/flutter/pull/77028) Turn on iOS podspec linting in test (a: tests, cla: yes, t: xcode, team)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77090](https://github.com/flutter/flutter/pull/77090) Add instructions to integration_test example README (a: tests, cla: yes, framework, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77386](https://github.com/flutter/flutter/pull/77386) Roll Engine from 299eb3e710c1 to 67abe7f9a9e4 (13 revisions) (a: tests, cla: yes, engine, framework)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77454](https://github.com/flutter/flutter/pull/77454) Fix a legacy TODO (a: tests, cla: yes, framework, team, waiting for tree to go green)
[77825](https://github.com/flutter/flutter/pull/77825) Make LocalFileComparator.compare easier to override (a: tests, cla: yes, framework, waiting for tree to go green)
[77837](https://github.com/flutter/flutter/pull/77837) non-breaking changes recommended by prefer_mixin lint (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[78055](https://github.com/flutter/flutter/pull/78055) [integration_test] delay for at least one frame timing. (a: tests, cla: yes, framework, waiting for tree to go green)
[78263](https://github.com/flutter/flutter/pull/78263) Remove keyLabel and debugName from Logical/PhysicalKeyboardKey (a: tests, cla: yes, framework, team)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78493](https://github.com/flutter/flutter/pull/78493) Clean up ignores that are not ignoring anything (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[78584](https://github.com/flutter/flutter/pull/78584) Revert "Fix a legacy TODO" (a: tests, cla: yes, framework, team)
[78630](https://github.com/flutter/flutter/pull/78630) Revert "Fix a legacy TODO (#77454)" (#78584) (a: tests, cla: yes, framework, team)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[79005](https://github.com/flutter/flutter/pull/79005) Revert "Remove keyLabel and debugName from Logical/PhysicalKeyboardKey" (a: tests, cla: yes, framework, team)
[79034](https://github.com/flutter/flutter/pull/79034) [flutter_test] make showKeyboard respect finder's skipOffstage value (a: tests, cla: yes, framework, waiting for tree to go green)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79061](https://github.com/flutter/flutter/pull/79061) Refactor text editing test APIs (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79090](https://github.com/flutter/flutter/pull/79090) Add timeline summary entries to capture vsync frame lag (a: tests, cla: yes, framework, waiting for tree to go green)
[79099](https://github.com/flutter/flutter/pull/79099) [versions] roll to latest test (a: tests, cla: yes, framework, team)
[79100](https://github.com/flutter/flutter/pull/79100) Make LogicalKeyboardKey.keyLabel a getter and better (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79217](https://github.com/flutter/flutter/pull/79217) Revert "Make LogicalKeyboardKey.keyLabel a getter and better" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[79302](https://github.com/flutter/flutter/pull/79302) Reland Make LogicalKeyboardKey.keyLabel a getter and better #79100 (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79310](https://github.com/flutter/flutter/pull/79310) Always write full timeline before summary (a: tests, cla: yes, framework, team)
[79407](https://github.com/flutter/flutter/pull/79407) Rolls isKeyboardKey engine change with fix (a: accessibility, a: tests, cla: yes, engine, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79506](https://github.com/flutter/flutter/pull/79506) `enterText` to move the caret to the end (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[79654](https://github.com/flutter/flutter/pull/79654) Revert "`enterText` to move the caret to the end" (a: tests, cla: yes, f: material design, framework)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
[79959](https://github.com/flutter/flutter/pull/79959) Unblock roll by reverting #79061 (a: tests, cla: yes, framework, team)
### f: cupertino - 57 pull request(s)
[72828](https://github.com/flutter/flutter/pull/72828) Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74768](https://github.com/flutter/flutter/pull/74768) Use the shortcuts temporary solution only on web (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74805](https://github.com/flutter/flutter/pull/74805) [State Restoration] CupertinoModalPopupRoute (cla: yes, f: cupertino, framework, waiting for tree to go green)
[74826](https://github.com/flutter/flutter/pull/74826) Cherrypick Use the shortcuts temporary solution only on web (#74768) (cla: yes, f: cupertino, f: material design, framework)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[75005](https://github.com/flutter/flutter/pull/75005) Remove "unnecessary" imports in material (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75006](https://github.com/flutter/flutter/pull/75006) Remove "unnecessary" imports in cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75287](https://github.com/flutter/flutter/pull/75287) Add fix for maxEnforced -> maxEnforcement (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75541](https://github.com/flutter/flutter/pull/75541) fixes TextInputFormatter gets wrong old value of a selection (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75549](https://github.com/flutter/flutter/pull/75549) Document that a CupertinoApp isn't necessary for an iOS app (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75604](https://github.com/flutter/flutter/pull/75604) Reland #74722 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75670](https://github.com/flutter/flutter/pull/75670) CupertinoPageTransition Optimizations (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[76278](https://github.com/flutter/flutter/pull/76278) Remove a14n todos (cla: yes, f: cupertino, framework)
[76327](https://github.com/flutter/flutter/pull/76327) Keep the selection after 'Copy' pressed on iOS. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[76339](https://github.com/flutter/flutter/pull/76339) Add fix for BottomNavigationBarItem.title -> label (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[76627](https://github.com/flutter/flutter/pull/76627) Revert "fixes TextInputFormatter gets wrong old value of a selection β¦ (cla: yes, f: cupertino, f: material design, framework)
[76653](https://github.com/flutter/flutter/pull/76653) Reland "fixes TextInputFormatter gets wrong old value of a selection" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[77026](https://github.com/flutter/flutter/pull/77026) Change some dynamics to Object? and document slot better (cla: yes, f: cupertino, framework, waiting for tree to go green)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
[77754](https://github.com/flutter/flutter/pull/77754) Add mouseCursor, onEnter, and onExit to TextSpan (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77864](https://github.com/flutter/flutter/pull/77864) ShaderMask on web for CupertinoContextMenu (cla: yes, f: cupertino, framework)
[78058](https://github.com/flutter/flutter/pull/78058) Fix CupertinoTextField incorrect background color when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[78140](https://github.com/flutter/flutter/pull/78140) CupertinoTextField to show disabled background color when decoration is null (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78202](https://github.com/flutter/flutter/pull/78202) Dedup CupertinoAlertDialog and CupertinoActionSheet source code (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78450](https://github.com/flutter/flutter/pull/78450) Add restorationId to Material/CupertinoPage (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78484](https://github.com/flutter/flutter/pull/78484) Clean up ignores that are not ignoring anything (a: accessibility, cla: yes, f: cupertino, f: material design, framework)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
[78663](https://github.com/flutter/flutter/pull/78663) Remove "unnecessary" imports in packages/flutter/lib. (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78815](https://github.com/flutter/flutter/pull/78815) Automatically activate testfield in macOS when receives accessibility⦠(cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78928](https://github.com/flutter/flutter/pull/78928) change all dynamic slot to Object type (cla: yes, f: cupertino, f: material design, framework)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[79299](https://github.com/flutter/flutter/pull/79299) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79434](https://github.com/flutter/flutter/pull/79434) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79562](https://github.com/flutter/flutter/pull/79562) remove unnecessary trailing commas (cla: yes, f: cupertino, f: material design, framework)
[79620](https://github.com/flutter/flutter/pull/79620) update CupertinoPicker.selectionOverlay to nullable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
[79842](https://github.com/flutter/flutter/pull/79842) fix cupertino refresh control style (cla: yes, f: cupertino, framework, waiting for tree to go green)
### a: accessibility - 45 pull request(s)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75705](https://github.com/flutter/flutter/pull/75705) Remove "unnecessary" imports in tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75813](https://github.com/flutter/flutter/pull/75813) Audit and update deprecation warnings (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75949](https://github.com/flutter/flutter/pull/75949) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75950](https://github.com/flutter/flutter/pull/75950) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75952](https://github.com/flutter/flutter/pull/75952) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[76162](https://github.com/flutter/flutter/pull/76162) Const constructor audit. (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[76275](https://github.com/flutter/flutter/pull/76275) Remove one TODO (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[76415](https://github.com/flutter/flutter/pull/76415) [devicelab] Separate build and test from Flutter gallery tests (a: accessibility, cla: yes, team, waiting for tree to go green)
[77024](https://github.com/flutter/flutter/pull/77024) Adds set text semantics action to render editable (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77086](https://github.com/flutter/flutter/pull/77086) Revert "[devicelab] Separate build and test from Flutter gallery tests" (a: accessibility, cla: yes, team)
[77087](https://github.com/flutter/flutter/pull/77087) Enable file_names and package_names lints (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77263](https://github.com/flutter/flutter/pull/77263) Re-land "Toggable Refactor (#76745)" (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77287](https://github.com/flutter/flutter/pull/77287) Fix semantics node id overflow issue (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77295](https://github.com/flutter/flutter/pull/77295) disable semantics test for adding Set Text action in engine (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77881](https://github.com/flutter/flutter/pull/77881) Add minWidth constraint to RawChip when materialTapTargetSize is padded (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[77942](https://github.com/flutter/flutter/pull/77942) Refactor: use one subprojects property (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)
[77956](https://github.com/flutter/flutter/pull/77956) [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78355](https://github.com/flutter/flutter/pull/78355) Revert "[devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
[78361](https://github.com/flutter/flutter/pull/78361) Reland [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[78484](https://github.com/flutter/flutter/pull/78484) Clean up ignores that are not ignoring anything (a: accessibility, cla: yes, f: cupertino, f: material design, framework)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
[78822](https://github.com/flutter/flutter/pull/78822) Take screenshot when drive fails (a: accessibility, cla: yes, team, team: flakes, tool)
[79295](https://github.com/flutter/flutter/pull/79295) Enable android semantics integration test (a: accessibility, cla: yes, team, waiting for tree to go green)
[79296](https://github.com/flutter/flutter/pull/79296) skip android semantics integration test to enable engine roll (a: accessibility, cla: yes, team, waiting for tree to go green)
[79299](https://github.com/flutter/flutter/pull/79299) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79352](https://github.com/flutter/flutter/pull/79352) add missing trailing commas (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[79407](https://github.com/flutter/flutter/pull/79407) Rolls isKeyboardKey engine change with fix (a: accessibility, a: tests, cla: yes, engine, framework, waiting for tree to go green)
[79419](https://github.com/flutter/flutter/pull/79419) one more path (a: accessibility, cla: yes, team)
[79421](https://github.com/flutter/flutter/pull/79421) Add missing io import to complex_layout_semantics_perf (a: accessibility, cla: yes, team)
[79434](https://github.com/flutter/flutter/pull/79434) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79903](https://github.com/flutter/flutter/pull/79903) Revert "Reland [devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
### a: null-safety - 41 pull request(s)
[74853](https://github.com/flutter/flutter/pull/74853) Migrate flutter_goldens to NNBD (a: null-safety, cla: yes, framework, team, waiting for tree to go green)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[78836](https://github.com/flutter/flutter/pull/78836) Make version and time in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78843](https://github.com/flutter/flutter/pull/78843) Make language_version in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78845](https://github.com/flutter/flutter/pull/78845) Migrate flutter_tool tool helper files to null safety (a: null-safety, cla: yes, team, tool)
[78892](https://github.com/flutter/flutter/pull/78892) Migrate command_help to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78893](https://github.com/flutter/flutter/pull/78893) Migrate signals.dart to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78896](https://github.com/flutter/flutter/pull/78896) Migrate flutter_tools file_system to null safety (a: null-safety, cla: yes, team, tool)
[78901](https://github.com/flutter/flutter/pull/78901) Migrate flutter_tools os.dart to null safety (a: null-safety, cla: yes, team, tool)
[78922](https://github.com/flutter/flutter/pull/78922) Migrate flutter_tool net.dart to null safety (a: null-safety, cla: yes, team, tool)
[78923](https://github.com/flutter/flutter/pull/78923) Migrate android_console to null safety (a: null-safety, cla: yes, team, tool)
[78932](https://github.com/flutter/flutter/pull/78932) Migrate error_handling_io to null safety (a: null-safety, cla: yes, team, tool)
[78934](https://github.com/flutter/flutter/pull/78934) Migrate deferred_components_validator to null safety (a: null-safety, cla: yes, team, tool)
[78939](https://github.com/flutter/flutter/pull/78939) Migrate localizations_utils to null safety (a: null-safety, cla: yes, team, tool)
[78942](https://github.com/flutter/flutter/pull/78942) Migrate visual_studio to null safety (a: null-safety, cla: yes, team, tool)
[78943](https://github.com/flutter/flutter/pull/78943) Migrate platform_plugins to null safety (a: null-safety, cla: yes, team, tool)
[78944](https://github.com/flutter/flutter/pull/78944) Migrate flutter_project_metadata to null safety (a: null-safety, cla: yes, team, tool)
[78949](https://github.com/flutter/flutter/pull/78949) Migrate device_port_forwarder to null safety (a: null-safety, cla: yes, team, tool)
[79016](https://github.com/flutter/flutter/pull/79016) Split globals.dart into null safe and unsafe libraries (a: null-safety, cla: yes, team, tool)
[79108](https://github.com/flutter/flutter/pull/79108) Migrate gen_l10n_types to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79111](https://github.com/flutter/flutter/pull/79111) Migrate file_store to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79342](https://github.com/flutter/flutter/pull/79342) Migrate code_signing to null safety (a: null-safety, cla: yes, team, tool)
[79346](https://github.com/flutter/flutter/pull/79346) Migrate event_printer and test_config to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79460](https://github.com/flutter/flutter/pull/79460) [Stocks App] NNBD migration, refresh gen-l10n (a: internationalization, a: null-safety, cla: yes, team, waiting for tree to go green)
[79469](https://github.com/flutter/flutter/pull/79469) Migrate build_info to null safety (a: null-safety, cla: yes, team, tool)
[79504](https://github.com/flutter/flutter/pull/79504) Migrate android_studio to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79525](https://github.com/flutter/flutter/pull/79525) Migrate analysis to null safety (a: null-safety, cla: yes, team, tool)
[79587](https://github.com/flutter/flutter/pull/79587) Migrate fingerprint to null safety (a: null-safety, cla: yes, team, tool)
[79611](https://github.com/flutter/flutter/pull/79611) Migrate android_sdk and application_package to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79682](https://github.com/flutter/flutter/pull/79682) Migrate doctor_validator to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79801](https://github.com/flutter/flutter/pull/79801) Migrate tools chrome.dart to null safety (a: null-safety, cla: yes, team, tool)
[79804](https://github.com/flutter/flutter/pull/79804) Migrate linux_doctor to null safety (a: null-safety, cla: yes, team, tool)
[79805](https://github.com/flutter/flutter/pull/79805) Migrate vscode to null safety (a: null-safety, cla: yes, team, tool)
[79806](https://github.com/flutter/flutter/pull/79806) Migrate android_workflow to null safety (a: null-safety, cla: yes, team, tool)
[79807](https://github.com/flutter/flutter/pull/79807) Migrate some workflows and doctor validators to null safety (a: null-safety, cla: yes, team, tool)
[79813](https://github.com/flutter/flutter/pull/79813) Migrate intellij_validator to null safety (a: null-safety, cla: yes, team, tool)
[79888](https://github.com/flutter/flutter/pull/79888) [web] Fix url strategy null safety (a: null-safety, cla: yes, f: routes, platform-web, waiting for tree to go green)
[79900](https://github.com/flutter/flutter/pull/79900) Move cache from globals to globals_null_migrated (a: null-safety, cla: yes, team, tool)
[79907](https://github.com/flutter/flutter/pull/79907) Migrate flutter_tool test/src/common to null safety (a: null-safety, cla: yes, team, tool)
[79908](https://github.com/flutter/flutter/pull/79908) Start migrating flutter_tools test src to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79917](https://github.com/flutter/flutter/pull/79917) Allow null Config.getValue() results (a: null-safety, cla: yes, team, tool)
### d: examples - 25 pull request(s)
[74415](https://github.com/flutter/flutter/pull/74415) Adding hero example (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74820](https://github.com/flutter/flutter/pull/74820) Remove "unnecessary" imports in examples (cla: yes, d: examples, team, waiting for tree to go green)
[74857](https://github.com/flutter/flutter/pull/74857) Migrate remaining examples to null-safety (cla: yes, d: examples, team, waiting for tree to go green)
[75022](https://github.com/flutter/flutter/pull/75022) Migrate driver tests in example/ to NNBD (cla: yes, d: examples, team, waiting for tree to go green)
[75161](https://github.com/flutter/flutter/pull/75161) Revert "Migrate driver tests in example/ to NNBD" (cla: yes, d: examples, team)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75264](https://github.com/flutter/flutter/pull/75264) Re-land "Migrate driver tests in example/ to NNBD (#75022)" (cla: yes, d: examples, team, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[76554](https://github.com/flutter/flutter/pull/76554) Build more integration tests during pre-submit (cla: yes, d: examples, team)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77093](https://github.com/flutter/flutter/pull/77093) Apply changes caused by https://github.com/flutter/flutter/pull/76662 (cla: yes, d: examples, team, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77327](https://github.com/flutter/flutter/pull/77327) Fix typo (cla: yes, d: examples, team)
[77606](https://github.com/flutter/flutter/pull/77606) [Docs] RouteObserver<PageRoute> cannot subscribe ModalRoute (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77868](https://github.com/flutter/flutter/pull/77868) Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77942](https://github.com/flutter/flutter/pull/77942) Refactor: use one subprojects property (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)
[78143](https://github.com/flutter/flutter/pull/78143) Update docs to reflect Null Safety (cla: yes, d: api docs, d: examples, documentation, framework)
[78623](https://github.com/flutter/flutter/pull/78623) Reverts "Implement dartPluginClass support for plugins #74469" (cla: yes, d: examples, team, tool)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79743](https://github.com/flutter/flutter/pull/79743) Update the `Dismissible` code sample (cla: yes, d: examples, framework, waiting for tree to go green)
### engine - 25 pull request(s)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75458](https://github.com/flutter/flutter/pull/75458) Revert "Roll Engine from 8076607c3ea3 to 6a2df7f1c9f6 (4 revisions)" (cla: yes, engine)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75804](https://github.com/flutter/flutter/pull/75804) [flutter_releases] Flutter Framework 1.26.0-17.5.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75937](https://github.com/flutter/flutter/pull/75937) [flutter_releases] Flutter Framework 1.26.0-17.6.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[76217](https://github.com/flutter/flutter/pull/76217) Revert "Roll Engine from 6993cb229b99 to 9bcb3bfb0ecb (6 revisions)" (cla: yes, engine)
[76381](https://github.com/flutter/flutter/pull/76381) Cherrypick engine to c53a160d7092ce4ec77f773d439a46881bc4b76d (cla: yes, engine)
[76385](https://github.com/flutter/flutter/pull/76385) Revert "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions)" (cla: yes, engine)
[76394](https://github.com/flutter/flutter/pull/76394) Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)" (cla: yes, engine, team)
[76403](https://github.com/flutter/flutter/pull/76403) Revert "Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)"" (cla: yes, engine, team)
[76637](https://github.com/flutter/flutter/pull/76637) [flutter_releases] Flutter 1.26.0-17.7.pre Beta Framework Cherrypicks (cla: yes, engine)
[76720](https://github.com/flutter/flutter/pull/76720) [flutter_releases] Flutter 1.26.0-17.8.pre Beta Framework Cherrypicks (cla: yes, engine)
[76793](https://github.com/flutter/flutter/pull/76793) Revert "Roll Engine from 93cb5dbbc700 to 867e51b76256 (3 revisions)" (cla: yes, engine)
[77154](https://github.com/flutter/flutter/pull/77154) enable build test, roll engine (cla: yes, engine, team, tool)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77204](https://github.com/flutter/flutter/pull/77204) Roll Engine from cd0e54348b61 to 72bbc5d92ce1 (cla: yes, engine)
[77386](https://github.com/flutter/flutter/pull/77386) Roll Engine from 299eb3e710c1 to 67abe7f9a9e4 (13 revisions) (a: tests, cla: yes, engine, framework)
[77840](https://github.com/flutter/flutter/pull/77840) Cherrypick engine to 711ab3fda05004ee5f6035f2a0bf099fca39a129 (cla: yes, engine)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[78474](https://github.com/flutter/flutter/pull/78474) [flutter_releases] Flutter Beta 2.1.0-12.2.pre Framework Cherrypicks (cla: yes, engine, tool)
[79002](https://github.com/flutter/flutter/pull/79002) Manual roll engine to d59a01d to b5e15d0 (15 commits) (cla: yes, engine, waiting for tree to go green, will affect goldens)
[79119](https://github.com/flutter/flutter/pull/79119) Revert "Roll Engine from b5e15d055d13 to 6f27f892d95e (27 revisions)" (cla: yes, engine)
[79407](https://github.com/flutter/flutter/pull/79407) Rolls isKeyboardKey engine change with fix (a: accessibility, a: tests, cla: yes, engine, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79953](https://github.com/flutter/flutter/pull/79953) Manually roll engine to 56b13559807bf4cb83d16c659757d6ae4f209490 (cla: yes, engine)
### platform-ios - 16 pull request(s)
[74777](https://github.com/flutter/flutter/pull/74777) Replace MockXcode with Xcode.test in unit tests (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[75163](https://github.com/flutter/flutter/pull/75163) Avoid iOS local networking dialog in integration tests (cla: yes, platform-ios, team, waiting for tree to go green)
[75351](https://github.com/flutter/flutter/pull/75351) Suggest precache instead of build when engine artifacts are missing (cla: yes, platform-ios, tool)
[75387](https://github.com/flutter/flutter/pull/75387) Install prebuilt iOS app only once (cla: yes, platform-ios, tool)
[76665](https://github.com/flutter/flutter/pull/76665) Move iOS framework thinning into the tool as assemble target (cla: yes, platform-ios, t: xcode, tool)
[76830](https://github.com/flutter/flutter/pull/76830) Add ephemeral iOS directory to put future generated files (cla: yes, platform-ios, tool, waiting for tree to go green)
[76833](https://github.com/flutter/flutter/pull/76833) Opt into CocoaPods parallel codesigning (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77007](https://github.com/flutter/flutter/pull/77007) Move iOS Flutter.framework thinning into copy assemble build target (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77329](https://github.com/flutter/flutter/pull/77329) Bitcode strip Flutter.framework in assemble build target (cla: yes, platform-ios, team, tool)
[77420](https://github.com/flutter/flutter/pull/77420) Add debug_second_compile_millis benchmark metric (cla: yes, platform-android, platform-ios, team, team: benchmark, waiting for tree to go green)
[77428](https://github.com/flutter/flutter/pull/77428) Add iOS archive codesign test (cla: yes, platform-ios, team, waiting for tree to go green)
[77664](https://github.com/flutter/flutter/pull/77664) Move iOS codesigning into assemble build target (cla: yes, platform-ios, t: xcode, tool)
[77756](https://github.com/flutter/flutter/pull/77756) Implement iOS app install deltas (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78085](https://github.com/flutter/flutter/pull/78085) Allow local networking Info.plist insertion to fail (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78592](https://github.com/flutter/flutter/pull/78592) Skip linking against Flutter for CocoaPods transitive dependencies (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[78823](https://github.com/flutter/flutter/pull/78823) Update Podfile.lock modified timestamp when pod install is run (cla: yes, platform-ios, tool, waiting for tree to go green)
### a: internationalization - 16 pull request(s)
[73964](https://github.com/flutter/flutter/pull/73964) Adds First/Last buttons to PaginatedDataTable (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75209](https://github.com/flutter/flutter/pull/75209) [gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified (a: internationalization, cla: yes, tool, waiting for tree to go green)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75346](https://github.com/flutter/flutter/pull/75346) Relands "[gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified" (a: internationalization, cla: yes, tool)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[76066](https://github.com/flutter/flutter/pull/76066) [flutter_tools] Avoid duplicated calls to l10n generation (a: internationalization, cla: yes, tool, waiting for tree to go green)
[76159](https://github.com/flutter/flutter/pull/76159) Remove "unnecessary" imports. (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78778](https://github.com/flutter/flutter/pull/78778) [gen-l10n] Remove need for ignoring two lints in generated code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[78975](https://github.com/flutter/flutter/pull/78975) [gen-l10n] Remove more ignores, conditionally generate some code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[79263](https://github.com/flutter/flutter/pull/79263) [gen-l10n] Add `nullable-getter` flag (a: internationalization, cla: yes, tool, waiting for tree to go green)
[79460](https://github.com/flutter/flutter/pull/79460) [Stocks App] NNBD migration, refresh gen-l10n (a: internationalization, a: null-safety, cla: yes, team, waiting for tree to go green)
### d: api docs - 13 pull request(s)
[74415](https://github.com/flutter/flutter/pull/74415) Adding hero example (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[76387](https://github.com/flutter/flutter/pull/76387) Refactor tabbar code sample (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77606](https://github.com/flutter/flutter/pull/77606) [Docs] RouteObserver<PageRoute> cannot subscribe ModalRoute (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77793](https://github.com/flutter/flutter/pull/77793) [FloatingActionButtonLocation] Add spacing between placement entries in documentation (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77861](https://github.com/flutter/flutter/pull/77861) Spelling standardization: implementer (cla: yes, d: api docs, waiting for tree to go green)
[77868](https://github.com/flutter/flutter/pull/77868) Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[78004](https://github.com/flutter/flutter/pull/78004) Fix documentation for Scrollbar.radius (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[78143](https://github.com/flutter/flutter/pull/78143) Update docs to reflect Null Safety (cla: yes, d: api docs, d: examples, documentation, framework)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
### t: xcode - 12 pull request(s)
[75822](https://github.com/flutter/flutter/pull/75822) Avoid duplicating Pods-Runner xcconfig #includes (cla: yes, t: xcode, tool, waiting for tree to go green)
[76665](https://github.com/flutter/flutter/pull/76665) Move iOS framework thinning into the tool as assemble target (cla: yes, platform-ios, t: xcode, tool)
[76833](https://github.com/flutter/flutter/pull/76833) Opt into CocoaPods parallel codesigning (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[76834](https://github.com/flutter/flutter/pull/76834) Stop trying to thin iOS App.framework (cla: yes, t: xcode, tool, waiting for tree to go green)
[77007](https://github.com/flutter/flutter/pull/77007) Move iOS Flutter.framework thinning into copy assemble build target (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77025](https://github.com/flutter/flutter/pull/77025) Update minimum required version to Xcode 12 (cla: yes, t: xcode, tool, waiting for tree to go green)
[77028](https://github.com/flutter/flutter/pull/77028) Turn on iOS podspec linting in test (a: tests, cla: yes, t: xcode, team)
[77664](https://github.com/flutter/flutter/pull/77664) Move iOS codesigning into assemble build target (cla: yes, platform-ios, t: xcode, tool)
[77756](https://github.com/flutter/flutter/pull/77756) Implement iOS app install deltas (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78085](https://github.com/flutter/flutter/pull/78085) Allow local networking Info.plist insertion to fail (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78272](https://github.com/flutter/flutter/pull/78272) Download platform artifacts from assemble if needed (cla: yes, t: gradle, t: xcode, tool, waiting for tree to go green)
[78592](https://github.com/flutter/flutter/pull/78592) Skip linking against Flutter for CocoaPods transitive dependencies (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
### documentation - 11 pull request(s)
[74415](https://github.com/flutter/flutter/pull/74415) Adding hero example (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[76387](https://github.com/flutter/flutter/pull/76387) Refactor tabbar code sample (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77606](https://github.com/flutter/flutter/pull/77606) [Docs] RouteObserver<PageRoute> cannot subscribe ModalRoute (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77793](https://github.com/flutter/flutter/pull/77793) [FloatingActionButtonLocation] Add spacing between placement entries in documentation (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77868](https://github.com/flutter/flutter/pull/77868) Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[78004](https://github.com/flutter/flutter/pull/78004) Fix documentation for Scrollbar.radius (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[78143](https://github.com/flutter/flutter/pull/78143) Update docs to reflect Null Safety (cla: yes, d: api docs, d: examples, documentation, framework)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
### f: scrolling - 11 pull request(s)
[73526](https://github.com/flutter/flutter/pull/73526) SliverAppBar Default Elevation Patch (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[75095](https://github.com/flutter/flutter/pull/75095) Fixed improper assertion of maxCrossAxisExtent (cla: yes, f: scrolling, framework)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[75764](https://github.com/flutter/flutter/pull/75764) ScrollController.jumpTo zero should not trigger the refresh indicator (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[76173](https://github.com/flutter/flutter/pull/76173) Scrollbar updates for native Android behavior (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[76312](https://github.com/flutter/flutter/pull/76312) add keyboardDismissBehavior into SingleChildScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
### platform-web - 9 pull request(s)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[76656](https://github.com/flutter/flutter/pull/76656) [web] Arrow keys change selected item in dropdown (cla: yes, f: focus, f: material design, framework, platform-web, waiting for tree to go green)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
[79888](https://github.com/flutter/flutter/pull/79888) [web] Fix url strategy null safety (a: null-safety, cla: yes, f: routes, platform-web, waiting for tree to go green)
### will affect goldens - 8 pull request(s)
[74760](https://github.com/flutter/flutter/pull/74760) Roll Engine from 5d3477eab415 to 72fbce3a2ccb (12 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74854](https://github.com/flutter/flutter/pull/74854) always pass filterQuality specified in the Image widget to canvas (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)
[75827](https://github.com/flutter/flutter/pull/75827) Roll Engine from cdc49c575b0b to b9ecd8aca650 (2 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[76352](https://github.com/flutter/flutter/pull/76352) Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[78058](https://github.com/flutter/flutter/pull/78058) Fix CupertinoTextField incorrect background color when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[79002](https://github.com/flutter/flutter/pull/79002) Manual roll engine to d59a01d to b5e15d0 (15 commits) (cla: yes, engine, waiting for tree to go green, will affect goldens)
[79024](https://github.com/flutter/flutter/pull/79024) Removed the built-in overlay from ReorderableListView. (cla: yes, f: material design, framework, will affect goldens)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
### a: desktop - 7 pull request(s)
[61221](https://github.com/flutter/flutter/pull/61221) [flutter_tools] Add ARM64 Linux host and cross-building option support (a: desktop, cla: yes, platform-linux, tool)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[76433](https://github.com/flutter/flutter/pull/76433) Turn on desktop and web integration tests for beta and stable (a: desktop, cla: yes, team, waiting for tree to go green)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[77228](https://github.com/flutter/flutter/pull/77228) Add Windows desktop files for manual tests (a: desktop, cla: yes, platform-windows, team)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
### team: flakes - 6 pull request(s)
[74378](https://github.com/flutter/flutter/pull/74378) Dump logs on failing devicelab test to recipe artifact location (cla: yes, team, team: flakes)
[76153](https://github.com/flutter/flutter/pull/76153) Do not fail if 9xth_percentile_memory_usage is not recorded (cla: yes, team, team: flakes, waiting for tree to go green)
[76838](https://github.com/flutter/flutter/pull/76838) Remove dart_plugin_registry_test timeouts (cla: yes, team, team: flakes, waiting for tree to go green)
[77192](https://github.com/flutter/flutter/pull/77192) Increase dart migrate integration test timeout (cla: yes, team, team: flakes, tool, waiting for tree to go green)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
[78822](https://github.com/flutter/flutter/pull/78822) Take screenshot when drive fails (a: accessibility, cla: yes, team, team: flakes, tool)
### a: text input - 6 pull request(s)
[74768](https://github.com/flutter/flutter/pull/74768) Use the shortcuts temporary solution only on web (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[77172](https://github.com/flutter/flutter/pull/77172) Support block delete with word and line modifiers (a: text input, cla: yes, framework, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79668](https://github.com/flutter/flutter/pull/79668) Fix typo: edition -> editing (a: text input, cla: yes, framework)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
### severe: API break - 5 pull request(s)
[73510](https://github.com/flutter/flutter/pull/73510) Reland "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73750](https://github.com/flutter/flutter/pull/73750) Remove deprecated BinaryMessages (cla: yes, framework, severe: API break, waiting for tree to go green)
[73751](https://github.com/flutter/flutter/pull/73751) Remove deprecated TypeMatcher class (cla: yes, framework, severe: API break, waiting for tree to go green)
[76331](https://github.com/flutter/flutter/pull/76331) Remove deprecated TypeMatcher (cla: yes, framework, severe: API break, team, waiting for tree to go green)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
### team: infra - 5 pull request(s)
[75179](https://github.com/flutter/flutter/pull/75179) Adopt subshard naming convention in build_tests (cla: yes, team, team: infra, waiting for tree to go green)
[75736](https://github.com/flutter/flutter/pull/75736) Compress module_test_ios xcresult (cla: yes, team, team: infra)
[78678](https://github.com/flutter/flutter/pull/78678) Update cluster. (cla: yes, team, team: infra)
[79332](https://github.com/flutter/flutter/pull/79332) Point gallery test data to FLUTTER_TEST_OUTPUTS_DIR (cla: yes, team, team: infra, waiting for tree to go green)
[79514](https://github.com/flutter/flutter/pull/79514) Take screenshot when startup perf test fails to run (cla: yes, team, team: infra, waiting for tree to go green)
### a: quality - 4 pull request(s)
[73526](https://github.com/flutter/flutter/pull/73526) SliverAppBar Default Elevation Patch (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[75809](https://github.com/flutter/flutter/pull/75809) Apply bottom margin to FABs that have been boosted into the Safe Area (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
### severe: new feature - 3 pull request(s)
[76192](https://github.com/flutter/flutter/pull/76192) [flutter_tools] Deferred components build system (cla: yes, severe: new feature, tool, waiting for tree to go green)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
### a: state restoration - 3 pull request(s)
[77879](https://github.com/flutter/flutter/pull/77879) [State Restoration] Material Date Picker (a: state restoration, cla: yes, f: date/time picker, f: material design, framework, waiting for tree to go green)
[78506](https://github.com/flutter/flutter/pull/78506) [State Restoration] Material DateRangePicker, adds some general state restoration tests (a: state restoration, cla: yes, f: date/time picker, f: material design, framework)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
### f: date/time picker - 3 pull request(s)
[77879](https://github.com/flutter/flutter/pull/77879) [State Restoration] Material Date Picker (a: state restoration, cla: yes, f: date/time picker, f: material design, framework, waiting for tree to go green)
[78428](https://github.com/flutter/flutter/pull/78428) Include validation for DatePicker and DateRangePicker inputOnly mode (cla: yes, f: date/time picker, f: material design, framework)
[78506](https://github.com/flutter/flutter/pull/78506) [State Restoration] Material DateRangePicker, adds some general state restoration tests (a: state restoration, cla: yes, f: date/time picker, f: material design, framework)
### platform-android - 2 pull request(s)
[76406](https://github.com/flutter/flutter/pull/76406) Do not show embedding warning for plugins when example app is missing (cla: yes, platform-android, tool, waiting for tree to go green)
[77420](https://github.com/flutter/flutter/pull/77420) Add debug_second_compile_millis benchmark metric (cla: yes, platform-android, platform-ios, team, team: benchmark, waiting for tree to go green)
### cp: 1.26 completed - 2 pull request(s)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75370](https://github.com/flutter/flutter/pull/75370) roll packages (cla: yes, cp: 1.26, cp: 1.26 completed, team, waiting for tree to go green)
### t: gradle - 2 pull request(s)
[78272](https://github.com/flutter/flutter/pull/78272) Download platform artifacts from assemble if needed (cla: yes, t: gradle, t: xcode, tool, waiting for tree to go green)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
### cp: 1.26 - 2 pull request(s)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75370](https://github.com/flutter/flutter/pull/75370) roll packages (cla: yes, cp: 1.26, cp: 1.26 completed, team, waiting for tree to go green)
### a: fidelity - 2 pull request(s)
[75809](https://github.com/flutter/flutter/pull/75809) Apply bottom margin to FABs that have been boosted into the Safe Area (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[76173](https://github.com/flutter/flutter/pull/76173) Scrollbar updates for native Android behavior (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
### tech-debt - 2 pull request(s)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
### f: routes - 2 pull request(s)
[77410](https://github.com/flutter/flutter/pull/77410) Fix missing root Scaffold check in ScaffoldMessenger (cla: yes, f: material design, f: routes, framework, severe: crash, waiting for tree to go green)
[79888](https://github.com/flutter/flutter/pull/79888) [web] Fix url strategy null safety (a: null-safety, cla: yes, f: routes, platform-web, waiting for tree to go green)
### f: gestures - 1 pull request(s)
[73042](https://github.com/flutter/flutter/pull/73042) Timer based pointer event resampling (cla: yes, f: gestures, framework)
### f: focus - 1 pull request(s)
[76656](https://github.com/flutter/flutter/pull/76656) [web] Arrow keys change selected item in dropdown (cla: yes, f: focus, f: material design, framework, platform-web, waiting for tree to go green)
### customer: crowd - 1 pull request(s)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
### platform-linux - 1 pull request(s)
[61221](https://github.com/flutter/flutter/pull/61221) [flutter_tools] Add ARM64 Linux host and cross-building option support (a: desktop, cla: yes, platform-linux, tool)
### platform-mac - 1 pull request(s)
[77316](https://github.com/flutter/flutter/pull/77316) Delete unzipped FlutterMacOS.framework before replacing artifact (cla: yes, platform-mac, tool, waiting for tree to go green)
### cp: 2.0 completed - 1 pull request(s)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
### platform-windows - 1 pull request(s)
[77228](https://github.com/flutter/flutter/pull/77228) Add Windows desktop files for manual tests (a: desktop, cla: yes, platform-windows, team)
### severe: crash - 1 pull request(s)
[77410](https://github.com/flutter/flutter/pull/77410) Fix missing root Scaffold check in ScaffoldMessenger (cla: yes, f: material design, f: routes, framework, severe: crash, waiting for tree to go green)
### cp: 2.0 - 1 pull request(s)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
### team: benchmark - 1 pull request(s)
[77420](https://github.com/flutter/flutter/pull/77420) Add debug_second_compile_millis benchmark metric (cla: yes, platform-android, platform-ios, team, team: benchmark, waiting for tree to go green)
### a: images - 1 pull request(s)
[79289](https://github.com/flutter/flutter/pull/79289) Drain socket before throwing (a: images, cla: yes, framework, waiting for tree to go green)
### a: existing-apps - 1 pull request(s)
[78259](https://github.com/flutter/flutter/pull/78259) Point "flutter build ipa --analyze-size" to archive app output (a: existing-apps, cla: yes, tool, waiting for tree to go green)
### a: error message - 1 pull request(s)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
## Merged PRs by labels for `flutter/engine`
### cla: yes - 985 pull request(s)
[21824](https://github.com/flutter/engine/pull/21824) Add DiffContext (cla: yes, waiting for tree to go green)
[23465](https://github.com/flutter/engine/pull/23465) Hardware Keyboard: Windows (cla: yes)
[23466](https://github.com/flutter/engine/pull/23466) Hardware keyboard: Web, embedder, and dart:ui (cla: yes, platform-ios, platform-web, waiting for tree to go green)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[23573](https://github.com/flutter/engine/pull/23573) Windows: Add CoreWindow implementation of FlutterWindowsView (Flutter#70205) (cla: yes, needs tests)
[23660](https://github.com/flutter/engine/pull/23660) Add a --linux shortcut to --target-os=linux (cla: yes)
[23674](https://github.com/flutter/engine/pull/23674) Fix argument specifier for g_warning() (cla: yes, waiting for tree to go green)
[23730](https://github.com/flutter/engine/pull/23730) Continue filling in the list of FontFeatures (cla: yes, waiting for tree to go green)
[23776](https://github.com/flutter/engine/pull/23776) unhide uitextinput when focused (cla: yes, platform-ios, waiting for tree to go green)
[23793](https://github.com/flutter/engine/pull/23793) fix video(texture) with opacity can not play issue (cla: yes, waiting for tree to go green)
[23800](https://github.com/flutter/engine/pull/23800) [canvaskit] fix text background, foreground, color; add text style tests (cla: yes)
[23870](https://github.com/flutter/engine/pull/23870) Wires up accessibility bridge in mac embedding (cla: yes)
[23906](https://github.com/flutter/engine/pull/23906) Increase logging in AngleSurfaceManager (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[23911](https://github.com/flutter/engine/pull/23911) Fix Android IO and Worker threads priority issue (cla: yes, platform-android, waiting for tree to go green)
[23931](https://github.com/flutter/engine/pull/23931) Ensures that hit testing only returns focusable nodes. (cla: yes, cp: 1.26, waiting for tree to go green)
[23934](https://github.com/flutter/engine/pull/23934) Remove libtxt styled runs benchmark (cla: yes, waiting for tree to go green)
[23948](https://github.com/flutter/engine/pull/23948) Grammatical mistake on pull request template (cla: yes, waiting for tree to go green)
[23955](https://github.com/flutter/engine/pull/23955) Fix "Buffer not large enough for pixels" by adding buffer.rewind() (cla: yes, platform-android, waiting for tree to go green)
[23960](https://github.com/flutter/engine/pull/23960) Roll Skia from f661ec788b14 to 798021ada347 (3 revisions) (cla: yes, waiting for tree to go green)
[23961](https://github.com/flutter/engine/pull/23961) [web] Fix flake due to shadow rendering difference on webkit (cla: yes, platform-web, waiting for tree to go green)
[23962](https://github.com/flutter/engine/pull/23962) Roll Fuchsia Linux SDK from DLfskqEUx... to f9rffU-3C... (cla: yes, waiting for tree to go green)
[23963](https://github.com/flutter/engine/pull/23963) Pass sampling rather than rely on (deprecated) filter-quality (cla: yes, waiting for tree to go green)
[23964](https://github.com/flutter/engine/pull/23964) Roll Skia from 798021ada347 to 0ecfdea19978 (10 revisions) (cla: yes, waiting for tree to go green)
[23965](https://github.com/flutter/engine/pull/23965) [web] Fix alignment issue in rich paragraphs (cla: yes, platform-web, waiting for tree to go green)
[23966](https://github.com/flutter/engine/pull/23966) Roll Dart SDK from 15dfe858c4a6 to 89cd39c6eee4 (1 revision) (cla: yes, waiting for tree to go green)
[23967](https://github.com/flutter/engine/pull/23967) [macos] Make metal the default rendering backend on macOS >= 10.14 (cla: yes, waiting for tree to go green)
[23968](https://github.com/flutter/engine/pull/23968) Roll Skia from 0ecfdea19978 to a6bff0c3446b (3 revisions) (cla: yes, waiting for tree to go green)
[23969](https://github.com/flutter/engine/pull/23969) [web] Fix svg based stroke rendering. (cla: yes)
[23970](https://github.com/flutter/engine/pull/23970) Fix a null pointer dereference if dladdr is unable to find a symbol name (cla: yes, waiting for tree to go green)
[23971](https://github.com/flutter/engine/pull/23971) Roll Skia from a6bff0c3446b to 6742d13cbe2e (9 revisions) (cla: yes, waiting for tree to go green)
[23973](https://github.com/flutter/engine/pull/23973) Roll Dart SDK from 89cd39c6eee4 to c0c5298d3629 (1 revision) (cla: yes, waiting for tree to go green)
[23975](https://github.com/flutter/engine/pull/23975) Roll Skia from 6742d13cbe2e to 4d6310ab2070 (7 revisions) (cla: yes, waiting for tree to go green)
[23976](https://github.com/flutter/engine/pull/23976) Roll Fuchsia Mac SDK from FtwF654ce... to d_4gHZXiG... (cla: yes, waiting for tree to go green)
[23977](https://github.com/flutter/engine/pull/23977) Roll Dart SDK from c0c5298d3629 to 98e6e543e88d (1 revision) (cla: yes, waiting for tree to go green)
[23979](https://github.com/flutter/engine/pull/23979) Roll Skia from 4d6310ab2070 to a78376bf2aea (4 revisions) (cla: yes, waiting for tree to go green)
[23980](https://github.com/flutter/engine/pull/23980) Load FlutterLoader when creating FlutterEngineGroup (cla: yes, platform-android, waiting for tree to go green)
[23981](https://github.com/flutter/engine/pull/23981) Roll Fuchsia Linux SDK from f9rffU-3C... to flUwG0eOB... (cla: yes, waiting for tree to go green)
[23982](https://github.com/flutter/engine/pull/23982) Roll Dart SDK from 98e6e543e88d to a80bedfd7bc3 (1 revision) (cla: yes, waiting for tree to go green)
[23984](https://github.com/flutter/engine/pull/23984) Roll Skia from a78376bf2aea to 22cc3be64b3e (1 revision) (cla: yes, waiting for tree to go green)
[23986](https://github.com/flutter/engine/pull/23986) Roll buildroot to 33f05b6c (cla: yes)
[23990](https://github.com/flutter/engine/pull/23990) [windows] Honor only valid resize requests (cla: yes, waiting for tree to go green)
[23992](https://github.com/flutter/engine/pull/23992) Roll Fuchsia Mac SDK from d_4gHZXiG... to vY3-OtizQ... (cla: yes, waiting for tree to go green)
[23994](https://github.com/flutter/engine/pull/23994) Roll Skia from 22cc3be64b3e to dd9449c23b9d (11 revisions) (cla: yes, waiting for tree to go green)
[23995](https://github.com/flutter/engine/pull/23995) [web] Fix drawVertices rendering when colors array is null and style is fill (cla: yes, platform-web)
[23996](https://github.com/flutter/engine/pull/23996) Roll Dart SDK from a80bedfd7bc3 to a50a89356008 (1 revision) (cla: yes, waiting for tree to go green)
[23999](https://github.com/flutter/engine/pull/23999) Roll ANGLE (cla: yes)
[24000](https://github.com/flutter/engine/pull/24000) Roll Skia from dd9449c23b9d to b7f5e1b20db1 (7 revisions) (cla: yes, waiting for tree to go green)
[24001](https://github.com/flutter/engine/pull/24001) [canvaskit] remove the DOM node of unrendered platform view (cla: yes, platform-web)
[24002](https://github.com/flutter/engine/pull/24002) Roll Fuchsia Linux SDK from flUwG0eOB... to uD1gzvk5P... (cla: yes, waiting for tree to go green)
[24005](https://github.com/flutter/engine/pull/24005) Roll Dart SDK from a50a89356008 to 3260b2543287 (1 revision) (cla: yes, waiting for tree to go green)
[24006](https://github.com/flutter/engine/pull/24006) Roll Skia from b7f5e1b20db1 to ed552f8702ad (8 revisions) (cla: yes, waiting for tree to go green)
[24007](https://github.com/flutter/engine/pull/24007) Guard against Dart timeline API calls invoked during Dart_Cleanup (cla: yes)
[24009](https://github.com/flutter/engine/pull/24009) Revert "Roll buildroot to 33f05b6c" (cla: yes)
[24010](https://github.com/flutter/engine/pull/24010) Roll Fuchsia Mac SDK from vY3-OtizQ... to FPTUvmyxz... (cla: yes, waiting for tree to go green)
[24011](https://github.com/flutter/engine/pull/24011) Refactor FlRenderer to platform-independent implementation (cla: yes)
[24014](https://github.com/flutter/engine/pull/24014) Roll Fuchsia Linux SDK from uD1gzvk5P... to IiU1NqRtR... (cla: yes, waiting for tree to go green)
[24016](https://github.com/flutter/engine/pull/24016) Roll Skia from ed552f8702ad to 0bad6cf1458d (10 revisions) (cla: yes, waiting for tree to go green)
[24018](https://github.com/flutter/engine/pull/24018) Roll Skia from 0bad6cf1458d to 993e92dc31a6 (4 revisions) (cla: yes, waiting for tree to go green)
[24022](https://github.com/flutter/engine/pull/24022) Upgrade metrics_center to write into GCS buckets (cla: yes)
[24023](https://github.com/flutter/engine/pull/24023) Roll Dart SDK from 3260b2543287 to 21b7f864e3b9 (4 revisions) (cla: yes, waiting for tree to go green)
[24024](https://github.com/flutter/engine/pull/24024) Use `runes` to get code units in CanvasKit. (cla: yes, platform-web, waiting for tree to go green)
[24025](https://github.com/flutter/engine/pull/24025) TextStyle level leadingDistribution (cla: yes, waiting for tree to go green)
[24029](https://github.com/flutter/engine/pull/24029) Refactor gradient renderer to produce image. Implement gradient based Shadermask (cla: yes, platform-web)
[24030](https://github.com/flutter/engine/pull/24030) Roll Dart SDK from 21b7f864e3b9 to f2a7851b676d (1 revision) (cla: yes, waiting for tree to go green)
[24033](https://github.com/flutter/engine/pull/24033) Roll Clang Mac from 139p8dSfW... to CafIgcePd... (cla: yes, waiting for tree to go green)
[24034](https://github.com/flutter/engine/pull/24034) Roll Skia from 993e92dc31a6 to 0492a744a52d (12 revisions) (cla: yes, waiting for tree to go green)
[24036](https://github.com/flutter/engine/pull/24036) [web] Fix text alignment when transform + tight constraints + DOM rendering (cla: yes, platform-web, waiting for tree to go green)
[24037](https://github.com/flutter/engine/pull/24037) [web] Implement CanvasParagraph.getLineBoundary (cla: yes, platform-web, waiting for tree to go green)
[24038](https://github.com/flutter/engine/pull/24038) Roll Dart SDK from f2a7851b676d to 9c612e4b790a (1 revision) (cla: yes, waiting for tree to go green)
[24039](https://github.com/flutter/engine/pull/24039) Roll Skia from 0492a744a52d to 00f4769e34d8 (4 revisions) (cla: yes, waiting for tree to go green)
[24044](https://github.com/flutter/engine/pull/24044) Roll Fuchsia Mac SDK from FPTUvmyxz... to 2R0Qlyol4... (cla: yes, waiting for tree to go green)
[24045](https://github.com/flutter/engine/pull/24045) Roll Fuchsia Linux SDK from IiU1NqRtR... to fyXNImnNH... (cla: yes, waiting for tree to go green)
[24047](https://github.com/flutter/engine/pull/24047) Roll Skia from 00f4769e34d8 to b9f95ba9f36a (5 revisions) (cla: yes, waiting for tree to go green)
[24048](https://github.com/flutter/engine/pull/24048) Roll Dart SDK from 9c612e4b790a to d7bb34496619 (1 revision) (cla: yes, waiting for tree to go green)
[24049](https://github.com/flutter/engine/pull/24049) Roll Skia from b9f95ba9f36a to 6f3243c32005 (1 revision) (cla: yes, waiting for tree to go green)
[24050](https://github.com/flutter/engine/pull/24050) Roll Dart SDK from d7bb34496619 to 6c97fcdd12dc (1 revision) (cla: yes, waiting for tree to go green)
[24053](https://github.com/flutter/engine/pull/24053) Roll Skia from 6f3243c32005 to 0de76f72cd5e (2 revisions) (cla: yes, waiting for tree to go green)
[24056](https://github.com/flutter/engine/pull/24056) Roll Skia from 0de76f72cd5e to cdd852b57948 (1 revision) (cla: yes, waiting for tree to go green)
[24059](https://github.com/flutter/engine/pull/24059) Roll Skia from cdd852b57948 to 0ab283aaf2a1 (5 revisions) (cla: yes, waiting for tree to go green)
[24060](https://github.com/flutter/engine/pull/24060) Roll Fuchsia Mac SDK from 2R0Qlyol4... to u2vmt9DP-... (cla: yes, waiting for tree to go green)
[24061](https://github.com/flutter/engine/pull/24061) Roll Fuchsia Linux SDK from fyXNImnNH... to 334LMW0c_... (cla: yes, waiting for tree to go green)
[24065](https://github.com/flutter/engine/pull/24065) Roll Skia from 0ab283aaf2a1 to a89b43092e9d (18 revisions) (cla: yes, waiting for tree to go green)
[24067](https://github.com/flutter/engine/pull/24067) Roll Clang Linux from 8LaTdqf7w... to 1Wa1KIWqF... (cla: yes, waiting for tree to go green)
[24069](https://github.com/flutter/engine/pull/24069) Roll Dart SDK from 6c97fcdd12dc to f444e42359d6 (1 revision) (cla: yes, waiting for tree to go green)
[24071](https://github.com/flutter/engine/pull/24071) Roll Skia from a89b43092e9d to 29e521c53302 (7 revisions) (cla: yes, waiting for tree to go green)
[24072](https://github.com/flutter/engine/pull/24072) Roll Skia from 29e521c53302 to 03da7cb8a386 (1 revision) (cla: yes, waiting for tree to go green)
[24073](https://github.com/flutter/engine/pull/24073) Roll Fuchsia Mac SDK from u2vmt9DP-... to X9-CRs-hP... (cla: yes, waiting for tree to go green)
[24077](https://github.com/flutter/engine/pull/24077) Roll Skia from 03da7cb8a386 to af33fb0d28d2 (3 revisions) (cla: yes, waiting for tree to go green)
[24080](https://github.com/flutter/engine/pull/24080) Roll Skia from af33fb0d28d2 to 747c31e296c7 (3 revisions) (cla: yes, waiting for tree to go green)
[24084](https://github.com/flutter/engine/pull/24084) Roll Fuchsia Mac SDK from X9-CRs-hP... to d48YMSgXi... (cla: yes, waiting for tree to go green)
[24085](https://github.com/flutter/engine/pull/24085) Roll Skia from 747c31e296c7 to b2c761332bfc (5 revisions) (cla: yes, waiting for tree to go green)
[24086](https://github.com/flutter/engine/pull/24086) Roll Fuchsia Linux SDK from 334LMW0c_... to KKUuENUT4... (cla: yes, waiting for tree to go green)
[24091](https://github.com/flutter/engine/pull/24091) Roll Skia from b2c761332bfc to 7935900cadaa (3 revisions) (cla: yes, waiting for tree to go green)
[24092](https://github.com/flutter/engine/pull/24092) Roll Skia from 7935900cadaa to ef47e010b352 (2 revisions) (cla: yes, waiting for tree to go green)
[24093](https://github.com/flutter/engine/pull/24093) Roll Dart SDK from f444e42359d6 to f36420a912bb (1 revision) (cla: yes, waiting for tree to go green)
[24095](https://github.com/flutter/engine/pull/24095) Roll Fuchsia Linux SDK from KKUuENUT4... to TTxS3b-Vc... (cla: yes, waiting for tree to go green)
[24097](https://github.com/flutter/engine/pull/24097) Roll Skia from ef47e010b352 to bb6176826683 (1 revision) (cla: yes, waiting for tree to go green)
[24098](https://github.com/flutter/engine/pull/24098) Roll Fuchsia Mac SDK from d48YMSgXi... to KfIfizZ7o... (cla: yes, waiting for tree to go green)
[24099](https://github.com/flutter/engine/pull/24099) Roll Skia from bb6176826683 to 8ef3c539a26e (4 revisions) (cla: yes, waiting for tree to go green)
[24101](https://github.com/flutter/engine/pull/24101) Use sampling instead of (deprecated) filter-quality (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[24102](https://github.com/flutter/engine/pull/24102) Roll Fuchsia Linux SDK from TTxS3b-Vc... to -iUKxTl_w... (cla: yes, waiting for tree to go green)
[24103](https://github.com/flutter/engine/pull/24103) Roll Dart SDK from f36420a912bb to a6d86f12bf00 (1 revision) (cla: yes, waiting for tree to go green)
[24104](https://github.com/flutter/engine/pull/24104) Roll Skia from 8ef3c539a26e to 324b7a6f3a49 (4 revisions) (cla: yes, waiting for tree to go green)
[24108](https://github.com/flutter/engine/pull/24108) Roll Skia from 324b7a6f3a49 to 3cc4afc70309 (8 revisions) (cla: yes, waiting for tree to go green)
[24109](https://github.com/flutter/engine/pull/24109) Cross-platform changes necessary for libax on Windows (cla: yes)
[24112](https://github.com/flutter/engine/pull/24112) Fixed plumbing of the spawning isolate for Shell::Spawn. (cla: yes)
[24113](https://github.com/flutter/engine/pull/24113) Roll Fuchsia Mac SDK from KfIfizZ7o... to IHHTb9H-B... (cla: yes, waiting for tree to go green)
[24114](https://github.com/flutter/engine/pull/24114) Roll Skia from 3cc4afc70309 to 3364579f8332 (13 revisions) (cla: yes, waiting for tree to go green)
[24115](https://github.com/flutter/engine/pull/24115) Roll Fuchsia Linux SDK from -iUKxTl_w... to blNDDMWIJ... (cla: yes, waiting for tree to go green)
[24116](https://github.com/flutter/engine/pull/24116) Roll Skia from 3364579f8332 to fde740c7f26e (6 revisions) (cla: yes, waiting for tree to go green)
[24118](https://github.com/flutter/engine/pull/24118) Roll Skia from fde740c7f26e to a6c692b8844d (7 revisions) (cla: yes, waiting for tree to go green)
[24122](https://github.com/flutter/engine/pull/24122) Roll Dart SDK from a6d86f12bf00 to c066c7b294bf (2 revisions) (cla: yes, waiting for tree to go green)
[24123](https://github.com/flutter/engine/pull/24123) Roll Skia from a6c692b8844d to f9a0f1a9be9e (2 revisions) (cla: yes, waiting for tree to go green)
[24125](https://github.com/flutter/engine/pull/24125) Update to sampling versions (cla: yes)
[24132](https://github.com/flutter/engine/pull/24132) Roll Fuchsia Mac SDK from IHHTb9H-B... to Cn1MLtDdP... (cla: yes, waiting for tree to go green)
[24133](https://github.com/flutter/engine/pull/24133) Roll Fuchsia Linux SDK from blNDDMWIJ... to _bFb8vcW9... (cla: yes, waiting for tree to go green)
[24135](https://github.com/flutter/engine/pull/24135) drawBitmap is deprecated, use drawImage (cla: yes, platform-android)
[24137](https://github.com/flutter/engine/pull/24137) Roll Skia from f9a0f1a9be9e to 931cad1d74bb (11 revisions) (cla: yes, waiting for tree to go green)
[24138](https://github.com/flutter/engine/pull/24138) Roll Skia from 931cad1d74bb to e9e8e5d771c5 (8 revisions) (cla: yes, waiting for tree to go green)
[24140](https://github.com/flutter/engine/pull/24140) [web] Fix RRect scaleRadii for negative width/height (cla: yes)
[24141](https://github.com/flutter/engine/pull/24141) Roll Skia from e9e8e5d771c5 to ee9cb6aec35d (7 revisions) (cla: yes, waiting for tree to go green)
[24142](https://github.com/flutter/engine/pull/24142) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Engine Cherrypicks (cla: yes, platform-android)
[24143](https://github.com/flutter/engine/pull/24143) Roll Dart SDK from c066c7b294bf to 75251de89baf (1 revision) (cla: yes, waiting for tree to go green)
[24146](https://github.com/flutter/engine/pull/24146) fixes android deeplink query paremeter null crashes (cla: yes, platform-android, waiting for tree to go green)
[24148](https://github.com/flutter/engine/pull/24148) Roll Skia from ee9cb6aec35d to 9ff7b8d67559 (10 revisions) (cla: yes, waiting for tree to go green)
[24150](https://github.com/flutter/engine/pull/24150) [web] Fix exception when using a keyboard (cla: yes, platform-web, waiting for tree to go green)
[24151](https://github.com/flutter/engine/pull/24151) Roll Fuchsia Mac SDK from Cn1MLtDdP... to CZUusaxvk... (cla: yes, waiting for tree to go green)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24153](https://github.com/flutter/engine/pull/24153) [web] Fix svg stroke when style is not provided (cla: yes, platform-web)
[24154](https://github.com/flutter/engine/pull/24154) Roll Fuchsia Linux SDK from _bFb8vcW9... to k80WkJhOL... (cla: yes, waiting for tree to go green)
[24156](https://github.com/flutter/engine/pull/24156) Roll Clang Mac from CafIgcePd... to hoapl8VNW... (cla: yes, waiting for tree to go green)
[24157](https://github.com/flutter/engine/pull/24157) [metal] Darwin unified external metal textures (cla: yes, platform-ios, waiting for tree to go green)
[24159](https://github.com/flutter/engine/pull/24159) [web] Fix text rendering issue when paragraph style is ginormous (cla: yes, platform-web)
[24160](https://github.com/flutter/engine/pull/24160) [canvaskit] update CSS size of the canvas when device-pixel ratio changes (cla: yes)
[24163](https://github.com/flutter/engine/pull/24163) No longer redraw window every frame to reduce CPU consumption (cla: yes)
[24172](https://github.com/flutter/engine/pull/24172) Roll Dart SDK from 75251de89baf to 102cf619465d (1 revision) (cla: yes, waiting for tree to go green)
[24176](https://github.com/flutter/engine/pull/24176) Roll Skia from 9ff7b8d67559 to 20e92f77e2b3 (34 revisions) (cla: yes, waiting for tree to go green)
[24177](https://github.com/flutter/engine/pull/24177) Roll Clang Linux from 1Wa1KIWqF... to 6BYbqFtrH... (cla: yes)
[24178](https://github.com/flutter/engine/pull/24178) Roll Skia from 20e92f77e2b3 to e2c0504c27a2 (3 revisions) (cla: yes, waiting for tree to go green)
[24180](https://github.com/flutter/engine/pull/24180) Roll Fuchsia Mac SDK from CZUusaxvk... to kwPlXsW2q... (cla: yes, waiting for tree to go green)
[24181](https://github.com/flutter/engine/pull/24181) Make activity/fragment leftover from an attach/detach race slightly safer (cla: yes, platform-android)
[24182](https://github.com/flutter/engine/pull/24182) Roll Fuchsia Linux SDK from k80WkJhOL... to sHdRLs17n... (cla: yes, waiting for tree to go green)
[24183](https://github.com/flutter/engine/pull/24183) Roll Skia from e2c0504c27a2 to f71278c9937c (8 revisions) (cla: yes, waiting for tree to go green)
[24184](https://github.com/flutter/engine/pull/24184) Roll Dart SDK from 102cf619465d to 5bf0ad33fa3c (1 revision) (cla: yes, waiting for tree to go green)
[24185](https://github.com/flutter/engine/pull/24185) Upgrade metrics_center (cla: yes)
[24186](https://github.com/flutter/engine/pull/24186) Add API to force redraw of flutter view (affects: desktop, cla: yes, needs tests)
[24188](https://github.com/flutter/engine/pull/24188) Roll Skia from f71278c9937c to d48f9daeb544 (10 revisions) (cla: yes, waiting for tree to go green)
[24189](https://github.com/flutter/engine/pull/24189) Roll Skia from d48f9daeb544 to 38df4c8470ab (1 revision) (cla: yes, waiting for tree to go green)
[24191](https://github.com/flutter/engine/pull/24191) Roll Dart SDK from 5bf0ad33fa3c to 8c39136ffb2f (1 revision) (cla: yes, waiting for tree to go green)
[24192](https://github.com/flutter/engine/pull/24192) Roll Skia from 38df4c8470ab to 1d35777a4fa9 (2 revisions) (cla: yes, waiting for tree to go green)
[24193](https://github.com/flutter/engine/pull/24193) Roll Skia from 1d35777a4fa9 to c66754bd4ded (3 revisions) (cla: yes, waiting for tree to go green)
[24194](https://github.com/flutter/engine/pull/24194) Roll Skia from c66754bd4ded to 8043b787554b (1 revision) (cla: yes, waiting for tree to go green)
[24196](https://github.com/flutter/engine/pull/24196) Roll Skia from 8043b787554b to 9e189aab1ec7 (1 revision) (cla: yes, waiting for tree to go green)
[24198](https://github.com/flutter/engine/pull/24198) Roll Dart SDK from 8c39136ffb2f to 73c34f2ad73f (1 revision) (cla: yes, waiting for tree to go green)
[24199](https://github.com/flutter/engine/pull/24199) Roll Skia from 9e189aab1ec7 to 3c8444e18e74 (4 revisions) (cla: yes, waiting for tree to go green)
[24200](https://github.com/flutter/engine/pull/24200) Roll Skia from 3c8444e18e74 to c481dd69bbb4 (1 revision) (cla: yes, waiting for tree to go green)
[24201](https://github.com/flutter/engine/pull/24201) Roll Fuchsia Mac SDK from kwPlXsW2q... to 03qqGegOA... (cla: yes, waiting for tree to go green)
[24202](https://github.com/flutter/engine/pull/24202) Roll Skia from c481dd69bbb4 to 56c78f4d9edd (3 revisions) (cla: yes, waiting for tree to go green)
[24203](https://github.com/flutter/engine/pull/24203) Roll Fuchsia Linux SDK from sHdRLs17n... to f1YmNNwFe... (cla: yes, waiting for tree to go green)
[24204](https://github.com/flutter/engine/pull/24204) Roll Skia from 56c78f4d9edd to 8eb119af466b (3 revisions) (cla: yes, waiting for tree to go green)
[24205](https://github.com/flutter/engine/pull/24205) Roll Dart SDK from 73c34f2ad73f to 51035f288d30 (1 revision) (cla: yes, waiting for tree to go green)
[24207](https://github.com/flutter/engine/pull/24207) Roll Skia from 8eb119af466b to 420c8a505e54 (5 revisions) (cla: yes, waiting for tree to go green)
[24208](https://github.com/flutter/engine/pull/24208) Roll Skia from 420c8a505e54 to 71d420ddbd3c (3 revisions) (cla: yes, waiting for tree to go green)
[24209](https://github.com/flutter/engine/pull/24209) Roll Skia from 71d420ddbd3c to 2224100b25e3 (4 revisions) (cla: yes, waiting for tree to go green)
[24210](https://github.com/flutter/engine/pull/24210) Move shell/platform/common/cpp to shell/platform/common (cla: yes, waiting for tree to go green)
[24212](https://github.com/flutter/engine/pull/24212) Roll Dart SDK from 51035f288d30 to b1c8ca53bf37 (1 revision) (cla: yes, waiting for tree to go green)
[24213](https://github.com/flutter/engine/pull/24213) Roll Skia from 2224100b25e3 to 7c6abf86f54c (5 revisions) (cla: yes, waiting for tree to go green)
[24214](https://github.com/flutter/engine/pull/24214) [web] Fix text selection from right to left (affects: text input, cla: yes, platform-web, waiting for tree to go green)
[24215](https://github.com/flutter/engine/pull/24215) Roll Skia from 7c6abf86f54c to b88b4e1a12ac (3 revisions) (cla: yes, waiting for tree to go green)
[24216](https://github.com/flutter/engine/pull/24216) Roll buildroot to bc399c09 (cla: yes)
[24217](https://github.com/flutter/engine/pull/24217) Roll Skia from b88b4e1a12ac to 52bf4853c121 (2 revisions) (cla: yes, waiting for tree to go green)
[24219](https://github.com/flutter/engine/pull/24219) libtxt: apply the justify offset to glyph positions instead of paint records (cla: yes, waiting for tree to go green)
[24221](https://github.com/flutter/engine/pull/24221) Roll Skia from 52bf4853c121 to 9f704a864008 (1 revision) (cla: yes, waiting for tree to go green)
[24223](https://github.com/flutter/engine/pull/24223) Revert "[metal] Darwin unified external metal textures" (cla: yes, platform-ios)
[24225](https://github.com/flutter/engine/pull/24225) Roll Fuchsia Mac SDK from 03qqGegOA... to TVGS3E2dT... (cla: yes, waiting for tree to go green)
[24227](https://github.com/flutter/engine/pull/24227) Roll Fuchsia Linux SDK from f1YmNNwFe... to JQoiZreUN... (cla: yes, waiting for tree to go green)
[24228](https://github.com/flutter/engine/pull/24228) Roll Skia from 9f704a864008 to 2a21a21223a7 (3 revisions) (cla: yes, waiting for tree to go green)
[24229](https://github.com/flutter/engine/pull/24229) Roll Skia from 2a21a21223a7 to 2c6d8d970acd (2 revisions) (cla: yes, waiting for tree to go green)
[24230](https://github.com/flutter/engine/pull/24230) Roll Dart SDK from b1c8ca53bf37 to c1616b4405c2 (2 revisions) (cla: yes, waiting for tree to go green)
[24231](https://github.com/flutter/engine/pull/24231) Roll Dart SDK from c1616b4405c2 to 8e4be6e4a496 (1 revision) (cla: yes, waiting for tree to go green)
[24232](https://github.com/flutter/engine/pull/24232) Use hidden window to process flutter messages (affects: desktop, cla: yes, platform-windows)
[24233](https://github.com/flutter/engine/pull/24233) Roll Skia from 2c6d8d970acd to 03555e92a159 (1 revision) (cla: yes, waiting for tree to go green)
[24234](https://github.com/flutter/engine/pull/24234) Roll Skia from 03555e92a159 to c7d6e0ba0b6d (2 revisions) (cla: yes, waiting for tree to go green)
[24235](https://github.com/flutter/engine/pull/24235) Roll Skia from c7d6e0ba0b6d to 1f4cd07af88a (3 revisions) (cla: yes, waiting for tree to go green)
[24236](https://github.com/flutter/engine/pull/24236) [windows] Surface will not update when restoring (cla: yes)
[24237](https://github.com/flutter/engine/pull/24237) Roll Fuchsia Mac SDK from TVGS3E2dT... to kaNAjjK23... (cla: yes, waiting for tree to go green)
[24239](https://github.com/flutter/engine/pull/24239) Roll Skia from 1f4cd07af88a to ca21e14d7754 (4 revisions) (cla: yes, waiting for tree to go green)
[24240](https://github.com/flutter/engine/pull/24240) Roll Fuchsia Linux SDK from JQoiZreUN... to aFijLMarB... (cla: yes, waiting for tree to go green)
[24244](https://github.com/flutter/engine/pull/24244) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24246](https://github.com/flutter/engine/pull/24246) Pin the package_config package used by generate_package_config at version 1.9.3 (cla: yes)
[24249](https://github.com/flutter/engine/pull/24249) Roll CanvasKit to 0.23 (cla: yes, platform-web)
[24250](https://github.com/flutter/engine/pull/24250) [flutter_releases] clarify comment (cla: yes)
[24251](https://github.com/flutter/engine/pull/24251) [flutter_releases] Pin the package_config package (cla: yes)
[24252](https://github.com/flutter/engine/pull/24252) Roll buildroot to 739be241578e7f12773eedb713df7fe3b0ec917b (cla: yes)
[24253](https://github.com/flutter/engine/pull/24253) Define FLUTTER_ENABLE_SKSHAPER consistently when building txt_unittests and txt_benchmarks (cla: yes, waiting for tree to go green)
[24255](https://github.com/flutter/engine/pull/24255) Roll Dart SDK from 8e4be6e4a496 to 9a16b6bca556 (3 revisions) (cla: yes, waiting for tree to go green)
[24256](https://github.com/flutter/engine/pull/24256) Roll Skia from ca21e14d7754 to c0f981560985 (7 revisions) (cla: yes, waiting for tree to go green)
[24257](https://github.com/flutter/engine/pull/24257) Roll Dart SDK from 9a16b6bca556 to daf7b29738c5 (1 revision) (cla: yes, waiting for tree to go green)
[24258](https://github.com/flutter/engine/pull/24258) Roll Fuchsia Mac SDK from kaNAjjK23... to HqhARC-gx... (cla: yes, waiting for tree to go green)
[24259](https://github.com/flutter/engine/pull/24259) Roll Fuchsia Linux SDK from aFijLMarB... to QINp0ypCP... (cla: yes, waiting for tree to go green)
[24263](https://github.com/flutter/engine/pull/24263) Fix retain cycles in MacOS embedder (cla: yes)
[24264](https://github.com/flutter/engine/pull/24264) Unblock FlutterResizeSynchronizer on engine shutdown (cla: yes, waiting for tree to go green)
[24265](https://github.com/flutter/engine/pull/24265) Roll Skia from c0f981560985 to 827f8c010319 (5 revisions) (cla: yes, waiting for tree to go green)
[24268](https://github.com/flutter/engine/pull/24268) Roll Dart SDK from daf7b29738c5 to 85af45218196 (2 revisions) (cla: yes, waiting for tree to go green)
[24269](https://github.com/flutter/engine/pull/24269) Roll Dart SDK from 85af45218196 to b74a0c8d6786 (1 revision) (cla: yes, waiting for tree to go green)
[24270](https://github.com/flutter/engine/pull/24270) Roll Fuchsia Mac SDK from HqhARC-gx... to DVT8cA5T5... (cla: yes, waiting for tree to go green)
[24271](https://github.com/flutter/engine/pull/24271) Roll Fuchsia Linux SDK from QINp0ypCP... to mFKcPPKFb... (cla: yes, waiting for tree to go green)
[24272](https://github.com/flutter/engine/pull/24272) Fix ImageReader may leak images when onDraw() not called (cla: yes, platform-android, waiting for tree to go green)
[24273](https://github.com/flutter/engine/pull/24273) Roll Skia from 827f8c010319 to 5b67a809c09c (1 revision) (cla: yes, waiting for tree to go green)
[24274](https://github.com/flutter/engine/pull/24274) Roll Skia from 5b67a809c09c to 1d62221553b7 (1 revision) (cla: yes, waiting for tree to go green)
[24275](https://github.com/flutter/engine/pull/24275) Roll Fuchsia Mac SDK from DVT8cA5T5... to 7YXm5Zozt... (cla: yes, waiting for tree to go green)
[24276](https://github.com/flutter/engine/pull/24276) Roll Fuchsia Linux SDK from mFKcPPKFb... to 5SyHEyz-o... (cla: yes, waiting for tree to go green)
[24277](https://github.com/flutter/engine/pull/24277) Roll Dart SDK from b74a0c8d6786 to f2f38b3d7e50 (1 revision) (cla: yes, waiting for tree to go green)
[24278](https://github.com/flutter/engine/pull/24278) Add support for arm64 simulator builds to create_ios_framework.py (cla: yes, waiting for tree to go green)
[24280](https://github.com/flutter/engine/pull/24280) Roll Skia from 1d62221553b7 to 75b7606c0fe1 (4 revisions) (cla: yes, waiting for tree to go green)
[24281](https://github.com/flutter/engine/pull/24281) Roll Fuchsia Mac SDK from 7YXm5Zozt... to BfkGYQEHB... (cla: yes, waiting for tree to go green)
[24282](https://github.com/flutter/engine/pull/24282) Roll Fuchsia Linux SDK from 5SyHEyz-o... to lF6-o-EaT... (cla: yes, waiting for tree to go green)
[24283](https://github.com/flutter/engine/pull/24283) Roll Dart SDK from f2f38b3d7e50 to 5a249d2ce54f (1 revision) (cla: yes, waiting for tree to go green)
[24284](https://github.com/flutter/engine/pull/24284) Roll Skia from 75b7606c0fe1 to c2c1b0c460ec (1 revision) (cla: yes, waiting for tree to go green)
[24287](https://github.com/flutter/engine/pull/24287) Roll Skia from c2c1b0c460ec to 49e5b3a339ed (13 revisions) (cla: yes, waiting for tree to go green)
[24288](https://github.com/flutter/engine/pull/24288) [Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards (cla: yes, platform-android, waiting for tree to go green)
[24289](https://github.com/flutter/engine/pull/24289) Roll Fuchsia Mac SDK from BfkGYQEHB... to lzQvHw_Il... (cla: yes, waiting for tree to go green)
[24290](https://github.com/flutter/engine/pull/24290) Roll Skia from 49e5b3a339ed to 627c6d25695d (4 revisions) (cla: yes, waiting for tree to go green)
[24291](https://github.com/flutter/engine/pull/24291) Roll Fuchsia Linux SDK from lF6-o-EaT... to 5RGNLZoRS... (cla: yes, waiting for tree to go green)
[24293](https://github.com/flutter/engine/pull/24293) [Windows] Fix crash of TextInputPlugin on empty model (cla: yes, waiting for tree to go green)
[24294](https://github.com/flutter/engine/pull/24294) Roll Skia from 627c6d25695d to dfa269f1cd15 (6 revisions) (cla: yes, waiting for tree to go green)
[24295](https://github.com/flutter/engine/pull/24295) Roll Dart SDK from 5a249d2ce54f to 02230d7386c7 (2 revisions) (cla: yes, waiting for tree to go green)
[24300](https://github.com/flutter/engine/pull/24300) Roll Skia from dfa269f1cd15 to 21b8cec137e1 (3 revisions) (cla: yes, waiting for tree to go green)
[24301](https://github.com/flutter/engine/pull/24301) Roll Fuchsia Mac SDK from lzQvHw_Il... to LHRp0kYRi... (cla: yes, waiting for tree to go green)
[24302](https://github.com/flutter/engine/pull/24302) Roll Fuchsia Linux SDK from 5RGNLZoRS... to QJfCXnklY... (cla: yes, waiting for tree to go green)
[24306](https://github.com/flutter/engine/pull/24306) [flutter_releases] Flutter Engine 1.26.0-17.5.pre Beta Cherrypicks (cla: yes)
[24308](https://github.com/flutter/engine/pull/24308) Fix FlutterPlatformViewSemanticsContainer retain cycle with SemanticsObject (cla: yes, platform-ios, waiting for tree to go green)
[24309](https://github.com/flutter/engine/pull/24309) Roll Skia from 21b8cec137e1 to 34c098d7f8e1 (19 revisions) (cla: yes, waiting for tree to go green)
[24310](https://github.com/flutter/engine/pull/24310) Roll Skia from 34c098d7f8e1 to 62b039b36d4d (2 revisions) (cla: yes, waiting for tree to go green)
[24312](https://github.com/flutter/engine/pull/24312) Roll Skia from 62b039b36d4d to e2c9d3c034dc (5 revisions) (cla: yes, waiting for tree to go green)
[24313](https://github.com/flutter/engine/pull/24313) Roll Dart SDK from 02230d7386c7 to 4bd4c2a493e9 (6 revisions) (cla: yes, waiting for tree to go green)
[24316](https://github.com/flutter/engine/pull/24316) Roll Skia from e2c9d3c034dc to ec04e062f3f5 (5 revisions) (cla: yes, waiting for tree to go green)
[24318](https://github.com/flutter/engine/pull/24318) Windows: linker compatibility with AppContainer for winuwp target (cla: yes)
[24319](https://github.com/flutter/engine/pull/24319) Roll Fuchsia Mac SDK from LHRp0kYRi... to Yyj0Krr1G... (cla: yes, waiting for tree to go green)
[24320](https://github.com/flutter/engine/pull/24320) Roll Fuchsia Linux SDK from QJfCXnklY... to cSlRZzm0z... (cla: yes, waiting for tree to go green)
[24321](https://github.com/flutter/engine/pull/24321) Roll Skia from ec04e062f3f5 to 7f942e46fda2 (3 revisions) (cla: yes, waiting for tree to go green)
[24323](https://github.com/flutter/engine/pull/24323) Roll Dart SDK from 4bd4c2a493e9 to 4740b09e11d4 (2 revisions) (cla: yes, waiting for tree to go green)
[24324](https://github.com/flutter/engine/pull/24324) Roll Skia from 7f942e46fda2 to 9e2c50edaaac (1 revision) (cla: yes, waiting for tree to go green)
[24326](https://github.com/flutter/engine/pull/24326) Roll Skia from 9e2c50edaaac to 140adc676219 (1 revision) (cla: yes, waiting for tree to go green)
[24327](https://github.com/flutter/engine/pull/24327) [embedder] [metal] Embedder API can support externally composited Metal textures (cla: yes)
[24328](https://github.com/flutter/engine/pull/24328) Roll Dart SDK from 4740b09e11d4 to f832cd2d0536 (1 revision) (cla: yes, waiting for tree to go green)
[24329](https://github.com/flutter/engine/pull/24329) Roll Fuchsia Mac SDK from Yyj0Krr1G... to lEV2crBx-... (cla: yes, waiting for tree to go green)
[24330](https://github.com/flutter/engine/pull/24330) Roll Skia from 140adc676219 to b8c0dab90b92 (16 revisions) (cla: yes, waiting for tree to go green)
[24331](https://github.com/flutter/engine/pull/24331) Revert "Reland "[metal] Darwin unified external metal textures (#2415β¦ (cla: yes, platform-ios, waiting for tree to go green)
[24333](https://github.com/flutter/engine/pull/24333) Always set change type to cancel with `touchesCancelled` on iOS platform view (cla: yes, platform-ios, waiting for tree to go green)
[24334](https://github.com/flutter/engine/pull/24334) Roll Fuchsia Linux SDK from cSlRZzm0z... to neluWd0QF... (cla: yes, waiting for tree to go green)
[24335](https://github.com/flutter/engine/pull/24335) Roll Skia from b8c0dab90b92 to 73122aa45f83 (5 revisions) (cla: yes, waiting for tree to go green)
[24336](https://github.com/flutter/engine/pull/24336) Propagate image decode errors to the future returned by Codec.getNextFrame (cla: yes, waiting for tree to go green)
[24337](https://github.com/flutter/engine/pull/24337) Roll Dart SDK from f832cd2d0536 to ebcb7aee8c0d (1 revision) (cla: yes, waiting for tree to go green)
[24339](https://github.com/flutter/engine/pull/24339) Roll Skia from 73122aa45f83 to 84b0233bb38e (2 revisions) (cla: yes, waiting for tree to go green)
[24340](https://github.com/flutter/engine/pull/24340) Remove NonNull annotation on FlutterCallbackInformation.lookupCallbackInformation (cla: yes, platform-android)
[24343](https://github.com/flutter/engine/pull/24343) Roll Skia from 84b0233bb38e to 997df84ac144 (5 revisions) (cla: yes, waiting for tree to go green)
[24344](https://github.com/flutter/engine/pull/24344) Roll Skia from 997df84ac144 to 9d171b630287 (3 revisions) (cla: yes, waiting for tree to go green)
[24345](https://github.com/flutter/engine/pull/24345) Roll Fuchsia Mac SDK from lEV2crBx-... to dzre2TRPg... (cla: yes, waiting for tree to go green)
[24346](https://github.com/flutter/engine/pull/24346) Roll Skia from 9d171b630287 to 966d795af9a6 (1 revision) (cla: yes, waiting for tree to go green)
[24347](https://github.com/flutter/engine/pull/24347) Remove unnecessary buffer collection image constraints. (cla: yes, waiting for tree to go green)
[24349](https://github.com/flutter/engine/pull/24349) Roll Dart SDK from ebcb7aee8c0d to 2d247d2bcfd4 (1 revision) (cla: yes, waiting for tree to go green)
[24350](https://github.com/flutter/engine/pull/24350) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24351](https://github.com/flutter/engine/pull/24351) Roll Skia from 966d795af9a6 to eff697a78baa (10 revisions) (cla: yes, waiting for tree to go green)
[24353](https://github.com/flutter/engine/pull/24353) Roll Skia from eff697a78baa to dfa91793f8e9 (9 revisions) (cla: yes, waiting for tree to go green)
[24354](https://github.com/flutter/engine/pull/24354) [web] Fix origin for repeated linear gradients (cla: yes, platform-web, waiting for tree to go green)
[24355](https://github.com/flutter/engine/pull/24355) [felt] report failures after running all shards (cla: yes)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[24357](https://github.com/flutter/engine/pull/24357) [canvaskit] support adding leaf layers w/o container layers (cla: yes)
[24358](https://github.com/flutter/engine/pull/24358) Revert "Roll buildroot to 739be241578e7f12773eedb713df7fe3b0ec917b" (cla: yes)
[24359](https://github.com/flutter/engine/pull/24359) Roll Fuchsia Mac SDK from dzre2TRPg... to r37VPY1mX... (cla: yes, waiting for tree to go green)
[24361](https://github.com/flutter/engine/pull/24361) Roll Skia from dfa91793f8e9 to c616e1c1791c (16 revisions) (cla: yes, waiting for tree to go green)
[24362](https://github.com/flutter/engine/pull/24362) Roll Dart SDK from 2d247d2bcfd4 to f17d44184bd3 (1 revision) (cla: yes, waiting for tree to go green)
[24363](https://github.com/flutter/engine/pull/24363) Replace Flutter surface only after all platform views are destroyed (cla: yes, platform-android)
[24364](https://github.com/flutter/engine/pull/24364) Roll Dart SDK from f17d44184bd3 to f94c8b2d1b97 (1 revision) (cla: yes, waiting for tree to go green)
[24365](https://github.com/flutter/engine/pull/24365) Roll Skia from c616e1c1791c to 22363fe3da95 (1 revision) (cla: yes, waiting for tree to go green)
[24366](https://github.com/flutter/engine/pull/24366) Roll Skia from 22363fe3da95 to 3370d6806776 (2 revisions) (cla: yes, waiting for tree to go green)
[24367](https://github.com/flutter/engine/pull/24367) Roll Fuchsia Linux SDK from neluWd0QF... to YMY-cajLa... (cla: yes, waiting for tree to go green)
[24368](https://github.com/flutter/engine/pull/24368) Roll Dart SDK from f94c8b2d1b97 to 02971d1fcc61 (1 revision) (cla: yes, waiting for tree to go green)
[24369](https://github.com/flutter/engine/pull/24369) Roll Fuchsia Mac SDK from r37VPY1mX... to WIqUEANCH... (cla: yes, waiting for tree to go green)
[24370](https://github.com/flutter/engine/pull/24370) Roll Dart SDK from 02971d1fcc61 to 1e0fec6e48cf (1 revision) (cla: yes, waiting for tree to go green)
[24372](https://github.com/flutter/engine/pull/24372) Fix vulkan surface leaks. (cla: yes)
[24373](https://github.com/flutter/engine/pull/24373) Roll Skia from 3370d6806776 to ec24154521f3 (2 revisions) (cla: yes, waiting for tree to go green)
[24374](https://github.com/flutter/engine/pull/24374) Roll Skia from ec24154521f3 to 28698696f1b3 (4 revisions) (cla: yes, waiting for tree to go green)
[24375](https://github.com/flutter/engine/pull/24375) Roll Dart SDK from 1e0fec6e48cf to add1eac3622c (1 revision) (cla: yes, waiting for tree to go green)
[24376](https://github.com/flutter/engine/pull/24376) Defer making skshader until we know quality (cla: yes, waiting for tree to go green)
[24377](https://github.com/flutter/engine/pull/24377) Fixes hot restart correctly reset the browser history (cla: yes, waiting for tree to go green)
[24378](https://github.com/flutter/engine/pull/24378) Roll Skia from 28698696f1b3 to 3354f8c4f8cb (2 revisions) (cla: yes, waiting for tree to go green)
[24379](https://github.com/flutter/engine/pull/24379) [flutter_releases] Flutter Engine 1.26.0-17.6.pre Beta Cherrypicks (cla: yes)
[24380](https://github.com/flutter/engine/pull/24380) Roll Skia from 3354f8c4f8cb to 2494942f0d8d (4 revisions) (cla: yes, waiting for tree to go green)
[24381](https://github.com/flutter/engine/pull/24381) Roll Fuchsia Linux SDK from YMY-cajLa... to AjjJVX_95... (cla: yes, waiting for tree to go green)
[24382](https://github.com/flutter/engine/pull/24382) [canvaskit] fix Path.from (cla: yes, platform-web)
[24383](https://github.com/flutter/engine/pull/24383) Roll Skia from 2494942f0d8d to 6e73404a782c (3 revisions) (cla: yes, waiting for tree to go green)
[24384](https://github.com/flutter/engine/pull/24384) Set debug client info for sysmem allocator (cla: yes, waiting for tree to go green)
[24386](https://github.com/flutter/engine/pull/24386) Pin the package_config package used by generate_package_config at ver⦠(cla: yes)
[24387](https://github.com/flutter/engine/pull/24387) Reland "Remove pipeline in favor of layer tree holder (#18901)" (cla: yes)
[24388](https://github.com/flutter/engine/pull/24388) Roll Skia from 6e73404a782c to ba4c3086ba80 (3 revisions) (cla: yes, waiting for tree to go green)
[24389](https://github.com/flutter/engine/pull/24389) Ensures that hit testing only resturns focusable nodes. (#23931) #24385 (cla: yes)
[24390](https://github.com/flutter/engine/pull/24390) Roll Dart SDK from add1eac3622c to 6eafd1856eb5 (1 revision) (cla: yes, waiting for tree to go green)
[24391](https://github.com/flutter/engine/pull/24391) Roll Fuchsia Mac SDK from WIqUEANCH... to yyQmi032P... (cla: yes, waiting for tree to go green)
[24392](https://github.com/flutter/engine/pull/24392) [ci] Remove null safety experiment flag (cla: yes)
[24393](https://github.com/flutter/engine/pull/24393) Roll Skia from ba4c3086ba80 to 4f065e286df6 (2 revisions) (cla: yes, waiting for tree to go green)
[24394](https://github.com/flutter/engine/pull/24394) Roll Dart SDK from 6eafd1856eb5 to e9693f1b2401 (1 revision) (cla: yes, waiting for tree to go green)
[24395](https://github.com/flutter/engine/pull/24395) Roll Fuchsia Linux SDK from AjjJVX_95... to uJ8jPHroy... (cla: yes, waiting for tree to go green)
[24396](https://github.com/flutter/engine/pull/24396) Roll Fuchsia Mac SDK from yyQmi032P... to NQL9o1B8n... (cla: yes, waiting for tree to go green)
[24397](https://github.com/flutter/engine/pull/24397) Roll Dart SDK from e9693f1b2401 to 4c8147b7b41e (1 revision) (cla: yes, waiting for tree to go green)
[24398](https://github.com/flutter/engine/pull/24398) Roll Skia from 4f065e286df6 to 554aabbaa8e8 (1 revision) (cla: yes, waiting for tree to go green)
[24399](https://github.com/flutter/engine/pull/24399) Roll buildroot to e7857d269381e23d1a89a3cbf017854992bda15a (cla: yes)
[24402](https://github.com/flutter/engine/pull/24402) Roll Dart SDK from 4c8147b7b41e to 56fa015ca3ec (1 revision) (cla: yes, waiting for tree to go green)
[24403](https://github.com/flutter/engine/pull/24403) Roll Skia from 554aabbaa8e8 to 7a2ff98ce68b (1 revision) (cla: yes, waiting for tree to go green)
[24404](https://github.com/flutter/engine/pull/24404) Roll Skia from 7a2ff98ce68b to c3e152b9f795 (2 revisions) (cla: yes, waiting for tree to go green)
[24408](https://github.com/flutter/engine/pull/24408) Roll Dart SDK from 56fa015ca3ec to c9b47adb178e (1 revision) (cla: yes, waiting for tree to go green)
[24410](https://github.com/flutter/engine/pull/24410) Roll Fuchsia Mac SDK from NQL9o1B8n... to OHm_snJzB... (cla: yes, waiting for tree to go green)
[24411](https://github.com/flutter/engine/pull/24411) Roll Fuchsia Linux SDK from uJ8jPHroy... to JmB58d-3R... (cla: yes, waiting for tree to go green)
[24414](https://github.com/flutter/engine/pull/24414) Roll Skia from c3e152b9f795 to b44fbb3392f8 (3 revisions) (cla: yes, waiting for tree to go green)
[24415](https://github.com/flutter/engine/pull/24415) Roll Skia from b44fbb3392f8 to 56a8fbd21ee2 (3 revisions) (cla: yes, waiting for tree to go green)
[24416](https://github.com/flutter/engine/pull/24416) Roll Dart SDK from c9b47adb178e to 648d5f951915 (1 revision) (cla: yes, waiting for tree to go green)
[24418](https://github.com/flutter/engine/pull/24418) Roll Skia from 56a8fbd21ee2 to 7cb0f6e9702a (1 revision) (cla: yes, waiting for tree to go green)
[24419](https://github.com/flutter/engine/pull/24419) Roll Fuchsia Mac SDK from OHm_snJzB... to H0v5Ox4Vs... (cla: yes, waiting for tree to go green)
[24420](https://github.com/flutter/engine/pull/24420) Roll Fuchsia Linux SDK from JmB58d-3R... to KKD5xVYLO... (cla: yes, waiting for tree to go green)
[24421](https://github.com/flutter/engine/pull/24421) Roll Dart SDK from 648d5f951915 to 39dc63439396 (1 revision) (cla: yes, waiting for tree to go green)
[24422](https://github.com/flutter/engine/pull/24422) Windows: Fix fml::GetFullHandlePath for WINUWP target (cla: yes)
[24423](https://github.com/flutter/engine/pull/24423) Add missing header guard, namespace (affects: desktop, affects: engine, affects: text input, cla: yes)
[24424](https://github.com/flutter/engine/pull/24424) Adjust header guards for updated paths (cla: yes)
[24425](https://github.com/flutter/engine/pull/24425) Roll Fuchsia Mac SDK from H0v5Ox4Vs... to eG4TqZBn9... (cla: yes, waiting for tree to go green)
[24427](https://github.com/flutter/engine/pull/24427) Roll Skia from 7cb0f6e9702a to 330578e81158 (1 revision) (cla: yes, waiting for tree to go green)
[24428](https://github.com/flutter/engine/pull/24428) Windows: Improve window resizing (cla: yes, waiting for tree to go green)
[24430](https://github.com/flutter/engine/pull/24430) Roll Fuchsia Linux SDK from KKD5xVYLO... to C2FaCuCLB... (cla: yes, waiting for tree to go green)
[24431](https://github.com/flutter/engine/pull/24431) Roll Dart SDK from 39dc63439396 to 4db0f5599c85 (1 revision) (cla: yes, waiting for tree to go green)
[24434](https://github.com/flutter/engine/pull/24434) Roll Skia from 330578e81158 to 4a3ec173b31b (5 revisions) (cla: yes, waiting for tree to go green)
[24435](https://github.com/flutter/engine/pull/24435) Roll Skia from 4a3ec173b31b to fc48f2b5f67d (2 revisions) (cla: yes, waiting for tree to go green)
[24436](https://github.com/flutter/engine/pull/24436) Revert Dart SDK to 1e0fec6e48cf89f46973af38a5c2de4bc760a135 (cla: yes)
[24437](https://github.com/flutter/engine/pull/24437) Roll Fuchsia Mac SDK from eG4TqZBn9... to kyS_yAeml... (cla: yes, waiting for tree to go green)
[24438](https://github.com/flutter/engine/pull/24438) Roll buildroot to 47043991a50e1cfda66766009885197a05bb29f1 (affects: desktop, cla: yes, platform-windows)
[24439](https://github.com/flutter/engine/pull/24439) Roll Clang Linux from 6BYbqFtrH... to L9TEpKo-D... (cla: yes, waiting for tree to go green)
[24440](https://github.com/flutter/engine/pull/24440) Roll Clang Mac from hoapl8VNW... to QimZEUJUn... (cla: yes, waiting for tree to go green)
[24441](https://github.com/flutter/engine/pull/24441) fix infinite loop in findMinimumFontsForCodeunits (cla: yes)
[24442](https://github.com/flutter/engine/pull/24442) Roll Skia from fc48f2b5f67d to dbd4e6f0c0d4 (5 revisions) (cla: yes, waiting for tree to go green)
[24443](https://github.com/flutter/engine/pull/24443) [shell][fuchsia] Update README.md (cla: yes)
[24444](https://github.com/flutter/engine/pull/24444) Roll Fuchsia Linux SDK from C2FaCuCLB... to PNW_Evsrm... (cla: yes, waiting for tree to go green)
[24446](https://github.com/flutter/engine/pull/24446) Roll Skia from dbd4e6f0c0d4 to bf43df6478f9 (2 revisions) (cla: yes, waiting for tree to go green)
[24447](https://github.com/flutter/engine/pull/24447) [web] Fix right click issue when dragging (cla: yes, platform-web, waiting for tree to go green)
[24448](https://github.com/flutter/engine/pull/24448) Roll Skia from bf43df6478f9 to fcc758cdc24e (4 revisions) (cla: yes, waiting for tree to go green)
[24449](https://github.com/flutter/engine/pull/24449) Roll Dart SDK from 1e0fec6e48cf to 494cd25b1d9a (12 revisions) (cla: yes, waiting for tree to go green)
[24450](https://github.com/flutter/engine/pull/24450) Roll Skia from fcc758cdc24e to fbc3a8362d7f (1 revision) (cla: yes, waiting for tree to go green)
[24451](https://github.com/flutter/engine/pull/24451) Roll Fuchsia Mac SDK from kyS_yAeml... to RsAmJzDpe... (cla: yes, waiting for tree to go green)
[24452](https://github.com/flutter/engine/pull/24452) Roll Dart SDK from 494cd25b1d9a to 34052583a73c (1 revision) (cla: yes, waiting for tree to go green)
[24453](https://github.com/flutter/engine/pull/24453) Roll Skia from fbc3a8362d7f to 8172d165772e (1 revision) (cla: yes, waiting for tree to go green)
[24454](https://github.com/flutter/engine/pull/24454) Roll Dart SDK from 34052583a73c to d70fb6e63fe4 (2 revisions) (cla: yes, waiting for tree to go green)
[24455](https://github.com/flutter/engine/pull/24455) Roll Skia from 8172d165772e to 2bb5ef3e9fbf (2 revisions) (cla: yes, waiting for tree to go green)
[24456](https://github.com/flutter/engine/pull/24456) Revert "Reland "Remove pipeline in favor of layer tree holder (#18901β¦ (cla: yes, waiting for tree to go green)
[24458](https://github.com/flutter/engine/pull/24458) Roll Fuchsia Linux SDK from PNW_Evsrm... to TqiQL9N6s... (cla: yes, waiting for tree to go green)
[24459](https://github.com/flutter/engine/pull/24459) Roll Skia from 2bb5ef3e9fbf to 270cec21a7e7 (10 revisions) (cla: yes, waiting for tree to go green)
[24460](https://github.com/flutter/engine/pull/24460) Roll Dart SDK from d70fb6e63fe4 to fc5e80cbdc6f (1 revision) (cla: yes, waiting for tree to go green)
[24461](https://github.com/flutter/engine/pull/24461) Revert "Roll CanvasKit to 0.23" (cla: yes)
[24463](https://github.com/flutter/engine/pull/24463) [Android text input] fix android autofill on focused text field (cla: yes, platform-android, waiting for tree to go green)
[24465](https://github.com/flutter/engine/pull/24465) Update goldens to 578ecb91ea33004cd0ba0af513884cc28ba88cf4 (cla: yes)
[24467](https://github.com/flutter/engine/pull/24467) Roll Skia from 270cec21a7e7 to 5db699af9de8 (9 revisions) (cla: yes, waiting for tree to go green)
[24468](https://github.com/flutter/engine/pull/24468) Roll Dart SDK from fc5e80cbdc6f to ae768c81b213 (1 revision) (cla: yes, waiting for tree to go green)
[24469](https://github.com/flutter/engine/pull/24469) Roll Skia from 5db699af9de8 to bec62308e42d (4 revisions) (cla: yes, waiting for tree to go green)
[24470](https://github.com/flutter/engine/pull/24470) fix missing CJK and symbol glyphs, font precedence, fallback reset (cla: yes)
[24471](https://github.com/flutter/engine/pull/24471) Roll Skia from bec62308e42d to a6e776060f49 (1 revision) (cla: yes, waiting for tree to go green)
[24472](https://github.com/flutter/engine/pull/24472) Roll Fuchsia Mac SDK from RsAmJzDpe... to SP8bksW54... (cla: yes, waiting for tree to go green)
[24474](https://github.com/flutter/engine/pull/24474) Roll Skia from a6e776060f49 to 82a8130654bc (1 revision) (cla: yes, waiting for tree to go green)
[24475](https://github.com/flutter/engine/pull/24475) Roll Skia from 82a8130654bc to a94ca0a9d34b (1 revision) (cla: yes, waiting for tree to go green)
[24476](https://github.com/flutter/engine/pull/24476) Roll Fuchsia Linux SDK from TqiQL9N6s... to elAhIisHy... (cla: yes, waiting for tree to go green)
[24477](https://github.com/flutter/engine/pull/24477) Roll Dart SDK from ae768c81b213 to 6af7d0febb32 (2 revisions) (cla: yes, waiting for tree to go green)
[24478](https://github.com/flutter/engine/pull/24478) Roll Skia from a94ca0a9d34b to 11440726916f (1 revision) (cla: yes, waiting for tree to go green)
[24479](https://github.com/flutter/engine/pull/24479) Let FlutterEngine to turn off automaticallyRegisterPlugins from AndroidManifest.xml. (cla: yes, platform-android, waiting for tree to go green)
[24480](https://github.com/flutter/engine/pull/24480) Roll Skia from 11440726916f to 9f8e9ece8a4a (3 revisions) (cla: yes, waiting for tree to go green)
[24481](https://github.com/flutter/engine/pull/24481) Roll Skia from 9f8e9ece8a4a to 70e51e6d761d (1 revision) (cla: yes, waiting for tree to go green)
[24484](https://github.com/flutter/engine/pull/24484) Roll Skia from 70e51e6d761d to bded42ab5173 (5 revisions) (cla: yes, waiting for tree to go green)
[24485](https://github.com/flutter/engine/pull/24485) Roll back Dart SDK to fc5e80cbdc6f695bedd4fd5f77f9ee511386b4ca (cla: yes)
[24486](https://github.com/flutter/engine/pull/24486) Revert "[Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards" (cla: yes, platform-android, waiting for tree to go green)
[24487](https://github.com/flutter/engine/pull/24487) Roll Skia from bded42ab5173 to e548dcbf1b8e (5 revisions) (cla: yes, waiting for tree to go green)
[24488](https://github.com/flutter/engine/pull/24488) Roll Fuchsia Mac SDK from SP8bksW54... to odBGYc9-_... (cla: yes, waiting for tree to go green)
[24489](https://github.com/flutter/engine/pull/24489) backdrop filter layer should report cull_rect as its paint bounds (cla: yes)
[24490](https://github.com/flutter/engine/pull/24490) Roll Skia from e548dcbf1b8e to 42582fc97bb3 (7 revisions) (cla: yes, waiting for tree to go green)
[24491](https://github.com/flutter/engine/pull/24491) Roll Dart SDK from fc5e80cbdc6f to 3cf0a5ae9d65 (4 revisions) (cla: yes, waiting for tree to go green)
[24493](https://github.com/flutter/engine/pull/24493) Roll Skia from 42582fc97bb3 to 17776e38ef63 (3 revisions) (cla: yes, waiting for tree to go green)
[24494](https://github.com/flutter/engine/pull/24494) Defer making skshader until we know quality (#24376) (cla: yes)
[24497](https://github.com/flutter/engine/pull/24497) Roll Skia from 17776e38ef63 to 91bfda0ac819 (5 revisions) (cla: yes, waiting for tree to go green)
[24498](https://github.com/flutter/engine/pull/24498) Roll CanvasKit to 0.24. (cla: yes)
[24499](https://github.com/flutter/engine/pull/24499) Roll Dart SDK from 3cf0a5ae9d65 to 98a1f33db020 (1 revision) (cla: yes, waiting for tree to go green)
[24501](https://github.com/flutter/engine/pull/24501) Roll Skia from 91bfda0ac819 to 1017a3558fc8 (2 revisions) (cla: yes, waiting for tree to go green)
[24502](https://github.com/flutter/engine/pull/24502) Roll back Dart SDK to fc5e80cbdc6f695bedd4fd5f77f9ee511386b4ca (cla: yes)
[24503](https://github.com/flutter/engine/pull/24503) iOS: Started initializing the gpu disable sync switch based on the app state. (cla: yes, platform-ios)
[24505](https://github.com/flutter/engine/pull/24505) Roll Fuchsia Linux SDK from elAhIisHy... to dkB0v_vTx... (cla: yes, waiting for tree to go green)
[24507](https://github.com/flutter/engine/pull/24507) Fix flutter_frontend_server test - name parameter is required now. (cla: yes)
[24508](https://github.com/flutter/engine/pull/24508) Roll Skia from 1017a3558fc8 to 3a71687275bf (1 revision) (cla: yes, waiting for tree to go green)
[24509](https://github.com/flutter/engine/pull/24509) Roll Skia from 3a71687275bf to c5e4b2546049 (2 revisions) (cla: yes, waiting for tree to go green)
[24510](https://github.com/flutter/engine/pull/24510) Roll Skia from c5e4b2546049 to bbdbff81bdf6 (1 revision) (cla: yes, waiting for tree to go green)
[24511](https://github.com/flutter/engine/pull/24511) Roll Fuchsia Mac SDK from odBGYc9-_... to U2pgmH2x-... (cla: yes, waiting for tree to go green)
[24512](https://github.com/flutter/engine/pull/24512) Roll Skia from bbdbff81bdf6 to 82094cdb9d54 (1 revision) (cla: yes, waiting for tree to go green)
[24513](https://github.com/flutter/engine/pull/24513) Roll Skia from 82094cdb9d54 to 81a58cfe3bf8 (1 revision) (cla: yes, waiting for tree to go green)
[24514](https://github.com/flutter/engine/pull/24514) Roll Skia from 81a58cfe3bf8 to af8db303f7f4 (2 revisions) (cla: yes, waiting for tree to go green)
[24515](https://github.com/flutter/engine/pull/24515) Roll Skia from af8db303f7f4 to a50940da6d67 (1 revision) (cla: yes, waiting for tree to go green)
[24517](https://github.com/flutter/engine/pull/24517) Roll Skia from a50940da6d67 to a8448470e80a (1 revision) (cla: yes, waiting for tree to go green)
[24518](https://github.com/flutter/engine/pull/24518) Roll Dart SDK to f78bd85cda0c (cla: yes)
[24519](https://github.com/flutter/engine/pull/24519) Default to bilerp for layers (cla: yes, waiting for tree to go green)
[24520](https://github.com/flutter/engine/pull/24520) Roll Skia from a8448470e80a to 24ec76454aa5 (3 revisions) (cla: yes, waiting for tree to go green)
[24522](https://github.com/flutter/engine/pull/24522) Roll Fuchsia Linux SDK from dkB0v_vTx... to 9MPgLtFll... (cla: yes, waiting for tree to go green)
[24523](https://github.com/flutter/engine/pull/24523) External Texture support for macOS Metal (cla: yes, waiting for tree to go green)
[24524](https://github.com/flutter/engine/pull/24524) Roll Skia from 24ec76454aa5 to c505e435d44a (9 revisions) (cla: yes, waiting for tree to go green)
[24526](https://github.com/flutter/engine/pull/24526) Fix input flow event logic (cla: yes, waiting for tree to go green)
[24527](https://github.com/flutter/engine/pull/24527) Roll Fuchsia Mac SDK from U2pgmH2x-... to 5vi8TQldn... (cla: yes, waiting for tree to go green)
[24529](https://github.com/flutter/engine/pull/24529) NNBD cleanup (cla: yes)
[24532](https://github.com/flutter/engine/pull/24532) Roll Skia from c505e435d44a to cad4709ca475 (14 revisions) (cla: yes, waiting for tree to go green)
[24533](https://github.com/flutter/engine/pull/24533) Use common desktop TextInputModel on macOS (cla: yes)
[24534](https://github.com/flutter/engine/pull/24534) Roll Fuchsia Linux SDK from 9MPgLtFll... to -8KkhcJ3h... (cla: yes, waiting for tree to go green)
[24535](https://github.com/flutter/engine/pull/24535) Roll Fuchsia Mac SDK from 5vi8TQldn... to YBiCU3Z3r... (cla: yes, waiting for tree to go green)
[24539](https://github.com/flutter/engine/pull/24539) Roll Fuchsia Linux SDK from -8KkhcJ3h... to c9naFjip3... (cla: yes, waiting for tree to go green)
[24541](https://github.com/flutter/engine/pull/24541) Roll Fuchsia Mac SDK from YBiCU3Z3r... to Fote78jZn... (cla: yes, waiting for tree to go green)
[24542](https://github.com/flutter/engine/pull/24542) Restore call to setFilterQuality (cla: yes, waiting for tree to go green)
[24543](https://github.com/flutter/engine/pull/24543) Delete multi set args parameter from intent (cla: yes, platform-android, waiting for tree to go green)
[24546](https://github.com/flutter/engine/pull/24546) remove useless code in lib/ui/compositing/scene_builder.cc (cla: yes, waiting for tree to go green)
[24553](https://github.com/flutter/engine/pull/24553) Roll Skia from cad4709ca475 to cc75fa8f958b (13 revisions) (cla: yes, waiting for tree to go green)
[24554](https://github.com/flutter/engine/pull/24554) Roll Dart SDK from f78bd85cda0c to 2d30896744b5 (9 revisions) (cla: yes, waiting for tree to go green)
[24556](https://github.com/flutter/engine/pull/24556) [web] Add xcode-symlinks flag to felt tool (cla: yes)
[24557](https://github.com/flutter/engine/pull/24557) [flutter_releases] Flutter 1.26.0-17.7.pre Beta Engine Cherrypicks (cla: yes)
[24559](https://github.com/flutter/engine/pull/24559) Roll Skia from cc75fa8f958b to bd9740074445 (10 revisions) (cla: yes, waiting for tree to go green)
[24562](https://github.com/flutter/engine/pull/24562) Roll Dart SDK from 2d30896744b5 to a476002dba33 (2 revisions) (cla: yes, waiting for tree to go green)
[24566](https://github.com/flutter/engine/pull/24566) Roll Fuchsia Linux SDK from c9naFjip3... to 8unxeSvw2... (cla: yes, waiting for tree to go green)
[24567](https://github.com/flutter/engine/pull/24567) Roll Skia from bd9740074445 to e82436f5c353 (4 revisions) (cla: yes, waiting for tree to go green)
[24568](https://github.com/flutter/engine/pull/24568) Roll Fuchsia Mac SDK from Fote78jZn... to 0c-7C5noH... (cla: yes, waiting for tree to go green)
[24571](https://github.com/flutter/engine/pull/24571) Roll Skia from e82436f5c353 to 98f85d0e45f1 (15 revisions) (cla: yes, waiting for tree to go green)
[24572](https://github.com/flutter/engine/pull/24572) [web] Fix placeholder-only paragraphs (cla: yes, platform-web, waiting for tree to go green)
[24574](https://github.com/flutter/engine/pull/24574) [web] Implement Canvas.drawPicture (cla: yes)
[24575](https://github.com/flutter/engine/pull/24575) Add method to obtain native string resource in localization plugin. (cla: yes, platform-android)
[24577](https://github.com/flutter/engine/pull/24577) Roll Dart SDK from a476002dba33 to 60e4098d2d66 (5 revisions) (cla: yes, waiting for tree to go green)
[24579](https://github.com/flutter/engine/pull/24579) Roll Skia from 98f85d0e45f1 to 066f411b2ae6 (15 revisions) (cla: yes, waiting for tree to go green)
[24580](https://github.com/flutter/engine/pull/24580) Roll Skia from 066f411b2ae6 to d15c52d2333e (3 revisions) (cla: yes, waiting for tree to go green)
[24581](https://github.com/flutter/engine/pull/24581) [Android Input] Passthrough movement keys when there's no selection (cla: yes, platform-android, waiting for tree to go green)
[24582](https://github.com/flutter/engine/pull/24582) Expand FilterQuality API docs (cla: yes, waiting for tree to go green)
[24583](https://github.com/flutter/engine/pull/24583) Signal an error if an Isolate.spwanUri call uses an unsupported URI (cla: yes, waiting for tree to go green)
[24584](https://github.com/flutter/engine/pull/24584) Roll Skia from d15c52d2333e to 5ef07a4097d4 (1 revision) (cla: yes, waiting for tree to go green)
[24587](https://github.com/flutter/engine/pull/24587) Roll Skia from 5ef07a4097d4 to 6d2b7688f64d (3 revisions) (cla: yes, waiting for tree to go green)
[24588](https://github.com/flutter/engine/pull/24588) [flutter_releases] Flutter 1.26.0-17.8.pre Beta Engine Cherrypicks (cla: yes)
[24589](https://github.com/flutter/engine/pull/24589) Roll Dart SDK from 60e4098d2d66 to bc9e69aeafa6 (2 revisions) (cla: yes, waiting for tree to go green)
[24590](https://github.com/flutter/engine/pull/24590) Roll Skia from 6d2b7688f64d to 9a7fcf7eda77 (1 revision) (cla: yes, waiting for tree to go green)
[24591](https://github.com/flutter/engine/pull/24591) Roll Fuchsia Mac SDK from 0c-7C5noH... to pxsXcA3AQ... (cla: yes, waiting for tree to go green)
[24593](https://github.com/flutter/engine/pull/24593) Roll Skia from 9a7fcf7eda77 to 6b27ae8db432 (1 revision) (cla: yes, waiting for tree to go green)
[24594](https://github.com/flutter/engine/pull/24594) Roll Skia from 6b27ae8db432 to 68c43dbc5fb1 (1 revision) (cla: yes, waiting for tree to go green)
[24595](https://github.com/flutter/engine/pull/24595) Roll Fuchsia Linux SDK from 8unxeSvw2... to Zcy9nP_sY... (cla: yes, waiting for tree to go green)
[24596](https://github.com/flutter/engine/pull/24596) Roll Skia from 68c43dbc5fb1 to 7c0200a8e233 (1 revision) (cla: yes, waiting for tree to go green)
[24597](https://github.com/flutter/engine/pull/24597) Roll Dart SDK from bc9e69aeafa6 to 86d1f3b6a97c (1 revision) (cla: yes, waiting for tree to go green)
[24598](https://github.com/flutter/engine/pull/24598) Roll Skia from 7c0200a8e233 to 70cd6d14465c (8 revisions) (cla: yes, waiting for tree to go green)
[24600](https://github.com/flutter/engine/pull/24600) Revert "[macos] Make metal the default rendering backend on macOS >= β¦ (cla: yes)
[24601](https://github.com/flutter/engine/pull/24601) [macos] Reland default metal and also check if the system supports metal before defaulting to it (cla: yes)
[24602](https://github.com/flutter/engine/pull/24602) Skip flaky webkit shadermask test (cla: yes)
[24603](https://github.com/flutter/engine/pull/24603) Roll Skia from 70cd6d14465c to 72917e452932 (5 revisions) (cla: yes, waiting for tree to go green)
[24604](https://github.com/flutter/engine/pull/24604) Roll Fuchsia Mac SDK from pxsXcA3AQ... to mpA8VcWT4... (cla: yes, waiting for tree to go green)
[24605](https://github.com/flutter/engine/pull/24605) Roll Dart SDK from 86d1f3b6a97c to 39424b348c44 (2 revisions) (cla: yes, waiting for tree to go green)
[24607](https://github.com/flutter/engine/pull/24607) Roll Fuchsia Linux SDK from Zcy9nP_sY... to kfjppUrzf... (cla: yes, waiting for tree to go green)
[24608](https://github.com/flutter/engine/pull/24608) Roll Clang Linux from L9TEpKo-D... to crEO9FDXg... (cla: yes, waiting for tree to go green)
[24609](https://github.com/flutter/engine/pull/24609) Roll Clang Mac from QimZEUJUn... to MQQ43_LGr... (cla: yes, waiting for tree to go green)
[24611](https://github.com/flutter/engine/pull/24611) Roll Skia from 72917e452932 to 029851d9513a (16 revisions) (cla: yes, waiting for tree to go green)
[24612](https://github.com/flutter/engine/pull/24612) Allow calls to legacyMakeTypeface in the AssetFontManager (cla: yes, waiting for tree to go green)
[24613](https://github.com/flutter/engine/pull/24613) Roll Skia from 029851d9513a to 8a43a2889ef8 (3 revisions) (cla: yes, waiting for tree to go green)
[24614](https://github.com/flutter/engine/pull/24614) Roll Dart SDK from 39424b348c44 to b9c5d901eac0 (1 revision) (cla: yes, waiting for tree to go green)
[24616](https://github.com/flutter/engine/pull/24616) Add third_party/libpng repository and roll buildroot (cla: yes)
[24618](https://github.com/flutter/engine/pull/24618) Roll Dart SDK from b9c5d901eac0 to fa4b1e834d24 (1 revision) (cla: yes, waiting for tree to go green)
[24620](https://github.com/flutter/engine/pull/24620) Roll Skia from 8a43a2889ef8 to 61a10b649aa7 (4 revisions) (cla: yes, waiting for tree to go green)
[24621](https://github.com/flutter/engine/pull/24621) Roll Fuchsia Mac SDK from mpA8VcWT4... to oqp6Q2nhF... (cla: yes, waiting for tree to go green)
[24622](https://github.com/flutter/engine/pull/24622) Roll Dart SDK from fa4b1e834d24 to 63c6585d8499 (2 revisions) (cla: yes, waiting for tree to go green)
[24623](https://github.com/flutter/engine/pull/24623) [linux] Fix text selection via Shift+Home/End (cla: yes)
[24624](https://github.com/flutter/engine/pull/24624) Roll Skia from 61a10b649aa7 to e79bb32365ea (1 revision) (cla: yes, waiting for tree to go green)
[24625](https://github.com/flutter/engine/pull/24625) Roll Dart SDK from 63c6585d8499 to 6b7054122356 (1 revision) (cla: yes, waiting for tree to go green)
[24630](https://github.com/flutter/engine/pull/24630) Roll Skia from e79bb32365ea to 4ac9aadd306b (4 revisions) (cla: yes, waiting for tree to go green)
[24631](https://github.com/flutter/engine/pull/24631) Roll Dart SDK from 6b7054122356 to a6fb0acd71ea (1 revision) (cla: yes, waiting for tree to go green)
[24633](https://github.com/flutter/engine/pull/24633) Roll Skia from 4ac9aadd306b to 38b9a4bc3e3c (7 revisions) (cla: yes, waiting for tree to go green)
[24635](https://github.com/flutter/engine/pull/24635) [flutter_releases] Flutter Engine Cherrypicks (cla: yes, platform-android)
[24637](https://github.com/flutter/engine/pull/24637) Roll Skia from 38b9a4bc3e3c to 9fe866174147 (8 revisions) (cla: yes, waiting for tree to go green)
[24638](https://github.com/flutter/engine/pull/24638) Roll Fuchsia Mac SDK from oqp6Q2nhF... to VyKdR4ouE... (cla: yes, waiting for tree to go green)
[24640](https://github.com/flutter/engine/pull/24640) Enables semantics when voice control is turned on (cla: yes, platform-ios, waiting for tree to go green)
[24644](https://github.com/flutter/engine/pull/24644) Fixed problem where AndroidShellHolder was trashing the ThreadHost in its deconstructor (cla: yes, cp: 1.26, platform-android, platform-ios)
[24645](https://github.com/flutter/engine/pull/24645) fuchsia: Correct PlatformView scale/transform (cla: yes, platform-fuchsia)
[24646](https://github.com/flutter/engine/pull/24646) Roll Skia from 9fe866174147 to a42c6192ff67 (12 revisions) (cla: yes, waiting for tree to go green)
[24647](https://github.com/flutter/engine/pull/24647) Roll Dart SDK from a6fb0acd71ea to aa0fea71185b (2 revisions) (cla: yes, waiting for tree to go green)
[24648](https://github.com/flutter/engine/pull/24648) Roll Skia from a42c6192ff67 to e3a8980915b7 (1 revision) (cla: yes, waiting for tree to go green)
[24649](https://github.com/flutter/engine/pull/24649) Roll Dart SDK from aa0fea71185b to 3870a33d25fb (1 revision) (cla: yes, waiting for tree to go green)
[24650](https://github.com/flutter/engine/pull/24650) Roll Skia from e3a8980915b7 to 2d247a10f3de (1 revision) (cla: yes, waiting for tree to go green)
[24651](https://github.com/flutter/engine/pull/24651) Fix exactCullRect computation (cla: yes, platform-web)
[24652](https://github.com/flutter/engine/pull/24652) Roll Dart SDK from 3870a33d25fb to 9ef3cef4a36c (1 revision) (cla: yes, waiting for tree to go green)
[24653](https://github.com/flutter/engine/pull/24653) Roll Fuchsia Mac SDK from VyKdR4ouE... to 7jkJkkEng... (cla: yes, waiting for tree to go green)
[24654](https://github.com/flutter/engine/pull/24654) Roll Skia from 2d247a10f3de to 34c7e114928a (1 revision) (cla: yes, waiting for tree to go green)
[24655](https://github.com/flutter/engine/pull/24655) Roll Skia from 34c7e114928a to 453f143dba3f (1 revision) (cla: yes, waiting for tree to go green)
[24656](https://github.com/flutter/engine/pull/24656) Roll Dart SDK from 9ef3cef4a36c to ac2d5fd1c35d (1 revision) (cla: yes, waiting for tree to go green)
[24658](https://github.com/flutter/engine/pull/24658) Roll Skia from 453f143dba3f to 1f57a0f1ae0b (6 revisions) (cla: yes, waiting for tree to go green)
[24659](https://github.com/flutter/engine/pull/24659) Roll Skia from 1f57a0f1ae0b to 96f6d9a37f1c (3 revisions) (cla: yes, waiting for tree to go green)
[24660](https://github.com/flutter/engine/pull/24660) Update shell_fuchsia_unittests.cc (cla: yes)
[24661](https://github.com/flutter/engine/pull/24661) Roll Skia from 96f6d9a37f1c to f20e75619cd3 (5 revisions) (cla: yes, waiting for tree to go green)
[24662](https://github.com/flutter/engine/pull/24662) SkParagraph: support multiple default font families (cla: yes, waiting for tree to go green)
[24664](https://github.com/flutter/engine/pull/24664) Roll Dart SDK from ac2d5fd1c35d to cf3ef9e5ced1 (1 revision) (cla: yes, waiting for tree to go green)
[24665](https://github.com/flutter/engine/pull/24665) Revert "TextStyle level leadingDistribution" (cla: yes, waiting for tree to go green)
[24666](https://github.com/flutter/engine/pull/24666) Roll Skia from f20e75619cd3 to 6706c9fa14c4 (2 revisions) (cla: yes, waiting for tree to go green)
[24667](https://github.com/flutter/engine/pull/24667) Roll Fuchsia Linux SDK from kfjppUrzf... to Idk0D_EZk... (cla: yes, waiting for tree to go green)
[24668](https://github.com/flutter/engine/pull/24668) Reland "TextStyle level leadingDistribution (#24025)" reverted in #24665 (cla: yes, waiting for tree to go green)
[24669](https://github.com/flutter/engine/pull/24669) Roll Skia from 6706c9fa14c4 to deed7f65ff6b (3 revisions) (cla: yes, waiting for tree to go green)
[24670](https://github.com/flutter/engine/pull/24670) Roll Skia from deed7f65ff6b to 07c8401a54d3 (5 revisions) (cla: yes, waiting for tree to go green)
[24671](https://github.com/flutter/engine/pull/24671) Roll Dart SDK from cf3ef9e5ced1 to 632ae0dee554 (1 revision) (cla: yes, waiting for tree to go green)
[24672](https://github.com/flutter/engine/pull/24672) Convert cursor rect to device coordinates on Win32 (affects: desktop, cla: yes, platform-windows)
[24673](https://github.com/flutter/engine/pull/24673) Roll ICU to match the latest version used by Chromium (cla: yes)
[24674](https://github.com/flutter/engine/pull/24674) Roll Fuchsia Mac SDK from 7jkJkkEng... to kLoBz4ZY4... (cla: yes, waiting for tree to go green)
[24675](https://github.com/flutter/engine/pull/24675) Declare a constant for the bit index of the force_strut_height flag value (cla: yes, waiting for tree to go green)
[24676](https://github.com/flutter/engine/pull/24676) Roll Dart SDK from 632ae0dee554 to d3320177ee9a (1 revision) (cla: yes, waiting for tree to go green)
[24677](https://github.com/flutter/engine/pull/24677) [Windows] Hide Win32 API of the keyboard system behind ifdef (cla: yes)
[24678](https://github.com/flutter/engine/pull/24678) Reverts Dart to aa0fea71185b6c3a763ff3875ea0973a6729a04d (cla: yes)
[24679](https://github.com/flutter/engine/pull/24679) Switch to correct OpenGL context before deleting framebuffers. (cla: yes)
[24680](https://github.com/flutter/engine/pull/24680) Roll Fuchsia Linux SDK from Idk0D_EZk... to oOI7Iq5ER... (cla: yes, waiting for tree to go green)
[24681](https://github.com/flutter/engine/pull/24681) Roll Fuchsia Mac SDK from kLoBz4ZY4... to eWFcsfSTf... (cla: yes, waiting for tree to go green)
[24682](https://github.com/flutter/engine/pull/24682) Do not use eglQuerySurface to query surface dimensions (cla: yes, waiting for tree to go green)
[24683](https://github.com/flutter/engine/pull/24683) Roll Skia from 07c8401a54d3 to 4a4fbe8140cb (1 revision) (cla: yes, waiting for tree to go green)
[24684](https://github.com/flutter/engine/pull/24684) Roll Skia from 4a4fbe8140cb to 202420e0147b (1 revision) (cla: yes, waiting for tree to go green)
[24685](https://github.com/flutter/engine/pull/24685) Roll Fuchsia Linux SDK from oOI7Iq5ER... to oJPqi5jbV... (cla: yes, waiting for tree to go green)
[24686](https://github.com/flutter/engine/pull/24686) Consistent naming for Win32 emebedder (cla: yes)
[24687](https://github.com/flutter/engine/pull/24687) Roll Fuchsia Mac SDK from eWFcsfSTf... to SrGef2eEA... (cla: yes, waiting for tree to go green)
[24688](https://github.com/flutter/engine/pull/24688) remove _getRRect: fixes assertion error (cla: yes)
[24689](https://github.com/flutter/engine/pull/24689) Roll Skia from 202420e0147b to 59b389a407de (1 revision) (cla: yes, waiting for tree to go green)
[24690](https://github.com/flutter/engine/pull/24690) Fix memory leak and bug in the RunsOnCreationTaskRunner check (cla: yes, platform-android, waiting for tree to go green)
[24691](https://github.com/flutter/engine/pull/24691) Roll Fuchsia Linux SDK from oJPqi5jbV... to RTXXU6CwW... (cla: yes, waiting for tree to go green)
[24692](https://github.com/flutter/engine/pull/24692) Roll Fuchsia Mac SDK from SrGef2eEA... to y4fkeuwAq... (cla: yes, waiting for tree to go green)
[24693](https://github.com/flutter/engine/pull/24693) Roll Skia from 59b389a407de to 56a1f06db241 (1 revision) (cla: yes, waiting for tree to go green)
[24696](https://github.com/flutter/engine/pull/24696) Roll Dart SDK from aa0fea71185b to 60b27ec0710a (8 revisions) (cla: yes, waiting for tree to go green)
[24697](https://github.com/flutter/engine/pull/24697) Fix UWP build for UpdateCursorRect rename (cla: yes)
[24698](https://github.com/flutter/engine/pull/24698) Windows UWP: Add support for emulated mouse cursor for targets such as XBOX (cla: yes, needs tests)
[24699](https://github.com/flutter/engine/pull/24699) Add RAII wrapper for Win32 IMM context (affects: desktop, affects: engine, cla: yes, platform-windows)
[24700](https://github.com/flutter/engine/pull/24700) Roll Fuchsia Linux SDK from RTXXU6CwW... to 1jbCxKA9Y... (cla: yes, waiting for tree to go green)
[24701](https://github.com/flutter/engine/pull/24701) Roll Fuchsia Mac SDK from y4fkeuwAq... to 1QbiQ5i3i... (cla: yes, waiting for tree to go green)
[24702](https://github.com/flutter/engine/pull/24702) Roll Skia from 56a1f06db241 to 1f33ec568b3f (4 revisions) (cla: yes, waiting for tree to go green)
[24703](https://github.com/flutter/engine/pull/24703) Roll Skia from 1f33ec568b3f to 5fa369787b21 (1 revision) (cla: yes, waiting for tree to go green)
[24704](https://github.com/flutter/engine/pull/24704) Roll Skia from 5fa369787b21 to 104e20f5b2b3 (1 revision) (cla: yes, waiting for tree to go green)
[24706](https://github.com/flutter/engine/pull/24706) Roll Skia from 104e20f5b2b3 to 0b750f2ef534 (1 revision) (cla: yes, waiting for tree to go green)
[24707](https://github.com/flutter/engine/pull/24707) Roll Dart SDK from 60b27ec0710a to f7b05f6e0636 (1 revision) (cla: yes, waiting for tree to go green)
[24708](https://github.com/flutter/engine/pull/24708) Roll Skia from 0b750f2ef534 to 9b510a31561f (4 revisions) (cla: yes, waiting for tree to go green)
[24709](https://github.com/flutter/engine/pull/24709) Roll Fuchsia Linux SDK from 1jbCxKA9Y... to 50gZrG82q... (cla: yes, waiting for tree to go green)
[24710](https://github.com/flutter/engine/pull/24710) Roll Skia from 9b510a31561f to 135500d33dc7 (2 revisions) (cla: yes, waiting for tree to go green)
[24711](https://github.com/flutter/engine/pull/24711) Roll Fuchsia Mac SDK from 1QbiQ5i3i... to ticLKPQn6... (cla: yes, waiting for tree to go green)
[24713](https://github.com/flutter/engine/pull/24713) Win32: Support Korean input (cla: yes)
[24714](https://github.com/flutter/engine/pull/24714) Roll Skia from 135500d33dc7 to 9ca065e2fdb5 (6 revisions) (cla: yes, waiting for tree to go green)
[24715](https://github.com/flutter/engine/pull/24715) Roll Dart SDK from f7b05f6e0636 to b3bc5acdeef2 (1 revision) (cla: yes, waiting for tree to go green)
[24716](https://github.com/flutter/engine/pull/24716) [web] Fix painting of last placeholder in paragraph (cla: yes, platform-web)
[24718](https://github.com/flutter/engine/pull/24718) Revert "remove _getRRect: fixes assertion error (#24688)" (cla: yes)
[24719](https://github.com/flutter/engine/pull/24719) [web] Fix pointer events for Wacom pen (cla: yes, platform-web)
[24720](https://github.com/flutter/engine/pull/24720) Roll Skia from 9ca065e2fdb5 to 67808983c677 (6 revisions) (cla: yes, waiting for tree to go green)
[24722](https://github.com/flutter/engine/pull/24722) Roll Dart SDK from b3bc5acdeef2 to f209e60a5415 (2 revisions) (cla: yes, waiting for tree to go green)
[24723](https://github.com/flutter/engine/pull/24723) Roll Skia from 67808983c677 to d29e500ece41 (1 revision) (cla: yes, waiting for tree to go green)
[24724](https://github.com/flutter/engine/pull/24724) Roll Skia from d29e500ece41 to e32ace76ec8d (1 revision) (cla: yes, waiting for tree to go green)
[24725](https://github.com/flutter/engine/pull/24725) Roll Fuchsia Mac SDK from ticLKPQn6... to PRe0w0i4z... (cla: yes, waiting for tree to go green)
[24726](https://github.com/flutter/engine/pull/24726) Roll Fuchsia Linux SDK from 50gZrG82q... to tJbtmEE4Q... (cla: yes, waiting for tree to go green)
[24727](https://github.com/flutter/engine/pull/24727) Guard metal rendering behind SHELL_ENABLE_METAL (cla: yes, waiting for tree to go green)
[24728](https://github.com/flutter/engine/pull/24728) Roll Skia from e32ace76ec8d to 0676317b1f7f (1 revision) (cla: yes, waiting for tree to go green)
[24729](https://github.com/flutter/engine/pull/24729) Roll Skia from 0676317b1f7f to 232b4ce8886b (1 revision) (cla: yes, waiting for tree to go green)
[24730](https://github.com/flutter/engine/pull/24730) Roll Dart SDK from f209e60a5415 to 761ed531161f (1 revision) (cla: yes, waiting for tree to go green)
[24731](https://github.com/flutter/engine/pull/24731) Roll Skia from 232b4ce8886b to d863ae52d4bb (4 revisions) (cla: yes, waiting for tree to go green)
[24732](https://github.com/flutter/engine/pull/24732) Roll Skia from d863ae52d4bb to 036ba86489d7 (3 revisions) (cla: yes, waiting for tree to go green)
[24733](https://github.com/flutter/engine/pull/24733) Roll Skia from 036ba86489d7 to 786d42c6dac4 (1 revision) (cla: yes, waiting for tree to go green)
[24734](https://github.com/flutter/engine/pull/24734) Adds set text action for voice access (cla: yes, platform-android, waiting for tree to go green)
[24738](https://github.com/flutter/engine/pull/24738) Roll Skia from 786d42c6dac4 to 12e760e958a7 (10 revisions) (cla: yes, waiting for tree to go green)
[24739](https://github.com/flutter/engine/pull/24739) Roll Fuchsia Linux SDK from tJbtmEE4Q... to YhRvbuj9c... (cla: yes, waiting for tree to go green)
[24740](https://github.com/flutter/engine/pull/24740) Roll Skia from 12e760e958a7 to e80e169ba4c1 (1 revision) (cla: yes, waiting for tree to go green)
[24745](https://github.com/flutter/engine/pull/24745) Roll Fuchsia Mac SDK from PRe0w0i4z... to 4TE5n81B-... (cla: yes, waiting for tree to go green)
[24746](https://github.com/flutter/engine/pull/24746) Roll Dart SDK from 761ed531161f to f527ddd39bb1 (3 revisions) (cla: yes, waiting for tree to go green)
[24749](https://github.com/flutter/engine/pull/24749) Roll Dart SDK from f527ddd39bb1 to 041a6dd2e76b (1 revision) (cla: yes, waiting for tree to go green)
[24750](https://github.com/flutter/engine/pull/24750) Roll Fuchsia Linux SDK from YhRvbuj9c... to _0kewDFPJ... (cla: yes, waiting for tree to go green)
[24752](https://github.com/flutter/engine/pull/24752) Roll Skia from e80e169ba4c1 to acf26501fb5a (4 revisions) (cla: yes, waiting for tree to go green)
[24753](https://github.com/flutter/engine/pull/24753) Roll Skia from acf26501fb5a to a1e30a3a280a (5 revisions) (cla: yes, waiting for tree to go green)
[24759](https://github.com/flutter/engine/pull/24759) Roll Fuchsia Mac SDK from 4TE5n81B-... to kPp_BF0q3... (cla: yes, waiting for tree to go green)
[24760](https://github.com/flutter/engine/pull/24760) Roll Skia from a1e30a3a280a to f0de96f7b82a (7 revisions) (cla: yes, waiting for tree to go green)
[24762](https://github.com/flutter/engine/pull/24762) Roll Skia from f0de96f7b82a to 46d9bb255df4 (2 revisions) (cla: yes, waiting for tree to go green)
[24764](https://github.com/flutter/engine/pull/24764) Roll Dart SDK from 041a6dd2e76b to b9302efc8d9a (3 revisions) (cla: yes, waiting for tree to go green)
[24766](https://github.com/flutter/engine/pull/24766) Move CIPD package creation tools under tools/cipd (cla: yes)
[24768](https://github.com/flutter/engine/pull/24768) fixes reference retaining issue in flutter text input plugin (cla: yes, platform-ios, waiting for tree to go green)
[24769](https://github.com/flutter/engine/pull/24769) Roll Skia from 46d9bb255df4 to e4ef35caa1bc (9 revisions) (cla: yes, waiting for tree to go green)
[24770](https://github.com/flutter/engine/pull/24770) Added dependency on CppWinRT for UWP builds (affects: desktop, cla: yes, platform-windows)
[24771](https://github.com/flutter/engine/pull/24771) Roll Fuchsia Linux SDK from _0kewDFPJ... to _vRi_XkB7... (cla: yes, waiting for tree to go green)
[24772](https://github.com/flutter/engine/pull/24772) Roll Skia from e4ef35caa1bc to 4db57264955f (1 revision) (cla: yes, waiting for tree to go green)
[24773](https://github.com/flutter/engine/pull/24773) Revert "[web] Fix painting of last placeholder in paragraph (#24716)" (cla: yes)
[24774](https://github.com/flutter/engine/pull/24774) Roll Skia from 4db57264955f to 21c8ad62cd82 (2 revisions) (cla: yes, waiting for tree to go green)
[24775](https://github.com/flutter/engine/pull/24775) Roll Fuchsia Mac SDK from kPp_BF0q3... to ohpC1XzxY... (cla: yes, waiting for tree to go green)
[24778](https://github.com/flutter/engine/pull/24778) Roll Dart SDK from b9302efc8d9a to 96183eef80b7 (1 revision) (cla: yes, waiting for tree to go green)
[24779](https://github.com/flutter/engine/pull/24779) Roll Skia from 21c8ad62cd82 to 55aaefe687c7 (2 revisions) (cla: yes, waiting for tree to go green)
[24782](https://github.com/flutter/engine/pull/24782) Roll Fuchsia Linux SDK from _vRi_XkB7... to zPlM6iYY3... (cla: yes, waiting for tree to go green)
[24784](https://github.com/flutter/engine/pull/24784) Roll Dart SDK from 96183eef80b7 to 8d3ed9fda5f1 (1 revision) (cla: yes, waiting for tree to go green)
[24791](https://github.com/flutter/engine/pull/24791) Roll Fuchsia Mac SDK from ohpC1XzxY... to Ks1dVR_ST... (cla: yes, waiting for tree to go green)
[24792](https://github.com/flutter/engine/pull/24792) Roll Dart SDK from 8d3ed9fda5f1 to 1b674d73af53 (1 revision) (cla: yes, waiting for tree to go green)
[24794](https://github.com/flutter/engine/pull/24794) Roll Clang Mac from MQQ43_LGr... to MRLGJYv8V... (cla: yes, waiting for tree to go green)
[24795](https://github.com/flutter/engine/pull/24795) Roll Clang Linux from crEO9FDXg... to SrCqaGdSF... (cla: yes, waiting for tree to go green)
[24797](https://github.com/flutter/engine/pull/24797) Avoid the deprecated SkFilterQuality in the Engine APIs (cla: yes, waiting for tree to go green)
[24798](https://github.com/flutter/engine/pull/24798) [web] Fix url updates when using Router (cla: yes, platform-web, waiting for tree to go green)
[24799](https://github.com/flutter/engine/pull/24799) Roll Skia from 55aaefe687c7 to 6ba242d2a201 (18 revisions) (cla: yes, waiting for tree to go green)
[24800](https://github.com/flutter/engine/pull/24800) Revert "Replace Flutter surface only after all platform views are destroyed" (cla: yes, platform-android)
[24801](https://github.com/flutter/engine/pull/24801) Update cppwinrt to build 2.0.210304.5 (affects: desktop, cla: yes, platform-windows)
[24802](https://github.com/flutter/engine/pull/24802) Initialize max_ascent/descent from the strut only if the strut is valid (cla: yes, waiting for tree to go green)
[24803](https://github.com/flutter/engine/pull/24803) Roll Dart SDK from 1b674d73af53 to 835da00aa6b5 (1 revision) (cla: yes, waiting for tree to go green)
[24804](https://github.com/flutter/engine/pull/24804) Roll Skia from 6ba242d2a201 to 3b58d38966f4 (1 revision) (cla: yes, waiting for tree to go green)
[24805](https://github.com/flutter/engine/pull/24805) Roll Skia from 3b58d38966f4 to d42fe062d0a7 (2 revisions) (cla: yes, waiting for tree to go green)
[24806](https://github.com/flutter/engine/pull/24806) Roll Skia from d42fe062d0a7 to 994a571fc79a (1 revision) (cla: yes, waiting for tree to go green)
[24808](https://github.com/flutter/engine/pull/24808) Roll Dart SDK from 835da00aa6b5 to b321d01eec78 (1 revision) (cla: yes, waiting for tree to go green)
[24811](https://github.com/flutter/engine/pull/24811) Roll Dart SDK from b321d01eec78 to 4693d6d4f88e (1 revision) (cla: yes, waiting for tree to go green)
[24812](https://github.com/flutter/engine/pull/24812) Roll Skia from 994a571fc79a to 532138cea7ea (4 revisions) (cla: yes, waiting for tree to go green)
[24813](https://github.com/flutter/engine/pull/24813) Roll Skia from 532138cea7ea to bf2dd2af4947 (3 revisions) (cla: yes, waiting for tree to go green)
[24815](https://github.com/flutter/engine/pull/24815) Roll Skia from bf2dd2af4947 to 319565ac6e65 (2 revisions) (cla: yes, waiting for tree to go green)
[24818](https://github.com/flutter/engine/pull/24818) Update paths related to CIPD package creation (cla: yes, platform-android, waiting for tree to go green)
[24824](https://github.com/flutter/engine/pull/24824) Roll Skia from 319565ac6e65 to d63638bb7be7 (2 revisions) (cla: yes, waiting for tree to go green)
[24825](https://github.com/flutter/engine/pull/24825) Roll Skia from d63638bb7be7 to 3dc6c190dabb (2 revisions) (cla: yes, waiting for tree to go green)
[24827](https://github.com/flutter/engine/pull/24827) Improve error message when CanvasKit is unable to parse a font (cla: yes, platform-web)
[24828](https://github.com/flutter/engine/pull/24828) [web] Don't set both color and foreground at the same time (cla: yes, platform-web, waiting for tree to go green)
[24829](https://github.com/flutter/engine/pull/24829) vulkan: Fix build issue due to missing VK_RESULT_RANGE_SIZE (cla: yes, waiting for tree to go green)
[24830](https://github.com/flutter/engine/pull/24830) Roll Skia from 3dc6c190dabb to 9ef3f2e3da9f (9 revisions) (cla: yes, waiting for tree to go green)
[24831](https://github.com/flutter/engine/pull/24831) fix voice control delete line command does not delete line correctly (cla: yes, platform-ios, waiting for tree to go green)
[24832](https://github.com/flutter/engine/pull/24832) Roll Fuchsia Mac SDK from Ks1dVR_ST... to PPdB-GHCt... (cla: yes, waiting for tree to go green)
[24834](https://github.com/flutter/engine/pull/24834) Roll Fuchsia Linux SDK from zPlM6iYY3... to Suchs2RGt... (cla: yes, waiting for tree to go green)
[24835](https://github.com/flutter/engine/pull/24835) Roll Skia from 9ef3f2e3da9f to 8f440b4e1e22 (2 revisions) (cla: yes, waiting for tree to go green)
[24836](https://github.com/flutter/engine/pull/24836) Roll Dart SDK from 4693d6d4f88e to b77641194368 (3 revisions) (cla: yes, waiting for tree to go green)
[24838](https://github.com/flutter/engine/pull/24838) Prevent race condition while switching surfaces (cla: yes, platform-android)
[24839](https://github.com/flutter/engine/pull/24839) Roll Dart SDK from b77641194368 to fee865ec6404 (1 revision) (cla: yes, waiting for tree to go green)
[24841](https://github.com/flutter/engine/pull/24841) Roll Fuchsia Mac SDK from PPdB-GHCt... to Xkten1Nxc... (cla: yes, waiting for tree to go green)
[24842](https://github.com/flutter/engine/pull/24842) Roll Fuchsia Linux SDK from Suchs2RGt... to 4_MXZyYYE... (cla: yes, waiting for tree to go green)
[24843](https://github.com/flutter/engine/pull/24843) Roll Skia from 8f440b4e1e22 to 00d6cf436884 (1 revision) (cla: yes, waiting for tree to go green)
[24844](https://github.com/flutter/engine/pull/24844) Roll Dart SDK from fee865ec6404 to 9bc9e48fe908 (2 revisions) (cla: yes, waiting for tree to go green)
[24845](https://github.com/flutter/engine/pull/24845) Only call destruction_callback if non-null (cla: yes)
[24846](https://github.com/flutter/engine/pull/24846) Fix typo in assertion log message (cla: yes)
[24847](https://github.com/flutter/engine/pull/24847) Roll Dart SDK from 9bc9e48fe908 to b191fb71063c (1 revision) (cla: yes, waiting for tree to go green)
[24849](https://github.com/flutter/engine/pull/24849) Roll Fuchsia Mac SDK from Xkten1Nxc... to Ler-DhxPF... (cla: yes, waiting for tree to go green)
[24850](https://github.com/flutter/engine/pull/24850) Roll Fuchsia Linux SDK from 4_MXZyYYE... to -kU3jhhRL... (cla: yes, waiting for tree to go green)
[24851](https://github.com/flutter/engine/pull/24851) Roll Skia from 00d6cf436884 to 1314913ff569 (1 revision) (cla: yes, waiting for tree to go green)
[24852](https://github.com/flutter/engine/pull/24852) Roll Skia from 1314913ff569 to 5f2932e0e391 (1 revision) (cla: yes, waiting for tree to go green)
[24853](https://github.com/flutter/engine/pull/24853) Roll Fuchsia Mac SDK from Ler-DhxPF... to Rw36pWO5J... (cla: yes, waiting for tree to go green)
[24855](https://github.com/flutter/engine/pull/24855) Roll Fuchsia Linux SDK from -kU3jhhRL... to hnDJ6SZhJ... (cla: yes, waiting for tree to go green)
[24856](https://github.com/flutter/engine/pull/24856) Roll Skia from 5f2932e0e391 to 07ee548d5bcd (1 revision) (cla: yes, waiting for tree to go green)
[24860](https://github.com/flutter/engine/pull/24860) Roll Dart SDK from b191fb71063c to 64a5583ffbc9 (2 revisions) (cla: yes, waiting for tree to go green)
[24861](https://github.com/flutter/engine/pull/24861) Windows: Switch UWP build to using winrt generated headers (cla: yes)
[24862](https://github.com/flutter/engine/pull/24862) Roll Fuchsia Mac SDK from Rw36pWO5J... to C8RDwF3IB... (cla: yes, waiting for tree to go green)
[24863](https://github.com/flutter/engine/pull/24863) Roll Fuchsia Linux SDK from hnDJ6SZhJ... to yDVPrfGq5... (cla: yes, waiting for tree to go green)
[24864](https://github.com/flutter/engine/pull/24864) [Linux] Fix incorrect texture format with OpenGL ES (cla: yes)
[24865](https://github.com/flutter/engine/pull/24865) Send -1 for empty composition range (cla: yes, waiting for tree to go green)
[24866](https://github.com/flutter/engine/pull/24866) End composing when inserting text (cla: yes)
[24867](https://github.com/flutter/engine/pull/24867) Position accent popup window next to caret (cla: yes)
[24870](https://github.com/flutter/engine/pull/24870) Revert "[web] Fix url updates when using Router (#24798)" (cla: yes)
[24873](https://github.com/flutter/engine/pull/24873) Adds setText to web engine (cla: yes, waiting for tree to go green)
[24874](https://github.com/flutter/engine/pull/24874) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check" (cla: yes, platform-android, waiting for tree to go green)
[24876](https://github.com/flutter/engine/pull/24876) [web] Reland: Fix url updates when using Router (cla: yes, platform-web)
[24877](https://github.com/flutter/engine/pull/24877) Complete the Scene.toImage future with an error if rasterization fails (cla: yes)
[24880](https://github.com/flutter/engine/pull/24880) Respond to Skia.setResourceCacheMaxBytes (cla: yes, waiting for tree to go green)
[24889](https://github.com/flutter/engine/pull/24889) Roll Fuchsia Mac SDK from C8RDwF3IB... to XxqTWS7q1... (cla: yes, waiting for tree to go green)
[24893](https://github.com/flutter/engine/pull/24893) [iOS] Fixes platform view clipped when FlutterView has non-zero offset (cla: yes, platform-ios, waiting for tree to go green)
[24897](https://github.com/flutter/engine/pull/24897) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check⦠(cla: yes, platform-android)
[24901](https://github.com/flutter/engine/pull/24901) Add framebuffer destruction_callback for Linux (cla: yes)
[24902](https://github.com/flutter/engine/pull/24902) fixed typographical error (cla: yes)
[24903](https://github.com/flutter/engine/pull/24903) [web:semantics] fix node positioning; expose debug tree (cla: yes)
[24905](https://github.com/flutter/engine/pull/24905) [web] Reland: Fix painting of last placeholder in paragraph (cla: yes, platform-web, waiting for tree to go green)
[24906](https://github.com/flutter/engine/pull/24906) Rename `moduleName` to `componentName` for consistency (cla: yes, platform-android, waiting for tree to go green)
[24907](https://github.com/flutter/engine/pull/24907) Roll Dart SDK from 64a5583ffbc9 to 8f22201e4050 (6 revisions) (cla: yes, waiting for tree to go green)
[24908](https://github.com/flutter/engine/pull/24908) Detach the newly created EGL context from the main thread in the embedder unit tests (cla: yes)
[24911](https://github.com/flutter/engine/pull/24911) Roll Fuchsia Mac SDK from XxqTWS7q1... to gYXU9l8jr... (cla: yes, waiting for tree to go green)
[24912](https://github.com/flutter/engine/pull/24912) Roll Fuchsia Linux SDK from yDVPrfGq5... to XaUP9-wm3... (cla: yes, waiting for tree to go green)
[24914](https://github.com/flutter/engine/pull/24914) Roll Skia from 07ee548d5bcd to da076e9aca26 (41 revisions) (cla: yes, waiting for tree to go green)
[24917](https://github.com/flutter/engine/pull/24917) Cherrypick Skia roll #24914 (cla: yes, platform-android)
[24920](https://github.com/flutter/engine/pull/24920) Roll Dart SDK from 8f22201e4050 to abcf1f3fd91b (2 revisions) (cla: yes, waiting for tree to go green)
[24922](https://github.com/flutter/engine/pull/24922) [web] Make window.locale(s) non-null; upgrade to null safe deps (cla: yes)
[24924](https://github.com/flutter/engine/pull/24924) Remove an obsolete GN flag that had been used by SkParagraph (cla: yes)
[24925](https://github.com/flutter/engine/pull/24925) Roll Clang Linux from SrCqaGdSF... to TEHg3vhDG... (cla: yes, waiting for tree to go green)
[24926](https://github.com/flutter/engine/pull/24926) Roll Clang Mac from MRLGJYv8V... to GUX2BsVIc... (cla: yes, waiting for tree to go green)
[24927](https://github.com/flutter/engine/pull/24927) Roll Skia from da076e9aca26 to 93330c9c4dc7 (13 revisions) (cla: yes, waiting for tree to go green)
[24928](https://github.com/flutter/engine/pull/24928) [flutter_releases] Flutter 2.0.2 Stable Engine Cherrypicks (cla: yes, platform-android)
[24930](https://github.com/flutter/engine/pull/24930) Roll Fuchsia Mac SDK from gYXU9l8jr... to CxbV_a22u... (cla: yes, waiting for tree to go green)
[24931](https://github.com/flutter/engine/pull/24931) Roll Dart SDK from abcf1f3fd91b to f596cf76c722 (1 revision) (cla: yes, waiting for tree to go green)
[24933](https://github.com/flutter/engine/pull/24933) fix selectable text selections are not announced in voice over (cla: yes, waiting for tree to go green)
[24934](https://github.com/flutter/engine/pull/24934) [web] Add few awaits in history tests (affects: tests, cla: yes, platform-web, waiting for tree to go green)
[24936](https://github.com/flutter/engine/pull/24936) Roll Skia from 93330c9c4dc7 to cc185c5a31f3 (5 revisions) (cla: yes, waiting for tree to go green)
[24937](https://github.com/flutter/engine/pull/24937) Roll Dart SDK from f596cf76c722 to 22d0f712b0a6 (1 revision) (cla: yes, waiting for tree to go green)
[24941](https://github.com/flutter/engine/pull/24941) Roll Skia from cc185c5a31f3 to 43bde9d2bc82 (5 revisions) (cla: yes, waiting for tree to go green)
[24942](https://github.com/flutter/engine/pull/24942) Roll Dart SDK from 22d0f712b0a6 to 526b85706ed7 (1 revision) (cla: yes, waiting for tree to go green)
[24943](https://github.com/flutter/engine/pull/24943) Roll Fuchsia Linux SDK from XaUP9-wm3... to Q1DG3XKnA... (cla: yes, waiting for tree to go green)
[24944](https://github.com/flutter/engine/pull/24944) [Linux] Fix high CPU consumption (cla: yes)
[24946](https://github.com/flutter/engine/pull/24946) Roll Fuchsia Mac SDK from CxbV_a22u... to xpyKHzaGr... (cla: yes, waiting for tree to go green)
[24947](https://github.com/flutter/engine/pull/24947) Reland "Remove pipeline in favor of layer tree holder" (cla: yes)
[24949](https://github.com/flutter/engine/pull/24949) [web] Silence flaky history test (affects: tests, cla: yes, platform-web)
[24951](https://github.com/flutter/engine/pull/24951) Do not return a Minikin font collection if the SkFontStyleSet is unable to create any typefaces (cla: yes, waiting for tree to go green)
[24957](https://github.com/flutter/engine/pull/24957) [web] Skip the history tests that introduced flakiness (cla: yes, platform-web)
[24958](https://github.com/flutter/engine/pull/24958) Fixed issue where the gpu disable syncswitch was being overridden after init (cla: yes, platform-ios)
[24959](https://github.com/flutter/engine/pull/24959) Roll Dart SDK from 526b85706ed7 to 616f110ef95a (4 revisions) (cla: yes, waiting for tree to go green)
[24962](https://github.com/flutter/engine/pull/24962) Roll Skia from 43bde9d2bc82 to 91113acfd1d6 (27 revisions) (cla: yes, waiting for tree to go green)
[24964](https://github.com/flutter/engine/pull/24964) fix printing Failed to determine valid GL format (affects: desktop, cla: yes, platform-linux)
[24965](https://github.com/flutter/engine/pull/24965) Roll Fuchsia Mac SDK from xpyKHzaGr... to inepr5WS8... (cla: yes, waiting for tree to go green)
[24967](https://github.com/flutter/engine/pull/24967) Roll Dart SDK from 616f110ef95a to c7c4495b38ea (1 revision) (cla: yes, waiting for tree to go green)
[24971](https://github.com/flutter/engine/pull/24971) Roll Fuchsia Linux SDK from Q1DG3XKnA... to GsRYVri0-... (cla: yes, waiting for tree to go green)
[24972](https://github.com/flutter/engine/pull/24972) Roll Skia from 91113acfd1d6 to 82fe4d2243a3 (3 revisions) (cla: yes, waiting for tree to go green)
[24973](https://github.com/flutter/engine/pull/24973) Restore original value of the Dart advisory script URI (cla: yes)
[24975](https://github.com/flutter/engine/pull/24975) Roll Skia from 82fe4d2243a3 to 2f4652f3096b (11 revisions) (cla: yes, waiting for tree to go green)
[24977](https://github.com/flutter/engine/pull/24977) Roll Skia from 2f4652f3096b to 7854da39b3c1 (1 revision) (cla: yes, waiting for tree to go green)
[24978](https://github.com/flutter/engine/pull/24978) revert auto-enabling semantics (cla: yes)
[24979](https://github.com/flutter/engine/pull/24979) Roll Dart SDK from c7c4495b38ea to 3f811750bf8a (2 revisions) (cla: yes, waiting for tree to go green)
[24980](https://github.com/flutter/engine/pull/24980) Fuchsia: filed crash reports are marked as non-fatal (cla: yes)
[24982](https://github.com/flutter/engine/pull/24982) Roll Fuchsia Mac SDK from inepr5WS8... to xOxFrRRO6... (cla: yes, waiting for tree to go green)
[24983](https://github.com/flutter/engine/pull/24983) [deferred components] Handle base module loading units (cla: yes, platform-android, waiting for tree to go green)
[24985](https://github.com/flutter/engine/pull/24985) Set automatic simulator rotation in scenario test (cla: yes)
[24986](https://github.com/flutter/engine/pull/24986) Fix attribute replace bug in TextAXNodeWrapper (cla: yes)
[24988](https://github.com/flutter/engine/pull/24988) Roll Dart SDK from 3f811750bf8a to ce9e3535ae16 (1 revision) (cla: yes, waiting for tree to go green)
[24990](https://github.com/flutter/engine/pull/24990) Roll Fuchsia Linux SDK from GsRYVri0-... to aRqEDMjwC... (cla: yes, waiting for tree to go green)
[24992](https://github.com/flutter/engine/pull/24992) Roll Dart SDK from ce9e3535ae16 to b7e02a713eab (2 revisions) (cla: yes, waiting for tree to go green)
[24993](https://github.com/flutter/engine/pull/24993) Roll Skia from 7854da39b3c1 to 4fb13e026b6b (20 revisions) (cla: yes, waiting for tree to go green)
[24995](https://github.com/flutter/engine/pull/24995) [macos] [metal] Fix use after free in FlutterExternalTextureMetal (cla: yes)
[24997](https://github.com/flutter/engine/pull/24997) Roll Fuchsia Mac SDK from xOxFrRRO6... to pmsuWkRQA... (cla: yes, waiting for tree to go green)
[24999](https://github.com/flutter/engine/pull/24999) Implement AXPlatformNodeBase::GetInstanceCountForTesting (cla: yes, waiting for tree to go green)
[25000](https://github.com/flutter/engine/pull/25000) Initial import from upstream Chromium of various classes/files for Win32 a11y (cla: yes)
[25001](https://github.com/flutter/engine/pull/25001) Roll Skia from 4fb13e026b6b to 1aa25c3217b6 (25 revisions) (cla: yes, waiting for tree to go green)
[25004](https://github.com/flutter/engine/pull/25004) Call `requestDartDeferredLibrary` on platform thread (cla: yes, waiting for tree to go green)
[25005](https://github.com/flutter/engine/pull/25005) Roll Skia from 1aa25c3217b6 to ead52dc068d5 (1 revision) (cla: yes, waiting for tree to go green)
[25006](https://github.com/flutter/engine/pull/25006) [fuchsia][shader warmup] Avoid recursively iterating over assets directory when loading skp's due to high cost of openat() on pkgfs (cla: yes)
[25007](https://github.com/flutter/engine/pull/25007) Roll Angle to pick up UWP support (cla: yes)
[25009](https://github.com/flutter/engine/pull/25009) Update docker image to match the LUCI and Framework images (cla: yes)
[25011](https://github.com/flutter/engine/pull/25011) Roll Skia from ead52dc068d5 to 242ae6c45e57 (4 revisions) (cla: yes, waiting for tree to go green)
[25013](https://github.com/flutter/engine/pull/25013) Roll Fuchsia Linux SDK from aRqEDMjwC... to PGa0Yn-JK... (cla: yes, waiting for tree to go green)
[25015](https://github.com/flutter/engine/pull/25015) Roll Skia from 242ae6c45e57 to 13646a8900c3 (1 revision) (cla: yes, waiting for tree to go green)
[25017](https://github.com/flutter/engine/pull/25017) Roll Fuchsia Mac SDK from pmsuWkRQA... to h6TPz98hI... (cla: yes, waiting for tree to go green)
[25020](https://github.com/flutter/engine/pull/25020) Fix const_finder to visit children of ConstructorInvocation (cla: yes)
[25022](https://github.com/flutter/engine/pull/25022) Roll to dart 91d7c69ed7ea (cla: yes)
[25027](https://github.com/flutter/engine/pull/25027) Revert "Reland "Remove pipeline in favor of layer tree holder" (#24947)" (cla: yes, waiting for tree to go green)
[25028](https://github.com/flutter/engine/pull/25028) Modifications to imported a11y base classes to build in Flutter (cla: yes)
[25030](https://github.com/flutter/engine/pull/25030) Roll Fuchsia Linux SDK from PGa0Yn-JK... to wCRD8AhIi... (cla: yes, waiting for tree to go green)
[25031](https://github.com/flutter/engine/pull/25031) Roll Fuchsia Mac SDK from h6TPz98hI... to hta7phjBV... (cla: yes, waiting for tree to go green)
[25032](https://github.com/flutter/engine/pull/25032) Roll Dart SDK from 91d7c69ed7ea to 366b33929a85 (1 revision) (cla: yes, waiting for tree to go green)
[25033](https://github.com/flutter/engine/pull/25033) Roll Skia from 13646a8900c3 to fa8133347cbb (16 revisions) (cla: yes, waiting for tree to go green)
[25034](https://github.com/flutter/engine/pull/25034) Roll Skia from fa8133347cbb to 4e94fd11cded (1 revision) (cla: yes, waiting for tree to go green)
[25035](https://github.com/flutter/engine/pull/25035) Roll Dart SDK from 366b33929a85 to 21060985e0b6 (1 revision) (cla: yes, waiting for tree to go green)
[25036](https://github.com/flutter/engine/pull/25036) Sanitize textInRange inputs to prevent invalid argument exceptions (cla: yes, platform-ios, waiting for tree to go green)
[25037](https://github.com/flutter/engine/pull/25037) Roll Dart SDK from 21060985e0b6 to 959f46974552 (1 revision) (cla: yes, waiting for tree to go green)
[25039](https://github.com/flutter/engine/pull/25039) Roll Skia from 4e94fd11cded to 0d1cf35dae29 (1 revision) (cla: yes, waiting for tree to go green)
[25040](https://github.com/flutter/engine/pull/25040) Roll Fuchsia Linux SDK from wCRD8AhIi... to ObWWD9sx4... (cla: yes, waiting for tree to go green)
[25041](https://github.com/flutter/engine/pull/25041) Roll Skia from 0d1cf35dae29 to 2558c468cc71 (1 revision) (cla: yes, waiting for tree to go green)
[25043](https://github.com/flutter/engine/pull/25043) Add some APIs to StringUtils (cla: yes)
[25044](https://github.com/flutter/engine/pull/25044) Roll Dart SDK from 959f46974552 to 004a35fab02e (1 revision) (cla: yes, waiting for tree to go green)
[25045](https://github.com/flutter/engine/pull/25045) Roll Skia from 2558c468cc71 to b73f737aae8d (8 revisions) (cla: yes, waiting for tree to go green)
[25046](https://github.com/flutter/engine/pull/25046) Roll Fuchsia Mac SDK from hta7phjBV... to zBUVLK4bC... (cla: yes, waiting for tree to go green)
[25047](https://github.com/flutter/engine/pull/25047) Roll Skia from b73f737aae8d to 579728eb1941 (3 revisions) (cla: yes, waiting for tree to go green)
[25049](https://github.com/flutter/engine/pull/25049) Roll Skia from 579728eb1941 to 8937cd43d339 (4 revisions) (cla: yes, waiting for tree to go green)
[25050](https://github.com/flutter/engine/pull/25050) Fixes android voice access delete text, redo, and undo actions. (cla: yes, platform-android)
[25052](https://github.com/flutter/engine/pull/25052) Roll Dart SDK from 004a35fab02e to 8affa8a9de76 (1 revision) (cla: yes, waiting for tree to go green)
[25053](https://github.com/flutter/engine/pull/25053) fix numeric dependencies (cla: yes)
[25055](https://github.com/flutter/engine/pull/25055) [flutter_releases] Flutter Stable 2.0.3 Engine Cherrypicks (cla: yes, platform-android)
[25056](https://github.com/flutter/engine/pull/25056) Roll Skia from 8937cd43d339 to 22dd57b82ceb (4 revisions) (cla: yes, waiting for tree to go green)
[25057](https://github.com/flutter/engine/pull/25057) Import gtest_util.h and DispatchStub from upstream Chromium (cla: yes)
[25058](https://github.com/flutter/engine/pull/25058) Complete Picture.toImage futures with an exception if the image is null (cla: yes, waiting for tree to go green)
[25059](https://github.com/flutter/engine/pull/25059) Roll Skia from 22dd57b82ceb to 1c22e62b710f (1 revision) (cla: yes, waiting for tree to go green)
[25063](https://github.com/flutter/engine/pull/25063) Roll Skia from 1c22e62b710f to fd708655ae4a (1 revision) (cla: yes, waiting for tree to go green)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
[25065](https://github.com/flutter/engine/pull/25065) Roll Skia from fd708655ae4a to a3c0f41371d4 (4 revisions) (cla: yes, waiting for tree to go green)
[25066](https://github.com/flutter/engine/pull/25066) Roll Fuchsia Mac SDK from zBUVLK4bC... to im_i_FA0L... (cla: yes, waiting for tree to go green)
[25067](https://github.com/flutter/engine/pull/25067) Roll Skia from a3c0f41371d4 to 8151337c41fb (1 revision) (cla: yes, waiting for tree to go green)
[25069](https://github.com/flutter/engine/pull/25069) Roll Dart SDK from 8affa8a9de76 to 8c7f8aaa9c79 (1 revision) (cla: yes, waiting for tree to go green)
[25071](https://github.com/flutter/engine/pull/25071) Roll Skia from 8151337c41fb to 7a20b5c9dee7 (1 revision) (cla: yes, waiting for tree to go green)
[25072](https://github.com/flutter/engine/pull/25072) Roll Fuchsia Linux SDK from ObWWD9sx4... to isLe3MZ_H... (cla: yes, waiting for tree to go green)
[25073](https://github.com/flutter/engine/pull/25073) Roll Skia from 7a20b5c9dee7 to 4dff68a1662a (5 revisions) (cla: yes, waiting for tree to go green)
[25076](https://github.com/flutter/engine/pull/25076) Roll Skia from 4dff68a1662a to adbaeaa3652c (2 revisions) (cla: yes, waiting for tree to go green)
[25077](https://github.com/flutter/engine/pull/25077) Add config for "Linux Fuchsia FEMU" try builder. (cla: yes)
[25078](https://github.com/flutter/engine/pull/25078) Convert format and lint scripts to null safety. (cla: yes, waiting for tree to go green)
[25079](https://github.com/flutter/engine/pull/25079) Roll Skia from adbaeaa3652c to 333b938c958b (5 revisions) (cla: yes, waiting for tree to go green)
[25080](https://github.com/flutter/engine/pull/25080) [web] Fix handling of ClipOp.none (cla: yes, platform-web)
[25084](https://github.com/flutter/engine/pull/25084) Roll Dart SDK from 8c7f8aaa9c79 to 4832aa2f161a (1 revision) (cla: yes, waiting for tree to go green)
[25088](https://github.com/flutter/engine/pull/25088) [web] Implement font features in the html renderer (cla: yes, platform-web)
[25090](https://github.com/flutter/engine/pull/25090) Use new cirrus secrets for engine. (cla: yes)
[25095](https://github.com/flutter/engine/pull/25095) Prefer C++ standard headers to their C counterpart (cla: yes)
[25096](https://github.com/flutter/engine/pull/25096) Make internal BSTR private in ScopedBstr (cla: yes)
[25101](https://github.com/flutter/engine/pull/25101) Roll Skia from 333b938c958b to 31798c279664 (10 revisions) (cla: yes, waiting for tree to go green)
[25110](https://github.com/flutter/engine/pull/25110) Add support for right-click in GLFW. (cla: yes)
[25115](https://github.com/flutter/engine/pull/25115) Fixes iOS accessibility can focus wrong content due to rapid animations (cla: yes, platform-ios, waiting for tree to go green)
[25121](https://github.com/flutter/engine/pull/25121) Add AXPlatformNodeWin and AXFragmentRootWin (cla: yes)
[25123](https://github.com/flutter/engine/pull/25123) Remove duplicate and inconsistent kInvalidAXID definition (cla: yes)
[25126](https://github.com/flutter/engine/pull/25126) [web] Fix few potential issues with DOM/Bitmap rendering (cla: yes, platform-web)
[25128](https://github.com/flutter/engine/pull/25128) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25129](https://github.com/flutter/engine/pull/25129) Sync analyzer_options.yaml (cla: yes, waiting for tree to go green)
[25131](https://github.com/flutter/engine/pull/25131) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25140](https://github.com/flutter/engine/pull/25140) Roll Skia from 31798c279664 to 4b76265c6660 (21 revisions) (cla: yes, waiting for tree to go green)
[25145](https://github.com/flutter/engine/pull/25145) Roll Skia from 4b76265c6660 to 12a75588e7bc (3 revisions) (cla: yes, waiting for tree to go green)
[25148](https://github.com/flutter/engine/pull/25148) Roll Fuchsia Mac SDK from im_i_FA0L... to n2TrYwVe9... (cla: yes, waiting for tree to go green)
[25149](https://github.com/flutter/engine/pull/25149) Roll Fuchsia Linux SDK from isLe3MZ_H... to 4JTh8dWnT... (cla: yes, waiting for tree to go green)
[25151](https://github.com/flutter/engine/pull/25151) Roll Skia from 12a75588e7bc to 3469c0aec843 (1 revision) (cla: yes, waiting for tree to go green)
[25159](https://github.com/flutter/engine/pull/25159) Roll Fuchsia Mac SDK from n2TrYwVe9... to KLoErmoN0... (cla: yes, waiting for tree to go green)
[25160](https://github.com/flutter/engine/pull/25160) Roll Fuchsia Linux SDK from 4JTh8dWnT... to O1wNtYV6b... (cla: yes, waiting for tree to go green)
[25165](https://github.com/flutter/engine/pull/25165) [web] Fix drawImage colorFilter with dstATop blend mode (cla: yes)
[25167](https://github.com/flutter/engine/pull/25167) [fuchsia][a11y] Adds isKeyboardKey semantics flag. (cla: yes, platform-android)
[25171](https://github.com/flutter/engine/pull/25171) Make DartExecutor.isExecutingDart account for spawned engines (cla: yes, platform-android)
[25174](https://github.com/flutter/engine/pull/25174) Switched assert(x > 0) to assert(x != 0) to handle tagged pointers in java (cla: yes, platform-android)
[25180](https://github.com/flutter/engine/pull/25180) [Android Text Input] restart when framework changes composing region (cla: yes, platform-android, waiting for tree to go green)
[25188](https://github.com/flutter/engine/pull/25188) Add missing include to string_utils.h (cla: yes)
[25192](https://github.com/flutter/engine/pull/25192) Roll Dart SDK from 4832aa2f161a to f8c25b8e965d (12 revisions) (cla: yes, waiting for tree to go green)
[25193](https://github.com/flutter/engine/pull/25193) Fix Windows external texture interference (affects: desktop, cla: yes, platform-windows)
[25195](https://github.com/flutter/engine/pull/25195) Roll Skia from 3469c0aec843 to e31b526f03ea (50 revisions) (cla: yes, waiting for tree to go green)
[25196](https://github.com/flutter/engine/pull/25196) Keep rendering to screen in iOS `inactive` state (cla: yes, platform-ios)
[25197](https://github.com/flutter/engine/pull/25197) Roll Skia from e31b526f03ea to bb0ed8e48790 (4 revisions) (cla: yes, waiting for tree to go green)
[25198](https://github.com/flutter/engine/pull/25198) [web] Add samsung browser detection (cla: yes)
[25201](https://github.com/flutter/engine/pull/25201) Roll Fuchsia Mac SDK from KLoErmoN0... to 852xQjt_Y... (cla: yes, waiting for tree to go green)
[25202](https://github.com/flutter/engine/pull/25202) Roll Fuchsia Linux SDK from O1wNtYV6b... to JgKFR3es2... (cla: yes, waiting for tree to go green)
[25204](https://github.com/flutter/engine/pull/25204) Roll Skia from bb0ed8e48790 to f2b3f916fc3a (4 revisions) (cla: yes, waiting for tree to go green)
[25205](https://github.com/flutter/engine/pull/25205) Support software rendering fallback on Win32 (cla: yes)
[25206](https://github.com/flutter/engine/pull/25206) [web] More meaningful test for font features (cla: yes, platform-web, waiting for tree to go green)
[25208](https://github.com/flutter/engine/pull/25208) Roll Skia from f2b3f916fc3a to 85749c0b223b (1 revision) (cla: yes, waiting for tree to go green)
[25213](https://github.com/flutter/engine/pull/25213) When snapshotting a surface, upper-bound the render target size to the device limit (cla: yes, waiting for tree to go green)
[25218](https://github.com/flutter/engine/pull/25218) Roll Fuchsia Linux SDK from JgKFR3es2... to kg0qfAPCx... (cla: yes, waiting for tree to go green)
[25220](https://github.com/flutter/engine/pull/25220) Roll Dart SDK from f8c25b8e965d to bc78a79e5e80 (2 revisions) (cla: yes, waiting for tree to go green)
[25221](https://github.com/flutter/engine/pull/25221) Revert "Call Dart plugin registrant if available" (cla: yes, waiting for tree to go green)
[25222](https://github.com/flutter/engine/pull/25222) started cleaning scenario tests before running them (cla: yes, waiting for tree to go green)
[25226](https://github.com/flutter/engine/pull/25226) Started waiting for the notifications locally before asserting side effects (cla: yes, platform-ios, waiting for tree to go green)
[25228](https://github.com/flutter/engine/pull/25228) Roll Fuchsia Mac SDK from 852xQjt_Y... to Fl6sZdXuy... (cla: yes, waiting for tree to go green)
[25229](https://github.com/flutter/engine/pull/25229) Roll Skia from 85749c0b223b to 7cae908221a2 (15 revisions) (cla: yes, waiting for tree to go green)
[25230](https://github.com/flutter/engine/pull/25230) Roll Fuchsia Linux SDK from kg0qfAPCx... to y2eG1RQrm... (cla: yes, waiting for tree to go green)
[25231](https://github.com/flutter/engine/pull/25231) Roll Skia from 7cae908221a2 to a6748aa80272 (3 revisions) (cla: yes, waiting for tree to go green)
[25235](https://github.com/flutter/engine/pull/25235) Roll Dart SDK from bc78a79e5e80 to c346bb2d834b (2 revisions) (cla: yes, waiting for tree to go green)
[25236](https://github.com/flutter/engine/pull/25236) Roll Skia from a6748aa80272 to c028c5c1f83e (2 revisions) (cla: yes, waiting for tree to go green)
[25238](https://github.com/flutter/engine/pull/25238) Roll Skia from c028c5c1f83e to c28336e5c272 (4 revisions) (cla: yes, waiting for tree to go green)
[25241](https://github.com/flutter/engine/pull/25241) [tracing] Add trace events for DartIsolate::HandleMessage (cla: yes)
[25247](https://github.com/flutter/engine/pull/25247) Highlight VSync support for embedders (cla: yes)
[25248](https://github.com/flutter/engine/pull/25248) Revert "Started waiting for the notifications locally before assertin⦠(cla: yes, platform-ios)
[25249](https://github.com/flutter/engine/pull/25249) Roll Fuchsia Mac SDK from Fl6sZdXuy... to Up0KimH97... (cla: yes, waiting for tree to go green)
[25252](https://github.com/flutter/engine/pull/25252) Remove ignores that are not ignoring anything (cla: yes)
[25253](https://github.com/flutter/engine/pull/25253) Roll Fuchsia Linux SDK from y2eG1RQrm... to R-p04Lkby... (cla: yes, waiting for tree to go green)
[25254](https://github.com/flutter/engine/pull/25254) Roll Skia from c28336e5c272 to 7ddc9b9941ec (6 revisions) (cla: yes, waiting for tree to go green)
[25255](https://github.com/flutter/engine/pull/25255) Roll Dart SDK from c346bb2d834b to d31a6683999e (2 revisions) (cla: yes, waiting for tree to go green)
[25256](https://github.com/flutter/engine/pull/25256) Roll Skia from 7ddc9b9941ec to 2febb5b4233e (4 revisions) (cla: yes, waiting for tree to go green)
[25257](https://github.com/flutter/engine/pull/25257) Reland: Started waiting for the notifications locally before asserting side-effects (cla: yes, platform-ios)
[25260](https://github.com/flutter/engine/pull/25260) Roll Skia from 2febb5b4233e to 5069304bb203 (3 revisions) (cla: yes, waiting for tree to go green)
[25261](https://github.com/flutter/engine/pull/25261) Roll Clang Mac from GUX2BsVIc... to TC0M_mkz9... (cla: yes, waiting for tree to go green)
[25263](https://github.com/flutter/engine/pull/25263) Roll Skia from 5069304bb203 to 497bdf959908 (2 revisions) (cla: yes, waiting for tree to go green)
[25265](https://github.com/flutter/engine/pull/25265) Roll Fuchsia Mac SDK from Up0KimH97... to TK3yvB3gS... (cla: yes, waiting for tree to go green)
[25266](https://github.com/flutter/engine/pull/25266) Roll Fuchsia Linux SDK from R-p04Lkby... to d8jq76lyK... (cla: yes, waiting for tree to go green)
[25267](https://github.com/flutter/engine/pull/25267) Fix WinUWP build (cla: yes, waiting for tree to go green)
[25268](https://github.com/flutter/engine/pull/25268) Roll Dart SDK from d31a6683999e to f142aa958951 (2 revisions) (cla: yes, waiting for tree to go green)
[25269](https://github.com/flutter/engine/pull/25269) Roll Clang Mac from TC0M_mkz9... to GUX2BsVIc... (cla: yes, waiting for tree to go green)
[25270](https://github.com/flutter/engine/pull/25270) [libTxt] multi-codeunit glyph hit test minor fix (cla: yes, waiting for tree to go green)
[25271](https://github.com/flutter/engine/pull/25271) Roll Fuchsia Mac SDK from TK3yvB3gS... to MQwG9VAs-... (cla: yes, waiting for tree to go green)
[25272](https://github.com/flutter/engine/pull/25272) Roll Fuchsia Linux SDK from d8jq76lyK... to wR8Sc9ieX... (cla: yes, waiting for tree to go green)
[25273](https://github.com/flutter/engine/pull/25273) Roll Fuchsia Mac SDK from MQwG9VAs-... to o-xARpyOX... (cla: yes, waiting for tree to go green)
[25274](https://github.com/flutter/engine/pull/25274) Roll Fuchsia Linux SDK from wR8Sc9ieX... to lzyM0FRih... (cla: yes, waiting for tree to go green)
[25275](https://github.com/flutter/engine/pull/25275) Roll Dart SDK from f142aa958951 to 61d949d7ec1b (1 revision) (cla: yes, waiting for tree to go green)
[25276](https://github.com/flutter/engine/pull/25276) Roll Fuchsia Mac SDK from o-xARpyOX... to jnG2ejqF6... (cla: yes, waiting for tree to go green)
[25277](https://github.com/flutter/engine/pull/25277) Roll Dart SDK from 61d949d7ec1b to b2b8c997eefa (1 revision) (cla: yes, waiting for tree to go green)
[25278](https://github.com/flutter/engine/pull/25278) Roll Fuchsia Linux SDK from lzyM0FRih... to Jsuz_VU7L... (cla: yes, waiting for tree to go green)
[25280](https://github.com/flutter/engine/pull/25280) Add clear method in FlutterEngineCache to clear all cached Flutter engines #78420 (cla: yes, platform-android, waiting for tree to go green)
[25282](https://github.com/flutter/engine/pull/25282) Roll Skia from 497bdf959908 to 975341304300 (4 revisions) (cla: yes, waiting for tree to go green)
[25284](https://github.com/flutter/engine/pull/25284) [ios] [asan] Copy asan runtime dylib when built with "--asan" (cla: yes, platform-ios, waiting for tree to go green)
[25285](https://github.com/flutter/engine/pull/25285) Roll Skia from 975341304300 to 99438408b1e0 (6 revisions) (cla: yes, waiting for tree to go green)
[25286](https://github.com/flutter/engine/pull/25286) Revert "Fixes android voice access delete text, redo, and undo action⦠(cla: yes, platform-android)
[25287](https://github.com/flutter/engine/pull/25287) Roll Skia from 99438408b1e0 to 556302dea5bc (4 revisions) (cla: yes, waiting for tree to go green)
[25288](https://github.com/flutter/engine/pull/25288) Roll Dart SDK from b2b8c997eefa to 5839c3386cca (3 revisions) (cla: yes, waiting for tree to go green)
[25289](https://github.com/flutter/engine/pull/25289) Reland "Fixes android voice access delete text, redo, and undo action" (cla: yes, platform-android)
[25291](https://github.com/flutter/engine/pull/25291) Roll Skia from 556302dea5bc to 7b41798fd606 (7 revisions) (cla: yes, waiting for tree to go green)
[25292](https://github.com/flutter/engine/pull/25292) Revert "Fix Windows external texture interference (#25193)" (cla: yes)
[25293](https://github.com/flutter/engine/pull/25293) Implement computeLineMetrics (cla: yes)
[25294](https://github.com/flutter/engine/pull/25294) Roll Dart SDK from 5839c3386cca to 07c67e891edb (1 revision) (cla: yes, waiting for tree to go green)
[25295](https://github.com/flutter/engine/pull/25295) Roll Skia from 7b41798fd606 to 589adda93059 (1 revision) (cla: yes, waiting for tree to go green)
[25296](https://github.com/flutter/engine/pull/25296) Roll Fuchsia Mac SDK from jnG2ejqF6... to hi6Arsnrc... (cla: yes, waiting for tree to go green)
[25297](https://github.com/flutter/engine/pull/25297) Deduplicate plugin registration logic and make error logs visible (cla: yes, platform-android, waiting for tree to go green)
[25299](https://github.com/flutter/engine/pull/25299) Turn off insecure socket policy configuration in the engine (cla: yes, platform-android, platform-ios)
[25300](https://github.com/flutter/engine/pull/25300) Copy gtest_filters from femu_test.py. (cla: yes)
[25301](https://github.com/flutter/engine/pull/25301) Roll Dart SDK from 07c67e891edb to 4535b2736e4e (1 revision) (cla: yes, waiting for tree to go green)
[25302](https://github.com/flutter/engine/pull/25302) Roll Fuchsia Linux SDK from Jsuz_VU7L... to -9LtXeZ47... (cla: yes, waiting for tree to go green)
[25303](https://github.com/flutter/engine/pull/25303) fuchsia: Allow access to system services in tests. (cla: yes)
[25304](https://github.com/flutter/engine/pull/25304) Remove comment about null on not-null fields (cla: yes, waiting for tree to go green)
[25305](https://github.com/flutter/engine/pull/25305) Roll Skia from 589adda93059 to 4718a8b83bbb (14 revisions) (cla: yes, waiting for tree to go green)
[25306](https://github.com/flutter/engine/pull/25306) Roll Skia from 4718a8b83bbb to 1d2a26d0df07 (2 revisions) (cla: yes, waiting for tree to go green)
[25309](https://github.com/flutter/engine/pull/25309) Update gtest_filters. (cla: yes)
[25310](https://github.com/flutter/engine/pull/25310) Roll Dart SDK from 4535b2736e4e to fb5d27696aa8 (3 revisions) (cla: yes, waiting for tree to go green)
[25311](https://github.com/flutter/engine/pull/25311) Roll Skia from 1d2a26d0df07 to 428523f9a4dc (5 revisions) (cla: yes, waiting for tree to go green)
[25312](https://github.com/flutter/engine/pull/25312) build dart2js on linux arm host (cla: yes, waiting for tree to go green)
[25314](https://github.com/flutter/engine/pull/25314) Send a null response to signal that a message is not implemented on the web text input channel (cla: yes, waiting for tree to go green)
[25315](https://github.com/flutter/engine/pull/25315) Roll CanvasKit to 0.25.1 (cla: yes, platform-web)
[25317](https://github.com/flutter/engine/pull/25317) Reland: "Fix memory leak and bug in the RunsOnCreationTaskRun" (cla: yes, platform-android)
[25319](https://github.com/flutter/engine/pull/25319) Windows: Revert https://github.com/flutter/engine/pull/24428 (Work in progress (WIP), cla: yes, platform-windows)
[25324](https://github.com/flutter/engine/pull/25324) [iOS][Test] Update scenario test tutorial (cla: yes, waiting for tree to go green)
[25329](https://github.com/flutter/engine/pull/25329) [doc] EncodableValue: added dart type mapping in declaration comment (cla: yes)
[25333](https://github.com/flutter/engine/pull/25333) Roll Fuchsia Mac SDK from hi6Arsnrc... to eXx5DUal4... (cla: yes, waiting for tree to go green)
[25334](https://github.com/flutter/engine/pull/25334) [fuchsia] Populates fuchsia node is_keyboard_key in accessibility bridge (cla: yes)
[25335](https://github.com/flutter/engine/pull/25335) Make EncodableValue::LongValue const (affects: desktop, cla: yes, waiting for tree to go green)
[25336](https://github.com/flutter/engine/pull/25336) Roll Fuchsia Linux SDK from -9LtXeZ47... to T_kNQ9dqg... (cla: yes, waiting for tree to go green)
[25337](https://github.com/flutter/engine/pull/25337) Roll Dart SDK from fb5d27696aa8 to 35a7d7f630f4 (6 revisions) (cla: yes, waiting for tree to go green)
[25338](https://github.com/flutter/engine/pull/25338) Roll Skia from 428523f9a4dc to 8ed7a8d1c659 (18 revisions) (cla: yes, waiting for tree to go green)
[25339](https://github.com/flutter/engine/pull/25339) Roll Skia from 8ed7a8d1c659 to a4d85e708b8e (7 revisions) (cla: yes, waiting for tree to go green)
[25340](https://github.com/flutter/engine/pull/25340) Clean up small typos in EncodableValue docs (cla: yes)
[25341](https://github.com/flutter/engine/pull/25341) [flutter_releases] Flutter Stable 2.0.4 Engine Cherrypicks (cla: yes)
[25342](https://github.com/flutter/engine/pull/25342) Roll Skia from a4d85e708b8e to 3d3562912fea (6 revisions) (cla: yes, waiting for tree to go green)
[25344](https://github.com/flutter/engine/pull/25344) Roll Dart SDK from 35a7d7f630f4 to 125606d51e62 (1 revision) (cla: yes, waiting for tree to go green)
[25345](https://github.com/flutter/engine/pull/25345) Roll Skia from 3d3562912fea to bba188062503 (1 revision) (cla: yes, waiting for tree to go green)
[25346](https://github.com/flutter/engine/pull/25346) Correct typos throughout the engine/embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[25347](https://github.com/flutter/engine/pull/25347) Roll Skia from bba188062503 to 3d358fe2e533 (1 revision) (cla: yes, waiting for tree to go green)
[25348](https://github.com/flutter/engine/pull/25348) Roll Dart SDK from 125606d51e62 to 2e5ada685fa7 (1 revision) (cla: yes, waiting for tree to go green)
[25349](https://github.com/flutter/engine/pull/25349) Fix texture corruption on Windows (bug, cla: yes, platform-windows)
[25350](https://github.com/flutter/engine/pull/25350) fix a HapticFeedback.vibrate NNBD bug (cla: yes, waiting for tree to go green)
[25351](https://github.com/flutter/engine/pull/25351) Roll Skia from 3d358fe2e533 to f1126836f9ef (1 revision) (cla: yes, waiting for tree to go green)
[25352](https://github.com/flutter/engine/pull/25352) Roll Skia from f1126836f9ef to 7f38a89654b2 (1 revision) (cla: yes, waiting for tree to go green)
[25353](https://github.com/flutter/engine/pull/25353) Roll Fuchsia Mac SDK from eXx5DUal4... to E7dJ0nmpi... (cla: yes, waiting for tree to go green)
[25355](https://github.com/flutter/engine/pull/25355) Roll Dart SDK from 2e5ada685fa7 to 22dfe0dc39b1 (1 revision) (cla: yes, waiting for tree to go green)
[25356](https://github.com/flutter/engine/pull/25356) Roll Dart SDK from 22dfe0dc39b1 to ff3caa6e6324 (1 revision) (cla: yes, waiting for tree to go green)
[25358](https://github.com/flutter/engine/pull/25358) Roll Fuchsia Linux SDK from T_kNQ9dqg... to kafCPE8Hd... (cla: yes, waiting for tree to go green)
[25359](https://github.com/flutter/engine/pull/25359) Roll Skia from 7f38a89654b2 to 87fc65710104 (4 revisions) (cla: yes, waiting for tree to go green)
[25361](https://github.com/flutter/engine/pull/25361) Roll Skia from 87fc65710104 to d18967c67d78 (4 revisions) (cla: yes, waiting for tree to go green)
[25362](https://github.com/flutter/engine/pull/25362) Rename EngineEmbedderApiModifier to EngineModifier (cla: yes)
[25363](https://github.com/flutter/engine/pull/25363) Roll Dart SDK from ff3caa6e6324 to e3e901344f72 (1 revision) (cla: yes, waiting for tree to go green)
[25364](https://github.com/flutter/engine/pull/25364) Roll Skia from d18967c67d78 to 92f2d9340ef1 (5 revisions) (cla: yes, waiting for tree to go green)
[25366](https://github.com/flutter/engine/pull/25366) Roll Skia from 92f2d9340ef1 to 7384b3757655 (2 revisions) (cla: yes, waiting for tree to go green)
[25367](https://github.com/flutter/engine/pull/25367) [web] Fix framework material text field tests (cla: yes, platform-web)
[25368](https://github.com/flutter/engine/pull/25368) Roll Fuchsia Mac SDK from E7dJ0nmpi... to VFHTytszr... (cla: yes, waiting for tree to go green)
[25369](https://github.com/flutter/engine/pull/25369) Call CreateRenderSurface() after setting the Engine for a View on UWP (cla: yes, needs tests)
[25370](https://github.com/flutter/engine/pull/25370) Roll Skia from 7384b3757655 to 92b35673c5bb (1 revision) (cla: yes, waiting for tree to go green)
[25371](https://github.com/flutter/engine/pull/25371) Roll Dart SDK from e3e901344f72 to 5fb4fb907f88 (1 revision) (cla: yes, waiting for tree to go green)
[25372](https://github.com/flutter/engine/pull/25372) Roll Skia from 92b35673c5bb to 988b7043e54c (2 revisions) (cla: yes, waiting for tree to go green)
[25374](https://github.com/flutter/engine/pull/25374) Roll Skia from 988b7043e54c to 42d753031d3f (1 revision) (cla: yes, waiting for tree to go green)
[25375](https://github.com/flutter/engine/pull/25375) Reland: Call Dart plugin registrant if available (#23813) (cla: yes)
[25376](https://github.com/flutter/engine/pull/25376) Roll Dart SDK from 5fb4fb907f88 to 6d0a351efd1f (1 revision) (cla: yes, waiting for tree to go green)
[25377](https://github.com/flutter/engine/pull/25377) Roll Fuchsia Linux SDK from kafCPE8Hd... to AhlA9OIbM... (cla: yes, waiting for tree to go green)
[25378](https://github.com/flutter/engine/pull/25378) Roll Skia from 42d753031d3f to d4897f0d127e (1 revision) (cla: yes, waiting for tree to go green)
[25379](https://github.com/flutter/engine/pull/25379) Add fallback for GetAbsoluteFilePath in UWP (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[25380](https://github.com/flutter/engine/pull/25380) Roll Skia from d4897f0d127e to 1b20cf0fe9e9 (1 revision) (cla: yes, waiting for tree to go green)
[25383](https://github.com/flutter/engine/pull/25383) Roll Fuchsia Mac SDK from VFHTytszr... to TofGhqbUJ... (cla: yes, waiting for tree to go green)
[25384](https://github.com/flutter/engine/pull/25384) Roll Skia from 1b20cf0fe9e9 to 2938eea68c46 (1 revision) (cla: yes, waiting for tree to go green)
[25386](https://github.com/flutter/engine/pull/25386) Roll Skia from 2938eea68c46 to 0cbd45421f25 (1 revision) (cla: yes, waiting for tree to go green)
[25387](https://github.com/flutter/engine/pull/25387) Fix windows debug builds (cla: yes)
[25388](https://github.com/flutter/engine/pull/25388) Roll Skia from 0cbd45421f25 to 396cd1dfabdd (2 revisions) (cla: yes, waiting for tree to go green)
[25391](https://github.com/flutter/engine/pull/25391) Roll Skia from 396cd1dfabdd to 87011df3cf84 (1 revision) (cla: yes, waiting for tree to go green)
[25392](https://github.com/flutter/engine/pull/25392) Roll Fuchsia Linux SDK from AhlA9OIbM... to b6atUpuKK... (cla: yes, waiting for tree to go green)
[25393](https://github.com/flutter/engine/pull/25393) Revert "Deduplicate plugin registration logic and make error logs visible" (cla: yes, platform-android, waiting for tree to go green)
[25394](https://github.com/flutter/engine/pull/25394) Roll Skia from 87011df3cf84 to f8d75c687d2e (1 revision) (cla: yes, waiting for tree to go green)
[25398](https://github.com/flutter/engine/pull/25398) Roll Skia from f8d75c687d2e to ea1d39b35cf6 (10 revisions) (cla: yes, waiting for tree to go green)
[25399](https://github.com/flutter/engine/pull/25399) Roll Fuchsia Mac SDK from TofGhqbUJ... to yIlbYYW5i... (cla: yes, waiting for tree to go green)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
[25403](https://github.com/flutter/engine/pull/25403) Eliminate error message for missing CMAP table (cla: yes, tech-debt)
[25404](https://github.com/flutter/engine/pull/25404) Roll Dart SDK from 6d0a351efd1f to 624d14c61b2d (1 revision) (cla: yes, waiting for tree to go green)
[25405](https://github.com/flutter/engine/pull/25405) Roll Dart SDK from 624d14c61b2d to 0193522c6638 (1 revision) (cla: yes, waiting for tree to go green)
[25406](https://github.com/flutter/engine/pull/25406) Roll Fuchsia Linux SDK from b6atUpuKK... to y_R-US0DL... (cla: yes, waiting for tree to go green)
[25407](https://github.com/flutter/engine/pull/25407) Roll Dart SDK from 0193522c6638 to 0d7b8ec13047 (1 revision) (cla: yes, waiting for tree to go green)
[25408](https://github.com/flutter/engine/pull/25408) Roll Dart SDK from 0d7b8ec13047 to 00eaa3c60d31 (1 revision) (cla: yes, waiting for tree to go green)
[25409](https://github.com/flutter/engine/pull/25409) Roll Skia from ea1d39b35cf6 to e9244938d2a0 (1 revision) (cla: yes, waiting for tree to go green)
[25410](https://github.com/flutter/engine/pull/25410) Roll Dart SDK from 00eaa3c60d31 to 755b81eb3fb8 (1 revision) (cla: yes, waiting for tree to go green)
[25411](https://github.com/flutter/engine/pull/25411) Roll Dart SDK from 755b81eb3fb8 to eab366e78fa5 (1 revision) (cla: yes, waiting for tree to go green)
[25413](https://github.com/flutter/engine/pull/25413) Roll Fuchsia Mac SDK from yIlbYYW5i... to 4WKVCYCPm... (cla: yes, waiting for tree to go green)
[25414](https://github.com/flutter/engine/pull/25414) Roll Dart SDK from eab366e78fa5 to 3f2cdd7b7393 (1 revision) (cla: yes, waiting for tree to go green)
[25415](https://github.com/flutter/engine/pull/25415) Roll Fuchsia Linux SDK from y_R-US0DL... to b22xnKMfp... (cla: yes, waiting for tree to go green)
[25416](https://github.com/flutter/engine/pull/25416) Roll Skia from e9244938d2a0 to 301449e4d051 (1 revision) (cla: yes, waiting for tree to go green)
[25417](https://github.com/flutter/engine/pull/25417) Roll Skia from 301449e4d051 to 5c7ab08937ca (1 revision) (cla: yes, waiting for tree to go green)
[25418](https://github.com/flutter/engine/pull/25418) Roll Dart SDK from 3f2cdd7b7393 to 5138e77df795 (1 revision) (cla: yes, waiting for tree to go green)
[25419](https://github.com/flutter/engine/pull/25419) Roll Fuchsia Mac SDK from 4WKVCYCPm... to F4eUNa2mh... (cla: yes, waiting for tree to go green)
[25422](https://github.com/flutter/engine/pull/25422) Roll Skia from 5c7ab08937ca to fd7252fa2392 (3 revisions) (cla: yes, waiting for tree to go green)
[25423](https://github.com/flutter/engine/pull/25423) Roll Skia from fd7252fa2392 to e296c56735c4 (4 revisions) (cla: yes, waiting for tree to go green)
[25424](https://github.com/flutter/engine/pull/25424) Roll Dart SDK from 5138e77df795 to c274ba72ec73 (2 revisions) (cla: yes, waiting for tree to go green)
[25426](https://github.com/flutter/engine/pull/25426) Roll Skia from e296c56735c4 to b14a819122ee (1 revision) (cla: yes, waiting for tree to go green)
[25428](https://github.com/flutter/engine/pull/25428) Update FlutterFragment to implement ComponentCallbacks2. (cla: yes, platform-android)
[25430](https://github.com/flutter/engine/pull/25430) Roll Skia from b14a819122ee to 0a12b85f160f (5 revisions) (cla: yes, waiting for tree to go green)
[25431](https://github.com/flutter/engine/pull/25431) Roll Fuchsia Linux SDK from b22xnKMfp... to txu1APnex... (cla: yes, waiting for tree to go green)
[25432](https://github.com/flutter/engine/pull/25432) Roll Dart SDK from c274ba72ec73 to 3dd1630ab4d4 (1 revision) (cla: yes, waiting for tree to go green)
[25433](https://github.com/flutter/engine/pull/25433) Remove the DartIsolate::PostMessage timeline event (cla: yes, waiting for tree to go green)
[25434](https://github.com/flutter/engine/pull/25434) Roll Skia from 0a12b85f160f to 974c82150204 (1 revision) (cla: yes, waiting for tree to go green)
[25435](https://github.com/flutter/engine/pull/25435) Allow embedders to set a custom log tag (cla: yes, embedder)
[25436](https://github.com/flutter/engine/pull/25436) Roll Fuchsia Mac SDK from F4eUNa2mh... to IKx9cvrtJ... (cla: yes, waiting for tree to go green)
[25437](https://github.com/flutter/engine/pull/25437) Add documentation to embedder locale callback (cla: yes, embedder)
[25438](https://github.com/flutter/engine/pull/25438) Roll Dart SDK from 3dd1630ab4d4 to b55f7a132f67 (1 revision) (cla: yes, waiting for tree to go green)
[25439](https://github.com/flutter/engine/pull/25439) Fix parameter type in FlutterDesktopEngineCreate (affects: desktop, cla: yes, platform-windows)
[25440](https://github.com/flutter/engine/pull/25440) Roll Skia from 974c82150204 to b4e5a9192d39 (1 revision) (cla: yes, waiting for tree to go green)
[25441](https://github.com/flutter/engine/pull/25441) Roll Skia from b4e5a9192d39 to b6689e568050 (2 revisions) (cla: yes, waiting for tree to go green)
[25442](https://github.com/flutter/engine/pull/25442) Roll Clang Linux from TEHg3vhDG... to pRlhGPqYQ... (cla: yes, waiting for tree to go green)
[25443](https://github.com/flutter/engine/pull/25443) Roll Clang Mac from GUX2BsVIc... to RW7LSJ9ld... (cla: yes, waiting for tree to go green)
[25447](https://github.com/flutter/engine/pull/25447) Roll Dart SDK from b55f7a132f67 to ef46d99315de (2 revisions) (cla: yes, waiting for tree to go green)
[25448](https://github.com/flutter/engine/pull/25448) Roll Fuchsia Linux SDK from txu1APnex... to dl1JUKVuj... (cla: yes, waiting for tree to go green)
[25450](https://github.com/flutter/engine/pull/25450) Roll Skia from b6689e568050 to 3b6ea141bd8d (1 revision) (cla: yes, waiting for tree to go green)
[25451](https://github.com/flutter/engine/pull/25451) Roll Fuchsia Mac SDK from IKx9cvrtJ... to Z-pl5laFz... (cla: yes, waiting for tree to go green)
[25452](https://github.com/flutter/engine/pull/25452) Roll Dart SDK from ef46d99315de to b9471aadaa1a (1 revision) (cla: yes, waiting for tree to go green)
[25454](https://github.com/flutter/engine/pull/25454) Roll Skia from 3b6ea141bd8d to b3479cea80aa (1 revision) (cla: yes, waiting for tree to go green)
[25455](https://github.com/flutter/engine/pull/25455) Roll Skia from b3479cea80aa to c6a3d531880e (3 revisions) (cla: yes, waiting for tree to go green)
[25456](https://github.com/flutter/engine/pull/25456) [web] Fix shadermask rendering using CanvasKit (cla: yes, platform-web)
[25457](https://github.com/flutter/engine/pull/25457) Roll Skia from c6a3d531880e to c8c573d455f0 (1 revision) (cla: yes, waiting for tree to go green)
[25459](https://github.com/flutter/engine/pull/25459) Roll Dart SDK from b9471aadaa1a to 9704370488b0 (1 revision) (cla: yes, waiting for tree to go green)
[25460](https://github.com/flutter/engine/pull/25460) Roll Skia from c8c573d455f0 to 601abfacc736 (8 revisions) (cla: yes, waiting for tree to go green)
[25461](https://github.com/flutter/engine/pull/25461) Roll Skia from 601abfacc736 to d986f476ae68 (5 revisions) (cla: yes, waiting for tree to go green)
[25462](https://github.com/flutter/engine/pull/25462) Revert "Reland: Call Dart plugin registrant if available (#23813)" (cla: yes, waiting for tree to go green)
[25463](https://github.com/flutter/engine/pull/25463) Roll Skia from d986f476ae68 to 0195bec798a9 (1 revision) (cla: yes, waiting for tree to go green)
[25466](https://github.com/flutter/engine/pull/25466) Roll Dart SDK from 9704370488b0 to e778310fcdcc (1 revision) (cla: yes, waiting for tree to go green)
[25467](https://github.com/flutter/engine/pull/25467) Roll Fuchsia Linux SDK from dl1JUKVuj... to 0Db2pEb0U... (cla: yes, waiting for tree to go green)
[25468](https://github.com/flutter/engine/pull/25468) Roll Fuchsia Mac SDK from Z-pl5laFz... to a9NOB6sdo... (cla: yes, waiting for tree to go green)
[25469](https://github.com/flutter/engine/pull/25469) Roll Skia from 0195bec798a9 to 2f5a91c531de (1 revision) (cla: yes, waiting for tree to go green)
[25470](https://github.com/flutter/engine/pull/25470) Roll Dart SDK from e778310fcdcc to dda1a31495e3 (1 revision) (cla: yes, waiting for tree to go green)
[25472](https://github.com/flutter/engine/pull/25472) Roll Dart SDK from dda1a31495e3 to 3f36938a7cff (2 revisions) (cla: yes, waiting for tree to go green)
[25473](https://github.com/flutter/engine/pull/25473) Roll Skia from 2f5a91c531de to 5c6258287461 (3 revisions) (cla: yes, waiting for tree to go green)
[25474](https://github.com/flutter/engine/pull/25474) Roll Fuchsia Linux SDK from 0Db2pEb0U... to R3xv3K9Hz... (cla: yes, waiting for tree to go green)
[25476](https://github.com/flutter/engine/pull/25476) Roll Fuchsia Mac SDK from a9NOB6sdo... to eV1E54W8a... (cla: yes, waiting for tree to go green)
[25479](https://github.com/flutter/engine/pull/25479) Roll Dart SDK from 3f36938a7cff to 1fd6151bb137 (2 revisions) (cla: yes, waiting for tree to go green)
### waiting for tree to go green - 774 pull request(s)
[21824](https://github.com/flutter/engine/pull/21824) Add DiffContext (cla: yes, waiting for tree to go green)
[23466](https://github.com/flutter/engine/pull/23466) Hardware keyboard: Web, embedder, and dart:ui (cla: yes, platform-ios, platform-web, waiting for tree to go green)
[23674](https://github.com/flutter/engine/pull/23674) Fix argument specifier for g_warning() (cla: yes, waiting for tree to go green)
[23730](https://github.com/flutter/engine/pull/23730) Continue filling in the list of FontFeatures (cla: yes, waiting for tree to go green)
[23776](https://github.com/flutter/engine/pull/23776) unhide uitextinput when focused (cla: yes, platform-ios, waiting for tree to go green)
[23793](https://github.com/flutter/engine/pull/23793) fix video(texture) with opacity can not play issue (cla: yes, waiting for tree to go green)
[23906](https://github.com/flutter/engine/pull/23906) Increase logging in AngleSurfaceManager (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[23911](https://github.com/flutter/engine/pull/23911) Fix Android IO and Worker threads priority issue (cla: yes, platform-android, waiting for tree to go green)
[23931](https://github.com/flutter/engine/pull/23931) Ensures that hit testing only returns focusable nodes. (cla: yes, cp: 1.26, waiting for tree to go green)
[23934](https://github.com/flutter/engine/pull/23934) Remove libtxt styled runs benchmark (cla: yes, waiting for tree to go green)
[23948](https://github.com/flutter/engine/pull/23948) Grammatical mistake on pull request template (cla: yes, waiting for tree to go green)
[23955](https://github.com/flutter/engine/pull/23955) Fix "Buffer not large enough for pixels" by adding buffer.rewind() (cla: yes, platform-android, waiting for tree to go green)
[23960](https://github.com/flutter/engine/pull/23960) Roll Skia from f661ec788b14 to 798021ada347 (3 revisions) (cla: yes, waiting for tree to go green)
[23961](https://github.com/flutter/engine/pull/23961) [web] Fix flake due to shadow rendering difference on webkit (cla: yes, platform-web, waiting for tree to go green)
[23962](https://github.com/flutter/engine/pull/23962) Roll Fuchsia Linux SDK from DLfskqEUx... to f9rffU-3C... (cla: yes, waiting for tree to go green)
[23963](https://github.com/flutter/engine/pull/23963) Pass sampling rather than rely on (deprecated) filter-quality (cla: yes, waiting for tree to go green)
[23964](https://github.com/flutter/engine/pull/23964) Roll Skia from 798021ada347 to 0ecfdea19978 (10 revisions) (cla: yes, waiting for tree to go green)
[23965](https://github.com/flutter/engine/pull/23965) [web] Fix alignment issue in rich paragraphs (cla: yes, platform-web, waiting for tree to go green)
[23966](https://github.com/flutter/engine/pull/23966) Roll Dart SDK from 15dfe858c4a6 to 89cd39c6eee4 (1 revision) (cla: yes, waiting for tree to go green)
[23967](https://github.com/flutter/engine/pull/23967) [macos] Make metal the default rendering backend on macOS >= 10.14 (cla: yes, waiting for tree to go green)
[23968](https://github.com/flutter/engine/pull/23968) Roll Skia from 0ecfdea19978 to a6bff0c3446b (3 revisions) (cla: yes, waiting for tree to go green)
[23970](https://github.com/flutter/engine/pull/23970) Fix a null pointer dereference if dladdr is unable to find a symbol name (cla: yes, waiting for tree to go green)
[23971](https://github.com/flutter/engine/pull/23971) Roll Skia from a6bff0c3446b to 6742d13cbe2e (9 revisions) (cla: yes, waiting for tree to go green)
[23973](https://github.com/flutter/engine/pull/23973) Roll Dart SDK from 89cd39c6eee4 to c0c5298d3629 (1 revision) (cla: yes, waiting for tree to go green)
[23975](https://github.com/flutter/engine/pull/23975) Roll Skia from 6742d13cbe2e to 4d6310ab2070 (7 revisions) (cla: yes, waiting for tree to go green)
[23976](https://github.com/flutter/engine/pull/23976) Roll Fuchsia Mac SDK from FtwF654ce... to d_4gHZXiG... (cla: yes, waiting for tree to go green)
[23977](https://github.com/flutter/engine/pull/23977) Roll Dart SDK from c0c5298d3629 to 98e6e543e88d (1 revision) (cla: yes, waiting for tree to go green)
[23979](https://github.com/flutter/engine/pull/23979) Roll Skia from 4d6310ab2070 to a78376bf2aea (4 revisions) (cla: yes, waiting for tree to go green)
[23980](https://github.com/flutter/engine/pull/23980) Load FlutterLoader when creating FlutterEngineGroup (cla: yes, platform-android, waiting for tree to go green)
[23981](https://github.com/flutter/engine/pull/23981) Roll Fuchsia Linux SDK from f9rffU-3C... to flUwG0eOB... (cla: yes, waiting for tree to go green)
[23982](https://github.com/flutter/engine/pull/23982) Roll Dart SDK from 98e6e543e88d to a80bedfd7bc3 (1 revision) (cla: yes, waiting for tree to go green)
[23984](https://github.com/flutter/engine/pull/23984) Roll Skia from a78376bf2aea to 22cc3be64b3e (1 revision) (cla: yes, waiting for tree to go green)
[23990](https://github.com/flutter/engine/pull/23990) [windows] Honor only valid resize requests (cla: yes, waiting for tree to go green)
[23992](https://github.com/flutter/engine/pull/23992) Roll Fuchsia Mac SDK from d_4gHZXiG... to vY3-OtizQ... (cla: yes, waiting for tree to go green)
[23994](https://github.com/flutter/engine/pull/23994) Roll Skia from 22cc3be64b3e to dd9449c23b9d (11 revisions) (cla: yes, waiting for tree to go green)
[23996](https://github.com/flutter/engine/pull/23996) Roll Dart SDK from a80bedfd7bc3 to a50a89356008 (1 revision) (cla: yes, waiting for tree to go green)
[24000](https://github.com/flutter/engine/pull/24000) Roll Skia from dd9449c23b9d to b7f5e1b20db1 (7 revisions) (cla: yes, waiting for tree to go green)
[24002](https://github.com/flutter/engine/pull/24002) Roll Fuchsia Linux SDK from flUwG0eOB... to uD1gzvk5P... (cla: yes, waiting for tree to go green)
[24005](https://github.com/flutter/engine/pull/24005) Roll Dart SDK from a50a89356008 to 3260b2543287 (1 revision) (cla: yes, waiting for tree to go green)
[24006](https://github.com/flutter/engine/pull/24006) Roll Skia from b7f5e1b20db1 to ed552f8702ad (8 revisions) (cla: yes, waiting for tree to go green)
[24010](https://github.com/flutter/engine/pull/24010) Roll Fuchsia Mac SDK from vY3-OtizQ... to FPTUvmyxz... (cla: yes, waiting for tree to go green)
[24014](https://github.com/flutter/engine/pull/24014) Roll Fuchsia Linux SDK from uD1gzvk5P... to IiU1NqRtR... (cla: yes, waiting for tree to go green)
[24016](https://github.com/flutter/engine/pull/24016) Roll Skia from ed552f8702ad to 0bad6cf1458d (10 revisions) (cla: yes, waiting for tree to go green)
[24018](https://github.com/flutter/engine/pull/24018) Roll Skia from 0bad6cf1458d to 993e92dc31a6 (4 revisions) (cla: yes, waiting for tree to go green)
[24023](https://github.com/flutter/engine/pull/24023) Roll Dart SDK from 3260b2543287 to 21b7f864e3b9 (4 revisions) (cla: yes, waiting for tree to go green)
[24024](https://github.com/flutter/engine/pull/24024) Use `runes` to get code units in CanvasKit. (cla: yes, platform-web, waiting for tree to go green)
[24025](https://github.com/flutter/engine/pull/24025) TextStyle level leadingDistribution (cla: yes, waiting for tree to go green)
[24030](https://github.com/flutter/engine/pull/24030) Roll Dart SDK from 21b7f864e3b9 to f2a7851b676d (1 revision) (cla: yes, waiting for tree to go green)
[24033](https://github.com/flutter/engine/pull/24033) Roll Clang Mac from 139p8dSfW... to CafIgcePd... (cla: yes, waiting for tree to go green)
[24034](https://github.com/flutter/engine/pull/24034) Roll Skia from 993e92dc31a6 to 0492a744a52d (12 revisions) (cla: yes, waiting for tree to go green)
[24036](https://github.com/flutter/engine/pull/24036) [web] Fix text alignment when transform + tight constraints + DOM rendering (cla: yes, platform-web, waiting for tree to go green)
[24037](https://github.com/flutter/engine/pull/24037) [web] Implement CanvasParagraph.getLineBoundary (cla: yes, platform-web, waiting for tree to go green)
[24038](https://github.com/flutter/engine/pull/24038) Roll Dart SDK from f2a7851b676d to 9c612e4b790a (1 revision) (cla: yes, waiting for tree to go green)
[24039](https://github.com/flutter/engine/pull/24039) Roll Skia from 0492a744a52d to 00f4769e34d8 (4 revisions) (cla: yes, waiting for tree to go green)
[24044](https://github.com/flutter/engine/pull/24044) Roll Fuchsia Mac SDK from FPTUvmyxz... to 2R0Qlyol4... (cla: yes, waiting for tree to go green)
[24045](https://github.com/flutter/engine/pull/24045) Roll Fuchsia Linux SDK from IiU1NqRtR... to fyXNImnNH... (cla: yes, waiting for tree to go green)
[24047](https://github.com/flutter/engine/pull/24047) Roll Skia from 00f4769e34d8 to b9f95ba9f36a (5 revisions) (cla: yes, waiting for tree to go green)
[24048](https://github.com/flutter/engine/pull/24048) Roll Dart SDK from 9c612e4b790a to d7bb34496619 (1 revision) (cla: yes, waiting for tree to go green)
[24049](https://github.com/flutter/engine/pull/24049) Roll Skia from b9f95ba9f36a to 6f3243c32005 (1 revision) (cla: yes, waiting for tree to go green)
[24050](https://github.com/flutter/engine/pull/24050) Roll Dart SDK from d7bb34496619 to 6c97fcdd12dc (1 revision) (cla: yes, waiting for tree to go green)
[24053](https://github.com/flutter/engine/pull/24053) Roll Skia from 6f3243c32005 to 0de76f72cd5e (2 revisions) (cla: yes, waiting for tree to go green)
[24056](https://github.com/flutter/engine/pull/24056) Roll Skia from 0de76f72cd5e to cdd852b57948 (1 revision) (cla: yes, waiting for tree to go green)
[24059](https://github.com/flutter/engine/pull/24059) Roll Skia from cdd852b57948 to 0ab283aaf2a1 (5 revisions) (cla: yes, waiting for tree to go green)
[24060](https://github.com/flutter/engine/pull/24060) Roll Fuchsia Mac SDK from 2R0Qlyol4... to u2vmt9DP-... (cla: yes, waiting for tree to go green)
[24061](https://github.com/flutter/engine/pull/24061) Roll Fuchsia Linux SDK from fyXNImnNH... to 334LMW0c_... (cla: yes, waiting for tree to go green)
[24065](https://github.com/flutter/engine/pull/24065) Roll Skia from 0ab283aaf2a1 to a89b43092e9d (18 revisions) (cla: yes, waiting for tree to go green)
[24067](https://github.com/flutter/engine/pull/24067) Roll Clang Linux from 8LaTdqf7w... to 1Wa1KIWqF... (cla: yes, waiting for tree to go green)
[24069](https://github.com/flutter/engine/pull/24069) Roll Dart SDK from 6c97fcdd12dc to f444e42359d6 (1 revision) (cla: yes, waiting for tree to go green)
[24071](https://github.com/flutter/engine/pull/24071) Roll Skia from a89b43092e9d to 29e521c53302 (7 revisions) (cla: yes, waiting for tree to go green)
[24072](https://github.com/flutter/engine/pull/24072) Roll Skia from 29e521c53302 to 03da7cb8a386 (1 revision) (cla: yes, waiting for tree to go green)
[24073](https://github.com/flutter/engine/pull/24073) Roll Fuchsia Mac SDK from u2vmt9DP-... to X9-CRs-hP... (cla: yes, waiting for tree to go green)
[24077](https://github.com/flutter/engine/pull/24077) Roll Skia from 03da7cb8a386 to af33fb0d28d2 (3 revisions) (cla: yes, waiting for tree to go green)
[24080](https://github.com/flutter/engine/pull/24080) Roll Skia from af33fb0d28d2 to 747c31e296c7 (3 revisions) (cla: yes, waiting for tree to go green)
[24084](https://github.com/flutter/engine/pull/24084) Roll Fuchsia Mac SDK from X9-CRs-hP... to d48YMSgXi... (cla: yes, waiting for tree to go green)
[24085](https://github.com/flutter/engine/pull/24085) Roll Skia from 747c31e296c7 to b2c761332bfc (5 revisions) (cla: yes, waiting for tree to go green)
[24086](https://github.com/flutter/engine/pull/24086) Roll Fuchsia Linux SDK from 334LMW0c_... to KKUuENUT4... (cla: yes, waiting for tree to go green)
[24091](https://github.com/flutter/engine/pull/24091) Roll Skia from b2c761332bfc to 7935900cadaa (3 revisions) (cla: yes, waiting for tree to go green)
[24092](https://github.com/flutter/engine/pull/24092) Roll Skia from 7935900cadaa to ef47e010b352 (2 revisions) (cla: yes, waiting for tree to go green)
[24093](https://github.com/flutter/engine/pull/24093) Roll Dart SDK from f444e42359d6 to f36420a912bb (1 revision) (cla: yes, waiting for tree to go green)
[24095](https://github.com/flutter/engine/pull/24095) Roll Fuchsia Linux SDK from KKUuENUT4... to TTxS3b-Vc... (cla: yes, waiting for tree to go green)
[24097](https://github.com/flutter/engine/pull/24097) Roll Skia from ef47e010b352 to bb6176826683 (1 revision) (cla: yes, waiting for tree to go green)
[24098](https://github.com/flutter/engine/pull/24098) Roll Fuchsia Mac SDK from d48YMSgXi... to KfIfizZ7o... (cla: yes, waiting for tree to go green)
[24099](https://github.com/flutter/engine/pull/24099) Roll Skia from bb6176826683 to 8ef3c539a26e (4 revisions) (cla: yes, waiting for tree to go green)
[24101](https://github.com/flutter/engine/pull/24101) Use sampling instead of (deprecated) filter-quality (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[24102](https://github.com/flutter/engine/pull/24102) Roll Fuchsia Linux SDK from TTxS3b-Vc... to -iUKxTl_w... (cla: yes, waiting for tree to go green)
[24103](https://github.com/flutter/engine/pull/24103) Roll Dart SDK from f36420a912bb to a6d86f12bf00 (1 revision) (cla: yes, waiting for tree to go green)
[24104](https://github.com/flutter/engine/pull/24104) Roll Skia from 8ef3c539a26e to 324b7a6f3a49 (4 revisions) (cla: yes, waiting for tree to go green)
[24108](https://github.com/flutter/engine/pull/24108) Roll Skia from 324b7a6f3a49 to 3cc4afc70309 (8 revisions) (cla: yes, waiting for tree to go green)
[24113](https://github.com/flutter/engine/pull/24113) Roll Fuchsia Mac SDK from KfIfizZ7o... to IHHTb9H-B... (cla: yes, waiting for tree to go green)
[24114](https://github.com/flutter/engine/pull/24114) Roll Skia from 3cc4afc70309 to 3364579f8332 (13 revisions) (cla: yes, waiting for tree to go green)
[24115](https://github.com/flutter/engine/pull/24115) Roll Fuchsia Linux SDK from -iUKxTl_w... to blNDDMWIJ... (cla: yes, waiting for tree to go green)
[24116](https://github.com/flutter/engine/pull/24116) Roll Skia from 3364579f8332 to fde740c7f26e (6 revisions) (cla: yes, waiting for tree to go green)
[24118](https://github.com/flutter/engine/pull/24118) Roll Skia from fde740c7f26e to a6c692b8844d (7 revisions) (cla: yes, waiting for tree to go green)
[24122](https://github.com/flutter/engine/pull/24122) Roll Dart SDK from a6d86f12bf00 to c066c7b294bf (2 revisions) (cla: yes, waiting for tree to go green)
[24123](https://github.com/flutter/engine/pull/24123) Roll Skia from a6c692b8844d to f9a0f1a9be9e (2 revisions) (cla: yes, waiting for tree to go green)
[24132](https://github.com/flutter/engine/pull/24132) Roll Fuchsia Mac SDK from IHHTb9H-B... to Cn1MLtDdP... (cla: yes, waiting for tree to go green)
[24133](https://github.com/flutter/engine/pull/24133) Roll Fuchsia Linux SDK from blNDDMWIJ... to _bFb8vcW9... (cla: yes, waiting for tree to go green)
[24137](https://github.com/flutter/engine/pull/24137) Roll Skia from f9a0f1a9be9e to 931cad1d74bb (11 revisions) (cla: yes, waiting for tree to go green)
[24138](https://github.com/flutter/engine/pull/24138) Roll Skia from 931cad1d74bb to e9e8e5d771c5 (8 revisions) (cla: yes, waiting for tree to go green)
[24141](https://github.com/flutter/engine/pull/24141) Roll Skia from e9e8e5d771c5 to ee9cb6aec35d (7 revisions) (cla: yes, waiting for tree to go green)
[24143](https://github.com/flutter/engine/pull/24143) Roll Dart SDK from c066c7b294bf to 75251de89baf (1 revision) (cla: yes, waiting for tree to go green)
[24146](https://github.com/flutter/engine/pull/24146) fixes android deeplink query paremeter null crashes (cla: yes, platform-android, waiting for tree to go green)
[24148](https://github.com/flutter/engine/pull/24148) Roll Skia from ee9cb6aec35d to 9ff7b8d67559 (10 revisions) (cla: yes, waiting for tree to go green)
[24150](https://github.com/flutter/engine/pull/24150) [web] Fix exception when using a keyboard (cla: yes, platform-web, waiting for tree to go green)
[24151](https://github.com/flutter/engine/pull/24151) Roll Fuchsia Mac SDK from Cn1MLtDdP... to CZUusaxvk... (cla: yes, waiting for tree to go green)
[24154](https://github.com/flutter/engine/pull/24154) Roll Fuchsia Linux SDK from _bFb8vcW9... to k80WkJhOL... (cla: yes, waiting for tree to go green)
[24156](https://github.com/flutter/engine/pull/24156) Roll Clang Mac from CafIgcePd... to hoapl8VNW... (cla: yes, waiting for tree to go green)
[24157](https://github.com/flutter/engine/pull/24157) [metal] Darwin unified external metal textures (cla: yes, platform-ios, waiting for tree to go green)
[24172](https://github.com/flutter/engine/pull/24172) Roll Dart SDK from 75251de89baf to 102cf619465d (1 revision) (cla: yes, waiting for tree to go green)
[24176](https://github.com/flutter/engine/pull/24176) Roll Skia from 9ff7b8d67559 to 20e92f77e2b3 (34 revisions) (cla: yes, waiting for tree to go green)
[24178](https://github.com/flutter/engine/pull/24178) Roll Skia from 20e92f77e2b3 to e2c0504c27a2 (3 revisions) (cla: yes, waiting for tree to go green)
[24180](https://github.com/flutter/engine/pull/24180) Roll Fuchsia Mac SDK from CZUusaxvk... to kwPlXsW2q... (cla: yes, waiting for tree to go green)
[24182](https://github.com/flutter/engine/pull/24182) Roll Fuchsia Linux SDK from k80WkJhOL... to sHdRLs17n... (cla: yes, waiting for tree to go green)
[24183](https://github.com/flutter/engine/pull/24183) Roll Skia from e2c0504c27a2 to f71278c9937c (8 revisions) (cla: yes, waiting for tree to go green)
[24184](https://github.com/flutter/engine/pull/24184) Roll Dart SDK from 102cf619465d to 5bf0ad33fa3c (1 revision) (cla: yes, waiting for tree to go green)
[24188](https://github.com/flutter/engine/pull/24188) Roll Skia from f71278c9937c to d48f9daeb544 (10 revisions) (cla: yes, waiting for tree to go green)
[24189](https://github.com/flutter/engine/pull/24189) Roll Skia from d48f9daeb544 to 38df4c8470ab (1 revision) (cla: yes, waiting for tree to go green)
[24191](https://github.com/flutter/engine/pull/24191) Roll Dart SDK from 5bf0ad33fa3c to 8c39136ffb2f (1 revision) (cla: yes, waiting for tree to go green)
[24192](https://github.com/flutter/engine/pull/24192) Roll Skia from 38df4c8470ab to 1d35777a4fa9 (2 revisions) (cla: yes, waiting for tree to go green)
[24193](https://github.com/flutter/engine/pull/24193) Roll Skia from 1d35777a4fa9 to c66754bd4ded (3 revisions) (cla: yes, waiting for tree to go green)
[24194](https://github.com/flutter/engine/pull/24194) Roll Skia from c66754bd4ded to 8043b787554b (1 revision) (cla: yes, waiting for tree to go green)
[24196](https://github.com/flutter/engine/pull/24196) Roll Skia from 8043b787554b to 9e189aab1ec7 (1 revision) (cla: yes, waiting for tree to go green)
[24198](https://github.com/flutter/engine/pull/24198) Roll Dart SDK from 8c39136ffb2f to 73c34f2ad73f (1 revision) (cla: yes, waiting for tree to go green)
[24199](https://github.com/flutter/engine/pull/24199) Roll Skia from 9e189aab1ec7 to 3c8444e18e74 (4 revisions) (cla: yes, waiting for tree to go green)
[24200](https://github.com/flutter/engine/pull/24200) Roll Skia from 3c8444e18e74 to c481dd69bbb4 (1 revision) (cla: yes, waiting for tree to go green)
[24201](https://github.com/flutter/engine/pull/24201) Roll Fuchsia Mac SDK from kwPlXsW2q... to 03qqGegOA... (cla: yes, waiting for tree to go green)
[24202](https://github.com/flutter/engine/pull/24202) Roll Skia from c481dd69bbb4 to 56c78f4d9edd (3 revisions) (cla: yes, waiting for tree to go green)
[24203](https://github.com/flutter/engine/pull/24203) Roll Fuchsia Linux SDK from sHdRLs17n... to f1YmNNwFe... (cla: yes, waiting for tree to go green)
[24204](https://github.com/flutter/engine/pull/24204) Roll Skia from 56c78f4d9edd to 8eb119af466b (3 revisions) (cla: yes, waiting for tree to go green)
[24205](https://github.com/flutter/engine/pull/24205) Roll Dart SDK from 73c34f2ad73f to 51035f288d30 (1 revision) (cla: yes, waiting for tree to go green)
[24207](https://github.com/flutter/engine/pull/24207) Roll Skia from 8eb119af466b to 420c8a505e54 (5 revisions) (cla: yes, waiting for tree to go green)
[24208](https://github.com/flutter/engine/pull/24208) Roll Skia from 420c8a505e54 to 71d420ddbd3c (3 revisions) (cla: yes, waiting for tree to go green)
[24209](https://github.com/flutter/engine/pull/24209) Roll Skia from 71d420ddbd3c to 2224100b25e3 (4 revisions) (cla: yes, waiting for tree to go green)
[24210](https://github.com/flutter/engine/pull/24210) Move shell/platform/common/cpp to shell/platform/common (cla: yes, waiting for tree to go green)
[24212](https://github.com/flutter/engine/pull/24212) Roll Dart SDK from 51035f288d30 to b1c8ca53bf37 (1 revision) (cla: yes, waiting for tree to go green)
[24213](https://github.com/flutter/engine/pull/24213) Roll Skia from 2224100b25e3 to 7c6abf86f54c (5 revisions) (cla: yes, waiting for tree to go green)
[24214](https://github.com/flutter/engine/pull/24214) [web] Fix text selection from right to left (affects: text input, cla: yes, platform-web, waiting for tree to go green)
[24215](https://github.com/flutter/engine/pull/24215) Roll Skia from 7c6abf86f54c to b88b4e1a12ac (3 revisions) (cla: yes, waiting for tree to go green)
[24217](https://github.com/flutter/engine/pull/24217) Roll Skia from b88b4e1a12ac to 52bf4853c121 (2 revisions) (cla: yes, waiting for tree to go green)
[24219](https://github.com/flutter/engine/pull/24219) libtxt: apply the justify offset to glyph positions instead of paint records (cla: yes, waiting for tree to go green)
[24221](https://github.com/flutter/engine/pull/24221) Roll Skia from 52bf4853c121 to 9f704a864008 (1 revision) (cla: yes, waiting for tree to go green)
[24225](https://github.com/flutter/engine/pull/24225) Roll Fuchsia Mac SDK from 03qqGegOA... to TVGS3E2dT... (cla: yes, waiting for tree to go green)
[24227](https://github.com/flutter/engine/pull/24227) Roll Fuchsia Linux SDK from f1YmNNwFe... to JQoiZreUN... (cla: yes, waiting for tree to go green)
[24228](https://github.com/flutter/engine/pull/24228) Roll Skia from 9f704a864008 to 2a21a21223a7 (3 revisions) (cla: yes, waiting for tree to go green)
[24229](https://github.com/flutter/engine/pull/24229) Roll Skia from 2a21a21223a7 to 2c6d8d970acd (2 revisions) (cla: yes, waiting for tree to go green)
[24230](https://github.com/flutter/engine/pull/24230) Roll Dart SDK from b1c8ca53bf37 to c1616b4405c2 (2 revisions) (cla: yes, waiting for tree to go green)
[24231](https://github.com/flutter/engine/pull/24231) Roll Dart SDK from c1616b4405c2 to 8e4be6e4a496 (1 revision) (cla: yes, waiting for tree to go green)
[24233](https://github.com/flutter/engine/pull/24233) Roll Skia from 2c6d8d970acd to 03555e92a159 (1 revision) (cla: yes, waiting for tree to go green)
[24234](https://github.com/flutter/engine/pull/24234) Roll Skia from 03555e92a159 to c7d6e0ba0b6d (2 revisions) (cla: yes, waiting for tree to go green)
[24235](https://github.com/flutter/engine/pull/24235) Roll Skia from c7d6e0ba0b6d to 1f4cd07af88a (3 revisions) (cla: yes, waiting for tree to go green)
[24237](https://github.com/flutter/engine/pull/24237) Roll Fuchsia Mac SDK from TVGS3E2dT... to kaNAjjK23... (cla: yes, waiting for tree to go green)
[24239](https://github.com/flutter/engine/pull/24239) Roll Skia from 1f4cd07af88a to ca21e14d7754 (4 revisions) (cla: yes, waiting for tree to go green)
[24240](https://github.com/flutter/engine/pull/24240) Roll Fuchsia Linux SDK from JQoiZreUN... to aFijLMarB... (cla: yes, waiting for tree to go green)
[24253](https://github.com/flutter/engine/pull/24253) Define FLUTTER_ENABLE_SKSHAPER consistently when building txt_unittests and txt_benchmarks (cla: yes, waiting for tree to go green)
[24255](https://github.com/flutter/engine/pull/24255) Roll Dart SDK from 8e4be6e4a496 to 9a16b6bca556 (3 revisions) (cla: yes, waiting for tree to go green)
[24256](https://github.com/flutter/engine/pull/24256) Roll Skia from ca21e14d7754 to c0f981560985 (7 revisions) (cla: yes, waiting for tree to go green)
[24257](https://github.com/flutter/engine/pull/24257) Roll Dart SDK from 9a16b6bca556 to daf7b29738c5 (1 revision) (cla: yes, waiting for tree to go green)
[24258](https://github.com/flutter/engine/pull/24258) Roll Fuchsia Mac SDK from kaNAjjK23... to HqhARC-gx... (cla: yes, waiting for tree to go green)
[24259](https://github.com/flutter/engine/pull/24259) Roll Fuchsia Linux SDK from aFijLMarB... to QINp0ypCP... (cla: yes, waiting for tree to go green)
[24264](https://github.com/flutter/engine/pull/24264) Unblock FlutterResizeSynchronizer on engine shutdown (cla: yes, waiting for tree to go green)
[24265](https://github.com/flutter/engine/pull/24265) Roll Skia from c0f981560985 to 827f8c010319 (5 revisions) (cla: yes, waiting for tree to go green)
[24268](https://github.com/flutter/engine/pull/24268) Roll Dart SDK from daf7b29738c5 to 85af45218196 (2 revisions) (cla: yes, waiting for tree to go green)
[24269](https://github.com/flutter/engine/pull/24269) Roll Dart SDK from 85af45218196 to b74a0c8d6786 (1 revision) (cla: yes, waiting for tree to go green)
[24270](https://github.com/flutter/engine/pull/24270) Roll Fuchsia Mac SDK from HqhARC-gx... to DVT8cA5T5... (cla: yes, waiting for tree to go green)
[24271](https://github.com/flutter/engine/pull/24271) Roll Fuchsia Linux SDK from QINp0ypCP... to mFKcPPKFb... (cla: yes, waiting for tree to go green)
[24272](https://github.com/flutter/engine/pull/24272) Fix ImageReader may leak images when onDraw() not called (cla: yes, platform-android, waiting for tree to go green)
[24273](https://github.com/flutter/engine/pull/24273) Roll Skia from 827f8c010319 to 5b67a809c09c (1 revision) (cla: yes, waiting for tree to go green)
[24274](https://github.com/flutter/engine/pull/24274) Roll Skia from 5b67a809c09c to 1d62221553b7 (1 revision) (cla: yes, waiting for tree to go green)
[24275](https://github.com/flutter/engine/pull/24275) Roll Fuchsia Mac SDK from DVT8cA5T5... to 7YXm5Zozt... (cla: yes, waiting for tree to go green)
[24276](https://github.com/flutter/engine/pull/24276) Roll Fuchsia Linux SDK from mFKcPPKFb... to 5SyHEyz-o... (cla: yes, waiting for tree to go green)
[24277](https://github.com/flutter/engine/pull/24277) Roll Dart SDK from b74a0c8d6786 to f2f38b3d7e50 (1 revision) (cla: yes, waiting for tree to go green)
[24278](https://github.com/flutter/engine/pull/24278) Add support for arm64 simulator builds to create_ios_framework.py (cla: yes, waiting for tree to go green)
[24280](https://github.com/flutter/engine/pull/24280) Roll Skia from 1d62221553b7 to 75b7606c0fe1 (4 revisions) (cla: yes, waiting for tree to go green)
[24281](https://github.com/flutter/engine/pull/24281) Roll Fuchsia Mac SDK from 7YXm5Zozt... to BfkGYQEHB... (cla: yes, waiting for tree to go green)
[24282](https://github.com/flutter/engine/pull/24282) Roll Fuchsia Linux SDK from 5SyHEyz-o... to lF6-o-EaT... (cla: yes, waiting for tree to go green)
[24283](https://github.com/flutter/engine/pull/24283) Roll Dart SDK from f2f38b3d7e50 to 5a249d2ce54f (1 revision) (cla: yes, waiting for tree to go green)
[24284](https://github.com/flutter/engine/pull/24284) Roll Skia from 75b7606c0fe1 to c2c1b0c460ec (1 revision) (cla: yes, waiting for tree to go green)
[24287](https://github.com/flutter/engine/pull/24287) Roll Skia from c2c1b0c460ec to 49e5b3a339ed (13 revisions) (cla: yes, waiting for tree to go green)
[24288](https://github.com/flutter/engine/pull/24288) [Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards (cla: yes, platform-android, waiting for tree to go green)
[24289](https://github.com/flutter/engine/pull/24289) Roll Fuchsia Mac SDK from BfkGYQEHB... to lzQvHw_Il... (cla: yes, waiting for tree to go green)
[24290](https://github.com/flutter/engine/pull/24290) Roll Skia from 49e5b3a339ed to 627c6d25695d (4 revisions) (cla: yes, waiting for tree to go green)
[24291](https://github.com/flutter/engine/pull/24291) Roll Fuchsia Linux SDK from lF6-o-EaT... to 5RGNLZoRS... (cla: yes, waiting for tree to go green)
[24293](https://github.com/flutter/engine/pull/24293) [Windows] Fix crash of TextInputPlugin on empty model (cla: yes, waiting for tree to go green)
[24294](https://github.com/flutter/engine/pull/24294) Roll Skia from 627c6d25695d to dfa269f1cd15 (6 revisions) (cla: yes, waiting for tree to go green)
[24295](https://github.com/flutter/engine/pull/24295) Roll Dart SDK from 5a249d2ce54f to 02230d7386c7 (2 revisions) (cla: yes, waiting for tree to go green)
[24300](https://github.com/flutter/engine/pull/24300) Roll Skia from dfa269f1cd15 to 21b8cec137e1 (3 revisions) (cla: yes, waiting for tree to go green)
[24301](https://github.com/flutter/engine/pull/24301) Roll Fuchsia Mac SDK from lzQvHw_Il... to LHRp0kYRi... (cla: yes, waiting for tree to go green)
[24302](https://github.com/flutter/engine/pull/24302) Roll Fuchsia Linux SDK from 5RGNLZoRS... to QJfCXnklY... (cla: yes, waiting for tree to go green)
[24308](https://github.com/flutter/engine/pull/24308) Fix FlutterPlatformViewSemanticsContainer retain cycle with SemanticsObject (cla: yes, platform-ios, waiting for tree to go green)
[24309](https://github.com/flutter/engine/pull/24309) Roll Skia from 21b8cec137e1 to 34c098d7f8e1 (19 revisions) (cla: yes, waiting for tree to go green)
[24310](https://github.com/flutter/engine/pull/24310) Roll Skia from 34c098d7f8e1 to 62b039b36d4d (2 revisions) (cla: yes, waiting for tree to go green)
[24312](https://github.com/flutter/engine/pull/24312) Roll Skia from 62b039b36d4d to e2c9d3c034dc (5 revisions) (cla: yes, waiting for tree to go green)
[24313](https://github.com/flutter/engine/pull/24313) Roll Dart SDK from 02230d7386c7 to 4bd4c2a493e9 (6 revisions) (cla: yes, waiting for tree to go green)
[24316](https://github.com/flutter/engine/pull/24316) Roll Skia from e2c9d3c034dc to ec04e062f3f5 (5 revisions) (cla: yes, waiting for tree to go green)
[24319](https://github.com/flutter/engine/pull/24319) Roll Fuchsia Mac SDK from LHRp0kYRi... to Yyj0Krr1G... (cla: yes, waiting for tree to go green)
[24320](https://github.com/flutter/engine/pull/24320) Roll Fuchsia Linux SDK from QJfCXnklY... to cSlRZzm0z... (cla: yes, waiting for tree to go green)
[24321](https://github.com/flutter/engine/pull/24321) Roll Skia from ec04e062f3f5 to 7f942e46fda2 (3 revisions) (cla: yes, waiting for tree to go green)
[24323](https://github.com/flutter/engine/pull/24323) Roll Dart SDK from 4bd4c2a493e9 to 4740b09e11d4 (2 revisions) (cla: yes, waiting for tree to go green)
[24324](https://github.com/flutter/engine/pull/24324) Roll Skia from 7f942e46fda2 to 9e2c50edaaac (1 revision) (cla: yes, waiting for tree to go green)
[24326](https://github.com/flutter/engine/pull/24326) Roll Skia from 9e2c50edaaac to 140adc676219 (1 revision) (cla: yes, waiting for tree to go green)
[24328](https://github.com/flutter/engine/pull/24328) Roll Dart SDK from 4740b09e11d4 to f832cd2d0536 (1 revision) (cla: yes, waiting for tree to go green)
[24329](https://github.com/flutter/engine/pull/24329) Roll Fuchsia Mac SDK from Yyj0Krr1G... to lEV2crBx-... (cla: yes, waiting for tree to go green)
[24330](https://github.com/flutter/engine/pull/24330) Roll Skia from 140adc676219 to b8c0dab90b92 (16 revisions) (cla: yes, waiting for tree to go green)
[24331](https://github.com/flutter/engine/pull/24331) Revert "Reland "[metal] Darwin unified external metal textures (#2415β¦ (cla: yes, platform-ios, waiting for tree to go green)
[24333](https://github.com/flutter/engine/pull/24333) Always set change type to cancel with `touchesCancelled` on iOS platform view (cla: yes, platform-ios, waiting for tree to go green)
[24334](https://github.com/flutter/engine/pull/24334) Roll Fuchsia Linux SDK from cSlRZzm0z... to neluWd0QF... (cla: yes, waiting for tree to go green)
[24335](https://github.com/flutter/engine/pull/24335) Roll Skia from b8c0dab90b92 to 73122aa45f83 (5 revisions) (cla: yes, waiting for tree to go green)
[24336](https://github.com/flutter/engine/pull/24336) Propagate image decode errors to the future returned by Codec.getNextFrame (cla: yes, waiting for tree to go green)
[24337](https://github.com/flutter/engine/pull/24337) Roll Dart SDK from f832cd2d0536 to ebcb7aee8c0d (1 revision) (cla: yes, waiting for tree to go green)
[24339](https://github.com/flutter/engine/pull/24339) Roll Skia from 73122aa45f83 to 84b0233bb38e (2 revisions) (cla: yes, waiting for tree to go green)
[24343](https://github.com/flutter/engine/pull/24343) Roll Skia from 84b0233bb38e to 997df84ac144 (5 revisions) (cla: yes, waiting for tree to go green)
[24344](https://github.com/flutter/engine/pull/24344) Roll Skia from 997df84ac144 to 9d171b630287 (3 revisions) (cla: yes, waiting for tree to go green)
[24345](https://github.com/flutter/engine/pull/24345) Roll Fuchsia Mac SDK from lEV2crBx-... to dzre2TRPg... (cla: yes, waiting for tree to go green)
[24346](https://github.com/flutter/engine/pull/24346) Roll Skia from 9d171b630287 to 966d795af9a6 (1 revision) (cla: yes, waiting for tree to go green)
[24347](https://github.com/flutter/engine/pull/24347) Remove unnecessary buffer collection image constraints. (cla: yes, waiting for tree to go green)
[24349](https://github.com/flutter/engine/pull/24349) Roll Dart SDK from ebcb7aee8c0d to 2d247d2bcfd4 (1 revision) (cla: yes, waiting for tree to go green)
[24351](https://github.com/flutter/engine/pull/24351) Roll Skia from 966d795af9a6 to eff697a78baa (10 revisions) (cla: yes, waiting for tree to go green)
[24353](https://github.com/flutter/engine/pull/24353) Roll Skia from eff697a78baa to dfa91793f8e9 (9 revisions) (cla: yes, waiting for tree to go green)
[24354](https://github.com/flutter/engine/pull/24354) [web] Fix origin for repeated linear gradients (cla: yes, platform-web, waiting for tree to go green)
[24359](https://github.com/flutter/engine/pull/24359) Roll Fuchsia Mac SDK from dzre2TRPg... to r37VPY1mX... (cla: yes, waiting for tree to go green)
[24361](https://github.com/flutter/engine/pull/24361) Roll Skia from dfa91793f8e9 to c616e1c1791c (16 revisions) (cla: yes, waiting for tree to go green)
[24362](https://github.com/flutter/engine/pull/24362) Roll Dart SDK from 2d247d2bcfd4 to f17d44184bd3 (1 revision) (cla: yes, waiting for tree to go green)
[24364](https://github.com/flutter/engine/pull/24364) Roll Dart SDK from f17d44184bd3 to f94c8b2d1b97 (1 revision) (cla: yes, waiting for tree to go green)
[24365](https://github.com/flutter/engine/pull/24365) Roll Skia from c616e1c1791c to 22363fe3da95 (1 revision) (cla: yes, waiting for tree to go green)
[24366](https://github.com/flutter/engine/pull/24366) Roll Skia from 22363fe3da95 to 3370d6806776 (2 revisions) (cla: yes, waiting for tree to go green)
[24367](https://github.com/flutter/engine/pull/24367) Roll Fuchsia Linux SDK from neluWd0QF... to YMY-cajLa... (cla: yes, waiting for tree to go green)
[24368](https://github.com/flutter/engine/pull/24368) Roll Dart SDK from f94c8b2d1b97 to 02971d1fcc61 (1 revision) (cla: yes, waiting for tree to go green)
[24369](https://github.com/flutter/engine/pull/24369) Roll Fuchsia Mac SDK from r37VPY1mX... to WIqUEANCH... (cla: yes, waiting for tree to go green)
[24370](https://github.com/flutter/engine/pull/24370) Roll Dart SDK from 02971d1fcc61 to 1e0fec6e48cf (1 revision) (cla: yes, waiting for tree to go green)
[24373](https://github.com/flutter/engine/pull/24373) Roll Skia from 3370d6806776 to ec24154521f3 (2 revisions) (cla: yes, waiting for tree to go green)
[24374](https://github.com/flutter/engine/pull/24374) Roll Skia from ec24154521f3 to 28698696f1b3 (4 revisions) (cla: yes, waiting for tree to go green)
[24375](https://github.com/flutter/engine/pull/24375) Roll Dart SDK from 1e0fec6e48cf to add1eac3622c (1 revision) (cla: yes, waiting for tree to go green)
[24376](https://github.com/flutter/engine/pull/24376) Defer making skshader until we know quality (cla: yes, waiting for tree to go green)
[24377](https://github.com/flutter/engine/pull/24377) Fixes hot restart correctly reset the browser history (cla: yes, waiting for tree to go green)
[24378](https://github.com/flutter/engine/pull/24378) Roll Skia from 28698696f1b3 to 3354f8c4f8cb (2 revisions) (cla: yes, waiting for tree to go green)
[24380](https://github.com/flutter/engine/pull/24380) Roll Skia from 3354f8c4f8cb to 2494942f0d8d (4 revisions) (cla: yes, waiting for tree to go green)
[24381](https://github.com/flutter/engine/pull/24381) Roll Fuchsia Linux SDK from YMY-cajLa... to AjjJVX_95... (cla: yes, waiting for tree to go green)
[24383](https://github.com/flutter/engine/pull/24383) Roll Skia from 2494942f0d8d to 6e73404a782c (3 revisions) (cla: yes, waiting for tree to go green)
[24384](https://github.com/flutter/engine/pull/24384) Set debug client info for sysmem allocator (cla: yes, waiting for tree to go green)
[24388](https://github.com/flutter/engine/pull/24388) Roll Skia from 6e73404a782c to ba4c3086ba80 (3 revisions) (cla: yes, waiting for tree to go green)
[24390](https://github.com/flutter/engine/pull/24390) Roll Dart SDK from add1eac3622c to 6eafd1856eb5 (1 revision) (cla: yes, waiting for tree to go green)
[24391](https://github.com/flutter/engine/pull/24391) Roll Fuchsia Mac SDK from WIqUEANCH... to yyQmi032P... (cla: yes, waiting for tree to go green)
[24393](https://github.com/flutter/engine/pull/24393) Roll Skia from ba4c3086ba80 to 4f065e286df6 (2 revisions) (cla: yes, waiting for tree to go green)
[24394](https://github.com/flutter/engine/pull/24394) Roll Dart SDK from 6eafd1856eb5 to e9693f1b2401 (1 revision) (cla: yes, waiting for tree to go green)
[24395](https://github.com/flutter/engine/pull/24395) Roll Fuchsia Linux SDK from AjjJVX_95... to uJ8jPHroy... (cla: yes, waiting for tree to go green)
[24396](https://github.com/flutter/engine/pull/24396) Roll Fuchsia Mac SDK from yyQmi032P... to NQL9o1B8n... (cla: yes, waiting for tree to go green)
[24397](https://github.com/flutter/engine/pull/24397) Roll Dart SDK from e9693f1b2401 to 4c8147b7b41e (1 revision) (cla: yes, waiting for tree to go green)
[24398](https://github.com/flutter/engine/pull/24398) Roll Skia from 4f065e286df6 to 554aabbaa8e8 (1 revision) (cla: yes, waiting for tree to go green)
[24402](https://github.com/flutter/engine/pull/24402) Roll Dart SDK from 4c8147b7b41e to 56fa015ca3ec (1 revision) (cla: yes, waiting for tree to go green)
[24403](https://github.com/flutter/engine/pull/24403) Roll Skia from 554aabbaa8e8 to 7a2ff98ce68b (1 revision) (cla: yes, waiting for tree to go green)
[24404](https://github.com/flutter/engine/pull/24404) Roll Skia from 7a2ff98ce68b to c3e152b9f795 (2 revisions) (cla: yes, waiting for tree to go green)
[24408](https://github.com/flutter/engine/pull/24408) Roll Dart SDK from 56fa015ca3ec to c9b47adb178e (1 revision) (cla: yes, waiting for tree to go green)
[24410](https://github.com/flutter/engine/pull/24410) Roll Fuchsia Mac SDK from NQL9o1B8n... to OHm_snJzB... (cla: yes, waiting for tree to go green)
[24411](https://github.com/flutter/engine/pull/24411) Roll Fuchsia Linux SDK from uJ8jPHroy... to JmB58d-3R... (cla: yes, waiting for tree to go green)
[24414](https://github.com/flutter/engine/pull/24414) Roll Skia from c3e152b9f795 to b44fbb3392f8 (3 revisions) (cla: yes, waiting for tree to go green)
[24415](https://github.com/flutter/engine/pull/24415) Roll Skia from b44fbb3392f8 to 56a8fbd21ee2 (3 revisions) (cla: yes, waiting for tree to go green)
[24416](https://github.com/flutter/engine/pull/24416) Roll Dart SDK from c9b47adb178e to 648d5f951915 (1 revision) (cla: yes, waiting for tree to go green)
[24418](https://github.com/flutter/engine/pull/24418) Roll Skia from 56a8fbd21ee2 to 7cb0f6e9702a (1 revision) (cla: yes, waiting for tree to go green)
[24419](https://github.com/flutter/engine/pull/24419) Roll Fuchsia Mac SDK from OHm_snJzB... to H0v5Ox4Vs... (cla: yes, waiting for tree to go green)
[24420](https://github.com/flutter/engine/pull/24420) Roll Fuchsia Linux SDK from JmB58d-3R... to KKD5xVYLO... (cla: yes, waiting for tree to go green)
[24421](https://github.com/flutter/engine/pull/24421) Roll Dart SDK from 648d5f951915 to 39dc63439396 (1 revision) (cla: yes, waiting for tree to go green)
[24425](https://github.com/flutter/engine/pull/24425) Roll Fuchsia Mac SDK from H0v5Ox4Vs... to eG4TqZBn9... (cla: yes, waiting for tree to go green)
[24427](https://github.com/flutter/engine/pull/24427) Roll Skia from 7cb0f6e9702a to 330578e81158 (1 revision) (cla: yes, waiting for tree to go green)
[24428](https://github.com/flutter/engine/pull/24428) Windows: Improve window resizing (cla: yes, waiting for tree to go green)
[24430](https://github.com/flutter/engine/pull/24430) Roll Fuchsia Linux SDK from KKD5xVYLO... to C2FaCuCLB... (cla: yes, waiting for tree to go green)
[24431](https://github.com/flutter/engine/pull/24431) Roll Dart SDK from 39dc63439396 to 4db0f5599c85 (1 revision) (cla: yes, waiting for tree to go green)
[24434](https://github.com/flutter/engine/pull/24434) Roll Skia from 330578e81158 to 4a3ec173b31b (5 revisions) (cla: yes, waiting for tree to go green)
[24435](https://github.com/flutter/engine/pull/24435) Roll Skia from 4a3ec173b31b to fc48f2b5f67d (2 revisions) (cla: yes, waiting for tree to go green)
[24437](https://github.com/flutter/engine/pull/24437) Roll Fuchsia Mac SDK from eG4TqZBn9... to kyS_yAeml... (cla: yes, waiting for tree to go green)
[24439](https://github.com/flutter/engine/pull/24439) Roll Clang Linux from 6BYbqFtrH... to L9TEpKo-D... (cla: yes, waiting for tree to go green)
[24440](https://github.com/flutter/engine/pull/24440) Roll Clang Mac from hoapl8VNW... to QimZEUJUn... (cla: yes, waiting for tree to go green)
[24442](https://github.com/flutter/engine/pull/24442) Roll Skia from fc48f2b5f67d to dbd4e6f0c0d4 (5 revisions) (cla: yes, waiting for tree to go green)
[24444](https://github.com/flutter/engine/pull/24444) Roll Fuchsia Linux SDK from C2FaCuCLB... to PNW_Evsrm... (cla: yes, waiting for tree to go green)
[24446](https://github.com/flutter/engine/pull/24446) Roll Skia from dbd4e6f0c0d4 to bf43df6478f9 (2 revisions) (cla: yes, waiting for tree to go green)
[24447](https://github.com/flutter/engine/pull/24447) [web] Fix right click issue when dragging (cla: yes, platform-web, waiting for tree to go green)
[24448](https://github.com/flutter/engine/pull/24448) Roll Skia from bf43df6478f9 to fcc758cdc24e (4 revisions) (cla: yes, waiting for tree to go green)
[24449](https://github.com/flutter/engine/pull/24449) Roll Dart SDK from 1e0fec6e48cf to 494cd25b1d9a (12 revisions) (cla: yes, waiting for tree to go green)
[24450](https://github.com/flutter/engine/pull/24450) Roll Skia from fcc758cdc24e to fbc3a8362d7f (1 revision) (cla: yes, waiting for tree to go green)
[24451](https://github.com/flutter/engine/pull/24451) Roll Fuchsia Mac SDK from kyS_yAeml... to RsAmJzDpe... (cla: yes, waiting for tree to go green)
[24452](https://github.com/flutter/engine/pull/24452) Roll Dart SDK from 494cd25b1d9a to 34052583a73c (1 revision) (cla: yes, waiting for tree to go green)
[24453](https://github.com/flutter/engine/pull/24453) Roll Skia from fbc3a8362d7f to 8172d165772e (1 revision) (cla: yes, waiting for tree to go green)
[24454](https://github.com/flutter/engine/pull/24454) Roll Dart SDK from 34052583a73c to d70fb6e63fe4 (2 revisions) (cla: yes, waiting for tree to go green)
[24455](https://github.com/flutter/engine/pull/24455) Roll Skia from 8172d165772e to 2bb5ef3e9fbf (2 revisions) (cla: yes, waiting for tree to go green)
[24456](https://github.com/flutter/engine/pull/24456) Revert "Reland "Remove pipeline in favor of layer tree holder (#18901β¦ (cla: yes, waiting for tree to go green)
[24458](https://github.com/flutter/engine/pull/24458) Roll Fuchsia Linux SDK from PNW_Evsrm... to TqiQL9N6s... (cla: yes, waiting for tree to go green)
[24459](https://github.com/flutter/engine/pull/24459) Roll Skia from 2bb5ef3e9fbf to 270cec21a7e7 (10 revisions) (cla: yes, waiting for tree to go green)
[24460](https://github.com/flutter/engine/pull/24460) Roll Dart SDK from d70fb6e63fe4 to fc5e80cbdc6f (1 revision) (cla: yes, waiting for tree to go green)
[24463](https://github.com/flutter/engine/pull/24463) [Android text input] fix android autofill on focused text field (cla: yes, platform-android, waiting for tree to go green)
[24467](https://github.com/flutter/engine/pull/24467) Roll Skia from 270cec21a7e7 to 5db699af9de8 (9 revisions) (cla: yes, waiting for tree to go green)
[24468](https://github.com/flutter/engine/pull/24468) Roll Dart SDK from fc5e80cbdc6f to ae768c81b213 (1 revision) (cla: yes, waiting for tree to go green)
[24469](https://github.com/flutter/engine/pull/24469) Roll Skia from 5db699af9de8 to bec62308e42d (4 revisions) (cla: yes, waiting for tree to go green)
[24471](https://github.com/flutter/engine/pull/24471) Roll Skia from bec62308e42d to a6e776060f49 (1 revision) (cla: yes, waiting for tree to go green)
[24472](https://github.com/flutter/engine/pull/24472) Roll Fuchsia Mac SDK from RsAmJzDpe... to SP8bksW54... (cla: yes, waiting for tree to go green)
[24474](https://github.com/flutter/engine/pull/24474) Roll Skia from a6e776060f49 to 82a8130654bc (1 revision) (cla: yes, waiting for tree to go green)
[24475](https://github.com/flutter/engine/pull/24475) Roll Skia from 82a8130654bc to a94ca0a9d34b (1 revision) (cla: yes, waiting for tree to go green)
[24476](https://github.com/flutter/engine/pull/24476) Roll Fuchsia Linux SDK from TqiQL9N6s... to elAhIisHy... (cla: yes, waiting for tree to go green)
[24477](https://github.com/flutter/engine/pull/24477) Roll Dart SDK from ae768c81b213 to 6af7d0febb32 (2 revisions) (cla: yes, waiting for tree to go green)
[24478](https://github.com/flutter/engine/pull/24478) Roll Skia from a94ca0a9d34b to 11440726916f (1 revision) (cla: yes, waiting for tree to go green)
[24479](https://github.com/flutter/engine/pull/24479) Let FlutterEngine to turn off automaticallyRegisterPlugins from AndroidManifest.xml. (cla: yes, platform-android, waiting for tree to go green)
[24480](https://github.com/flutter/engine/pull/24480) Roll Skia from 11440726916f to 9f8e9ece8a4a (3 revisions) (cla: yes, waiting for tree to go green)
[24481](https://github.com/flutter/engine/pull/24481) Roll Skia from 9f8e9ece8a4a to 70e51e6d761d (1 revision) (cla: yes, waiting for tree to go green)
[24484](https://github.com/flutter/engine/pull/24484) Roll Skia from 70e51e6d761d to bded42ab5173 (5 revisions) (cla: yes, waiting for tree to go green)
[24486](https://github.com/flutter/engine/pull/24486) Revert "[Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards" (cla: yes, platform-android, waiting for tree to go green)
[24487](https://github.com/flutter/engine/pull/24487) Roll Skia from bded42ab5173 to e548dcbf1b8e (5 revisions) (cla: yes, waiting for tree to go green)
[24488](https://github.com/flutter/engine/pull/24488) Roll Fuchsia Mac SDK from SP8bksW54... to odBGYc9-_... (cla: yes, waiting for tree to go green)
[24490](https://github.com/flutter/engine/pull/24490) Roll Skia from e548dcbf1b8e to 42582fc97bb3 (7 revisions) (cla: yes, waiting for tree to go green)
[24491](https://github.com/flutter/engine/pull/24491) Roll Dart SDK from fc5e80cbdc6f to 3cf0a5ae9d65 (4 revisions) (cla: yes, waiting for tree to go green)
[24493](https://github.com/flutter/engine/pull/24493) Roll Skia from 42582fc97bb3 to 17776e38ef63 (3 revisions) (cla: yes, waiting for tree to go green)
[24497](https://github.com/flutter/engine/pull/24497) Roll Skia from 17776e38ef63 to 91bfda0ac819 (5 revisions) (cla: yes, waiting for tree to go green)
[24499](https://github.com/flutter/engine/pull/24499) Roll Dart SDK from 3cf0a5ae9d65 to 98a1f33db020 (1 revision) (cla: yes, waiting for tree to go green)
[24501](https://github.com/flutter/engine/pull/24501) Roll Skia from 91bfda0ac819 to 1017a3558fc8 (2 revisions) (cla: yes, waiting for tree to go green)
[24505](https://github.com/flutter/engine/pull/24505) Roll Fuchsia Linux SDK from elAhIisHy... to dkB0v_vTx... (cla: yes, waiting for tree to go green)
[24508](https://github.com/flutter/engine/pull/24508) Roll Skia from 1017a3558fc8 to 3a71687275bf (1 revision) (cla: yes, waiting for tree to go green)
[24509](https://github.com/flutter/engine/pull/24509) Roll Skia from 3a71687275bf to c5e4b2546049 (2 revisions) (cla: yes, waiting for tree to go green)
[24510](https://github.com/flutter/engine/pull/24510) Roll Skia from c5e4b2546049 to bbdbff81bdf6 (1 revision) (cla: yes, waiting for tree to go green)
[24511](https://github.com/flutter/engine/pull/24511) Roll Fuchsia Mac SDK from odBGYc9-_... to U2pgmH2x-... (cla: yes, waiting for tree to go green)
[24512](https://github.com/flutter/engine/pull/24512) Roll Skia from bbdbff81bdf6 to 82094cdb9d54 (1 revision) (cla: yes, waiting for tree to go green)
[24513](https://github.com/flutter/engine/pull/24513) Roll Skia from 82094cdb9d54 to 81a58cfe3bf8 (1 revision) (cla: yes, waiting for tree to go green)
[24514](https://github.com/flutter/engine/pull/24514) Roll Skia from 81a58cfe3bf8 to af8db303f7f4 (2 revisions) (cla: yes, waiting for tree to go green)
[24515](https://github.com/flutter/engine/pull/24515) Roll Skia from af8db303f7f4 to a50940da6d67 (1 revision) (cla: yes, waiting for tree to go green)
[24517](https://github.com/flutter/engine/pull/24517) Roll Skia from a50940da6d67 to a8448470e80a (1 revision) (cla: yes, waiting for tree to go green)
[24519](https://github.com/flutter/engine/pull/24519) Default to bilerp for layers (cla: yes, waiting for tree to go green)
[24520](https://github.com/flutter/engine/pull/24520) Roll Skia from a8448470e80a to 24ec76454aa5 (3 revisions) (cla: yes, waiting for tree to go green)
[24522](https://github.com/flutter/engine/pull/24522) Roll Fuchsia Linux SDK from dkB0v_vTx... to 9MPgLtFll... (cla: yes, waiting for tree to go green)
[24523](https://github.com/flutter/engine/pull/24523) External Texture support for macOS Metal (cla: yes, waiting for tree to go green)
[24524](https://github.com/flutter/engine/pull/24524) Roll Skia from 24ec76454aa5 to c505e435d44a (9 revisions) (cla: yes, waiting for tree to go green)
[24526](https://github.com/flutter/engine/pull/24526) Fix input flow event logic (cla: yes, waiting for tree to go green)
[24527](https://github.com/flutter/engine/pull/24527) Roll Fuchsia Mac SDK from U2pgmH2x-... to 5vi8TQldn... (cla: yes, waiting for tree to go green)
[24532](https://github.com/flutter/engine/pull/24532) Roll Skia from c505e435d44a to cad4709ca475 (14 revisions) (cla: yes, waiting for tree to go green)
[24534](https://github.com/flutter/engine/pull/24534) Roll Fuchsia Linux SDK from 9MPgLtFll... to -8KkhcJ3h... (cla: yes, waiting for tree to go green)
[24535](https://github.com/flutter/engine/pull/24535) Roll Fuchsia Mac SDK from 5vi8TQldn... to YBiCU3Z3r... (cla: yes, waiting for tree to go green)
[24539](https://github.com/flutter/engine/pull/24539) Roll Fuchsia Linux SDK from -8KkhcJ3h... to c9naFjip3... (cla: yes, waiting for tree to go green)
[24541](https://github.com/flutter/engine/pull/24541) Roll Fuchsia Mac SDK from YBiCU3Z3r... to Fote78jZn... (cla: yes, waiting for tree to go green)
[24542](https://github.com/flutter/engine/pull/24542) Restore call to setFilterQuality (cla: yes, waiting for tree to go green)
[24543](https://github.com/flutter/engine/pull/24543) Delete multi set args parameter from intent (cla: yes, platform-android, waiting for tree to go green)
[24546](https://github.com/flutter/engine/pull/24546) remove useless code in lib/ui/compositing/scene_builder.cc (cla: yes, waiting for tree to go green)
[24553](https://github.com/flutter/engine/pull/24553) Roll Skia from cad4709ca475 to cc75fa8f958b (13 revisions) (cla: yes, waiting for tree to go green)
[24554](https://github.com/flutter/engine/pull/24554) Roll Dart SDK from f78bd85cda0c to 2d30896744b5 (9 revisions) (cla: yes, waiting for tree to go green)
[24559](https://github.com/flutter/engine/pull/24559) Roll Skia from cc75fa8f958b to bd9740074445 (10 revisions) (cla: yes, waiting for tree to go green)
[24562](https://github.com/flutter/engine/pull/24562) Roll Dart SDK from 2d30896744b5 to a476002dba33 (2 revisions) (cla: yes, waiting for tree to go green)
[24566](https://github.com/flutter/engine/pull/24566) Roll Fuchsia Linux SDK from c9naFjip3... to 8unxeSvw2... (cla: yes, waiting for tree to go green)
[24567](https://github.com/flutter/engine/pull/24567) Roll Skia from bd9740074445 to e82436f5c353 (4 revisions) (cla: yes, waiting for tree to go green)
[24568](https://github.com/flutter/engine/pull/24568) Roll Fuchsia Mac SDK from Fote78jZn... to 0c-7C5noH... (cla: yes, waiting for tree to go green)
[24571](https://github.com/flutter/engine/pull/24571) Roll Skia from e82436f5c353 to 98f85d0e45f1 (15 revisions) (cla: yes, waiting for tree to go green)
[24572](https://github.com/flutter/engine/pull/24572) [web] Fix placeholder-only paragraphs (cla: yes, platform-web, waiting for tree to go green)
[24577](https://github.com/flutter/engine/pull/24577) Roll Dart SDK from a476002dba33 to 60e4098d2d66 (5 revisions) (cla: yes, waiting for tree to go green)
[24579](https://github.com/flutter/engine/pull/24579) Roll Skia from 98f85d0e45f1 to 066f411b2ae6 (15 revisions) (cla: yes, waiting for tree to go green)
[24580](https://github.com/flutter/engine/pull/24580) Roll Skia from 066f411b2ae6 to d15c52d2333e (3 revisions) (cla: yes, waiting for tree to go green)
[24581](https://github.com/flutter/engine/pull/24581) [Android Input] Passthrough movement keys when there's no selection (cla: yes, platform-android, waiting for tree to go green)
[24582](https://github.com/flutter/engine/pull/24582) Expand FilterQuality API docs (cla: yes, waiting for tree to go green)
[24583](https://github.com/flutter/engine/pull/24583) Signal an error if an Isolate.spwanUri call uses an unsupported URI (cla: yes, waiting for tree to go green)
[24584](https://github.com/flutter/engine/pull/24584) Roll Skia from d15c52d2333e to 5ef07a4097d4 (1 revision) (cla: yes, waiting for tree to go green)
[24587](https://github.com/flutter/engine/pull/24587) Roll Skia from 5ef07a4097d4 to 6d2b7688f64d (3 revisions) (cla: yes, waiting for tree to go green)
[24589](https://github.com/flutter/engine/pull/24589) Roll Dart SDK from 60e4098d2d66 to bc9e69aeafa6 (2 revisions) (cla: yes, waiting for tree to go green)
[24590](https://github.com/flutter/engine/pull/24590) Roll Skia from 6d2b7688f64d to 9a7fcf7eda77 (1 revision) (cla: yes, waiting for tree to go green)
[24591](https://github.com/flutter/engine/pull/24591) Roll Fuchsia Mac SDK from 0c-7C5noH... to pxsXcA3AQ... (cla: yes, waiting for tree to go green)
[24593](https://github.com/flutter/engine/pull/24593) Roll Skia from 9a7fcf7eda77 to 6b27ae8db432 (1 revision) (cla: yes, waiting for tree to go green)
[24594](https://github.com/flutter/engine/pull/24594) Roll Skia from 6b27ae8db432 to 68c43dbc5fb1 (1 revision) (cla: yes, waiting for tree to go green)
[24595](https://github.com/flutter/engine/pull/24595) Roll Fuchsia Linux SDK from 8unxeSvw2... to Zcy9nP_sY... (cla: yes, waiting for tree to go green)
[24596](https://github.com/flutter/engine/pull/24596) Roll Skia from 68c43dbc5fb1 to 7c0200a8e233 (1 revision) (cla: yes, waiting for tree to go green)
[24597](https://github.com/flutter/engine/pull/24597) Roll Dart SDK from bc9e69aeafa6 to 86d1f3b6a97c (1 revision) (cla: yes, waiting for tree to go green)
[24598](https://github.com/flutter/engine/pull/24598) Roll Skia from 7c0200a8e233 to 70cd6d14465c (8 revisions) (cla: yes, waiting for tree to go green)
[24603](https://github.com/flutter/engine/pull/24603) Roll Skia from 70cd6d14465c to 72917e452932 (5 revisions) (cla: yes, waiting for tree to go green)
[24604](https://github.com/flutter/engine/pull/24604) Roll Fuchsia Mac SDK from pxsXcA3AQ... to mpA8VcWT4... (cla: yes, waiting for tree to go green)
[24605](https://github.com/flutter/engine/pull/24605) Roll Dart SDK from 86d1f3b6a97c to 39424b348c44 (2 revisions) (cla: yes, waiting for tree to go green)
[24607](https://github.com/flutter/engine/pull/24607) Roll Fuchsia Linux SDK from Zcy9nP_sY... to kfjppUrzf... (cla: yes, waiting for tree to go green)
[24608](https://github.com/flutter/engine/pull/24608) Roll Clang Linux from L9TEpKo-D... to crEO9FDXg... (cla: yes, waiting for tree to go green)
[24609](https://github.com/flutter/engine/pull/24609) Roll Clang Mac from QimZEUJUn... to MQQ43_LGr... (cla: yes, waiting for tree to go green)
[24611](https://github.com/flutter/engine/pull/24611) Roll Skia from 72917e452932 to 029851d9513a (16 revisions) (cla: yes, waiting for tree to go green)
[24612](https://github.com/flutter/engine/pull/24612) Allow calls to legacyMakeTypeface in the AssetFontManager (cla: yes, waiting for tree to go green)
[24613](https://github.com/flutter/engine/pull/24613) Roll Skia from 029851d9513a to 8a43a2889ef8 (3 revisions) (cla: yes, waiting for tree to go green)
[24614](https://github.com/flutter/engine/pull/24614) Roll Dart SDK from 39424b348c44 to b9c5d901eac0 (1 revision) (cla: yes, waiting for tree to go green)
[24618](https://github.com/flutter/engine/pull/24618) Roll Dart SDK from b9c5d901eac0 to fa4b1e834d24 (1 revision) (cla: yes, waiting for tree to go green)
[24620](https://github.com/flutter/engine/pull/24620) Roll Skia from 8a43a2889ef8 to 61a10b649aa7 (4 revisions) (cla: yes, waiting for tree to go green)
[24621](https://github.com/flutter/engine/pull/24621) Roll Fuchsia Mac SDK from mpA8VcWT4... to oqp6Q2nhF... (cla: yes, waiting for tree to go green)
[24622](https://github.com/flutter/engine/pull/24622) Roll Dart SDK from fa4b1e834d24 to 63c6585d8499 (2 revisions) (cla: yes, waiting for tree to go green)
[24624](https://github.com/flutter/engine/pull/24624) Roll Skia from 61a10b649aa7 to e79bb32365ea (1 revision) (cla: yes, waiting for tree to go green)
[24625](https://github.com/flutter/engine/pull/24625) Roll Dart SDK from 63c6585d8499 to 6b7054122356 (1 revision) (cla: yes, waiting for tree to go green)
[24630](https://github.com/flutter/engine/pull/24630) Roll Skia from e79bb32365ea to 4ac9aadd306b (4 revisions) (cla: yes, waiting for tree to go green)
[24631](https://github.com/flutter/engine/pull/24631) Roll Dart SDK from 6b7054122356 to a6fb0acd71ea (1 revision) (cla: yes, waiting for tree to go green)
[24633](https://github.com/flutter/engine/pull/24633) Roll Skia from 4ac9aadd306b to 38b9a4bc3e3c (7 revisions) (cla: yes, waiting for tree to go green)
[24637](https://github.com/flutter/engine/pull/24637) Roll Skia from 38b9a4bc3e3c to 9fe866174147 (8 revisions) (cla: yes, waiting for tree to go green)
[24638](https://github.com/flutter/engine/pull/24638) Roll Fuchsia Mac SDK from oqp6Q2nhF... to VyKdR4ouE... (cla: yes, waiting for tree to go green)
[24640](https://github.com/flutter/engine/pull/24640) Enables semantics when voice control is turned on (cla: yes, platform-ios, waiting for tree to go green)
[24646](https://github.com/flutter/engine/pull/24646) Roll Skia from 9fe866174147 to a42c6192ff67 (12 revisions) (cla: yes, waiting for tree to go green)
[24647](https://github.com/flutter/engine/pull/24647) Roll Dart SDK from a6fb0acd71ea to aa0fea71185b (2 revisions) (cla: yes, waiting for tree to go green)
[24648](https://github.com/flutter/engine/pull/24648) Roll Skia from a42c6192ff67 to e3a8980915b7 (1 revision) (cla: yes, waiting for tree to go green)
[24649](https://github.com/flutter/engine/pull/24649) Roll Dart SDK from aa0fea71185b to 3870a33d25fb (1 revision) (cla: yes, waiting for tree to go green)
[24650](https://github.com/flutter/engine/pull/24650) Roll Skia from e3a8980915b7 to 2d247a10f3de (1 revision) (cla: yes, waiting for tree to go green)
[24652](https://github.com/flutter/engine/pull/24652) Roll Dart SDK from 3870a33d25fb to 9ef3cef4a36c (1 revision) (cla: yes, waiting for tree to go green)
[24653](https://github.com/flutter/engine/pull/24653) Roll Fuchsia Mac SDK from VyKdR4ouE... to 7jkJkkEng... (cla: yes, waiting for tree to go green)
[24654](https://github.com/flutter/engine/pull/24654) Roll Skia from 2d247a10f3de to 34c7e114928a (1 revision) (cla: yes, waiting for tree to go green)
[24655](https://github.com/flutter/engine/pull/24655) Roll Skia from 34c7e114928a to 453f143dba3f (1 revision) (cla: yes, waiting for tree to go green)
[24656](https://github.com/flutter/engine/pull/24656) Roll Dart SDK from 9ef3cef4a36c to ac2d5fd1c35d (1 revision) (cla: yes, waiting for tree to go green)
[24658](https://github.com/flutter/engine/pull/24658) Roll Skia from 453f143dba3f to 1f57a0f1ae0b (6 revisions) (cla: yes, waiting for tree to go green)
[24659](https://github.com/flutter/engine/pull/24659) Roll Skia from 1f57a0f1ae0b to 96f6d9a37f1c (3 revisions) (cla: yes, waiting for tree to go green)
[24661](https://github.com/flutter/engine/pull/24661) Roll Skia from 96f6d9a37f1c to f20e75619cd3 (5 revisions) (cla: yes, waiting for tree to go green)
[24662](https://github.com/flutter/engine/pull/24662) SkParagraph: support multiple default font families (cla: yes, waiting for tree to go green)
[24664](https://github.com/flutter/engine/pull/24664) Roll Dart SDK from ac2d5fd1c35d to cf3ef9e5ced1 (1 revision) (cla: yes, waiting for tree to go green)
[24665](https://github.com/flutter/engine/pull/24665) Revert "TextStyle level leadingDistribution" (cla: yes, waiting for tree to go green)
[24666](https://github.com/flutter/engine/pull/24666) Roll Skia from f20e75619cd3 to 6706c9fa14c4 (2 revisions) (cla: yes, waiting for tree to go green)
[24667](https://github.com/flutter/engine/pull/24667) Roll Fuchsia Linux SDK from kfjppUrzf... to Idk0D_EZk... (cla: yes, waiting for tree to go green)
[24668](https://github.com/flutter/engine/pull/24668) Reland "TextStyle level leadingDistribution (#24025)" reverted in #24665 (cla: yes, waiting for tree to go green)
[24669](https://github.com/flutter/engine/pull/24669) Roll Skia from 6706c9fa14c4 to deed7f65ff6b (3 revisions) (cla: yes, waiting for tree to go green)
[24670](https://github.com/flutter/engine/pull/24670) Roll Skia from deed7f65ff6b to 07c8401a54d3 (5 revisions) (cla: yes, waiting for tree to go green)
[24671](https://github.com/flutter/engine/pull/24671) Roll Dart SDK from cf3ef9e5ced1 to 632ae0dee554 (1 revision) (cla: yes, waiting for tree to go green)
[24674](https://github.com/flutter/engine/pull/24674) Roll Fuchsia Mac SDK from 7jkJkkEng... to kLoBz4ZY4... (cla: yes, waiting for tree to go green)
[24675](https://github.com/flutter/engine/pull/24675) Declare a constant for the bit index of the force_strut_height flag value (cla: yes, waiting for tree to go green)
[24676](https://github.com/flutter/engine/pull/24676) Roll Dart SDK from 632ae0dee554 to d3320177ee9a (1 revision) (cla: yes, waiting for tree to go green)
[24680](https://github.com/flutter/engine/pull/24680) Roll Fuchsia Linux SDK from Idk0D_EZk... to oOI7Iq5ER... (cla: yes, waiting for tree to go green)
[24681](https://github.com/flutter/engine/pull/24681) Roll Fuchsia Mac SDK from kLoBz4ZY4... to eWFcsfSTf... (cla: yes, waiting for tree to go green)
[24682](https://github.com/flutter/engine/pull/24682) Do not use eglQuerySurface to query surface dimensions (cla: yes, waiting for tree to go green)
[24683](https://github.com/flutter/engine/pull/24683) Roll Skia from 07c8401a54d3 to 4a4fbe8140cb (1 revision) (cla: yes, waiting for tree to go green)
[24684](https://github.com/flutter/engine/pull/24684) Roll Skia from 4a4fbe8140cb to 202420e0147b (1 revision) (cla: yes, waiting for tree to go green)
[24685](https://github.com/flutter/engine/pull/24685) Roll Fuchsia Linux SDK from oOI7Iq5ER... to oJPqi5jbV... (cla: yes, waiting for tree to go green)
[24687](https://github.com/flutter/engine/pull/24687) Roll Fuchsia Mac SDK from eWFcsfSTf... to SrGef2eEA... (cla: yes, waiting for tree to go green)
[24689](https://github.com/flutter/engine/pull/24689) Roll Skia from 202420e0147b to 59b389a407de (1 revision) (cla: yes, waiting for tree to go green)
[24690](https://github.com/flutter/engine/pull/24690) Fix memory leak and bug in the RunsOnCreationTaskRunner check (cla: yes, platform-android, waiting for tree to go green)
[24691](https://github.com/flutter/engine/pull/24691) Roll Fuchsia Linux SDK from oJPqi5jbV... to RTXXU6CwW... (cla: yes, waiting for tree to go green)
[24692](https://github.com/flutter/engine/pull/24692) Roll Fuchsia Mac SDK from SrGef2eEA... to y4fkeuwAq... (cla: yes, waiting for tree to go green)
[24693](https://github.com/flutter/engine/pull/24693) Roll Skia from 59b389a407de to 56a1f06db241 (1 revision) (cla: yes, waiting for tree to go green)
[24696](https://github.com/flutter/engine/pull/24696) Roll Dart SDK from aa0fea71185b to 60b27ec0710a (8 revisions) (cla: yes, waiting for tree to go green)
[24700](https://github.com/flutter/engine/pull/24700) Roll Fuchsia Linux SDK from RTXXU6CwW... to 1jbCxKA9Y... (cla: yes, waiting for tree to go green)
[24701](https://github.com/flutter/engine/pull/24701) Roll Fuchsia Mac SDK from y4fkeuwAq... to 1QbiQ5i3i... (cla: yes, waiting for tree to go green)
[24702](https://github.com/flutter/engine/pull/24702) Roll Skia from 56a1f06db241 to 1f33ec568b3f (4 revisions) (cla: yes, waiting for tree to go green)
[24703](https://github.com/flutter/engine/pull/24703) Roll Skia from 1f33ec568b3f to 5fa369787b21 (1 revision) (cla: yes, waiting for tree to go green)
[24704](https://github.com/flutter/engine/pull/24704) Roll Skia from 5fa369787b21 to 104e20f5b2b3 (1 revision) (cla: yes, waiting for tree to go green)
[24706](https://github.com/flutter/engine/pull/24706) Roll Skia from 104e20f5b2b3 to 0b750f2ef534 (1 revision) (cla: yes, waiting for tree to go green)
[24707](https://github.com/flutter/engine/pull/24707) Roll Dart SDK from 60b27ec0710a to f7b05f6e0636 (1 revision) (cla: yes, waiting for tree to go green)
[24708](https://github.com/flutter/engine/pull/24708) Roll Skia from 0b750f2ef534 to 9b510a31561f (4 revisions) (cla: yes, waiting for tree to go green)
[24709](https://github.com/flutter/engine/pull/24709) Roll Fuchsia Linux SDK from 1jbCxKA9Y... to 50gZrG82q... (cla: yes, waiting for tree to go green)
[24710](https://github.com/flutter/engine/pull/24710) Roll Skia from 9b510a31561f to 135500d33dc7 (2 revisions) (cla: yes, waiting for tree to go green)
[24711](https://github.com/flutter/engine/pull/24711) Roll Fuchsia Mac SDK from 1QbiQ5i3i... to ticLKPQn6... (cla: yes, waiting for tree to go green)
[24714](https://github.com/flutter/engine/pull/24714) Roll Skia from 135500d33dc7 to 9ca065e2fdb5 (6 revisions) (cla: yes, waiting for tree to go green)
[24715](https://github.com/flutter/engine/pull/24715) Roll Dart SDK from f7b05f6e0636 to b3bc5acdeef2 (1 revision) (cla: yes, waiting for tree to go green)
[24720](https://github.com/flutter/engine/pull/24720) Roll Skia from 9ca065e2fdb5 to 67808983c677 (6 revisions) (cla: yes, waiting for tree to go green)
[24722](https://github.com/flutter/engine/pull/24722) Roll Dart SDK from b3bc5acdeef2 to f209e60a5415 (2 revisions) (cla: yes, waiting for tree to go green)
[24723](https://github.com/flutter/engine/pull/24723) Roll Skia from 67808983c677 to d29e500ece41 (1 revision) (cla: yes, waiting for tree to go green)
[24724](https://github.com/flutter/engine/pull/24724) Roll Skia from d29e500ece41 to e32ace76ec8d (1 revision) (cla: yes, waiting for tree to go green)
[24725](https://github.com/flutter/engine/pull/24725) Roll Fuchsia Mac SDK from ticLKPQn6... to PRe0w0i4z... (cla: yes, waiting for tree to go green)
[24726](https://github.com/flutter/engine/pull/24726) Roll Fuchsia Linux SDK from 50gZrG82q... to tJbtmEE4Q... (cla: yes, waiting for tree to go green)
[24727](https://github.com/flutter/engine/pull/24727) Guard metal rendering behind SHELL_ENABLE_METAL (cla: yes, waiting for tree to go green)
[24728](https://github.com/flutter/engine/pull/24728) Roll Skia from e32ace76ec8d to 0676317b1f7f (1 revision) (cla: yes, waiting for tree to go green)
[24729](https://github.com/flutter/engine/pull/24729) Roll Skia from 0676317b1f7f to 232b4ce8886b (1 revision) (cla: yes, waiting for tree to go green)
[24730](https://github.com/flutter/engine/pull/24730) Roll Dart SDK from f209e60a5415 to 761ed531161f (1 revision) (cla: yes, waiting for tree to go green)
[24731](https://github.com/flutter/engine/pull/24731) Roll Skia from 232b4ce8886b to d863ae52d4bb (4 revisions) (cla: yes, waiting for tree to go green)
[24732](https://github.com/flutter/engine/pull/24732) Roll Skia from d863ae52d4bb to 036ba86489d7 (3 revisions) (cla: yes, waiting for tree to go green)
[24733](https://github.com/flutter/engine/pull/24733) Roll Skia from 036ba86489d7 to 786d42c6dac4 (1 revision) (cla: yes, waiting for tree to go green)
[24734](https://github.com/flutter/engine/pull/24734) Adds set text action for voice access (cla: yes, platform-android, waiting for tree to go green)
[24738](https://github.com/flutter/engine/pull/24738) Roll Skia from 786d42c6dac4 to 12e760e958a7 (10 revisions) (cla: yes, waiting for tree to go green)
[24739](https://github.com/flutter/engine/pull/24739) Roll Fuchsia Linux SDK from tJbtmEE4Q... to YhRvbuj9c... (cla: yes, waiting for tree to go green)
[24740](https://github.com/flutter/engine/pull/24740) Roll Skia from 12e760e958a7 to e80e169ba4c1 (1 revision) (cla: yes, waiting for tree to go green)
[24745](https://github.com/flutter/engine/pull/24745) Roll Fuchsia Mac SDK from PRe0w0i4z... to 4TE5n81B-... (cla: yes, waiting for tree to go green)
[24746](https://github.com/flutter/engine/pull/24746) Roll Dart SDK from 761ed531161f to f527ddd39bb1 (3 revisions) (cla: yes, waiting for tree to go green)
[24749](https://github.com/flutter/engine/pull/24749) Roll Dart SDK from f527ddd39bb1 to 041a6dd2e76b (1 revision) (cla: yes, waiting for tree to go green)
[24750](https://github.com/flutter/engine/pull/24750) Roll Fuchsia Linux SDK from YhRvbuj9c... to _0kewDFPJ... (cla: yes, waiting for tree to go green)
[24752](https://github.com/flutter/engine/pull/24752) Roll Skia from e80e169ba4c1 to acf26501fb5a (4 revisions) (cla: yes, waiting for tree to go green)
[24753](https://github.com/flutter/engine/pull/24753) Roll Skia from acf26501fb5a to a1e30a3a280a (5 revisions) (cla: yes, waiting for tree to go green)
[24759](https://github.com/flutter/engine/pull/24759) Roll Fuchsia Mac SDK from 4TE5n81B-... to kPp_BF0q3... (cla: yes, waiting for tree to go green)
[24760](https://github.com/flutter/engine/pull/24760) Roll Skia from a1e30a3a280a to f0de96f7b82a (7 revisions) (cla: yes, waiting for tree to go green)
[24762](https://github.com/flutter/engine/pull/24762) Roll Skia from f0de96f7b82a to 46d9bb255df4 (2 revisions) (cla: yes, waiting for tree to go green)
[24764](https://github.com/flutter/engine/pull/24764) Roll Dart SDK from 041a6dd2e76b to b9302efc8d9a (3 revisions) (cla: yes, waiting for tree to go green)
[24768](https://github.com/flutter/engine/pull/24768) fixes reference retaining issue in flutter text input plugin (cla: yes, platform-ios, waiting for tree to go green)
[24769](https://github.com/flutter/engine/pull/24769) Roll Skia from 46d9bb255df4 to e4ef35caa1bc (9 revisions) (cla: yes, waiting for tree to go green)
[24771](https://github.com/flutter/engine/pull/24771) Roll Fuchsia Linux SDK from _0kewDFPJ... to _vRi_XkB7... (cla: yes, waiting for tree to go green)
[24772](https://github.com/flutter/engine/pull/24772) Roll Skia from e4ef35caa1bc to 4db57264955f (1 revision) (cla: yes, waiting for tree to go green)
[24774](https://github.com/flutter/engine/pull/24774) Roll Skia from 4db57264955f to 21c8ad62cd82 (2 revisions) (cla: yes, waiting for tree to go green)
[24775](https://github.com/flutter/engine/pull/24775) Roll Fuchsia Mac SDK from kPp_BF0q3... to ohpC1XzxY... (cla: yes, waiting for tree to go green)
[24778](https://github.com/flutter/engine/pull/24778) Roll Dart SDK from b9302efc8d9a to 96183eef80b7 (1 revision) (cla: yes, waiting for tree to go green)
[24779](https://github.com/flutter/engine/pull/24779) Roll Skia from 21c8ad62cd82 to 55aaefe687c7 (2 revisions) (cla: yes, waiting for tree to go green)
[24782](https://github.com/flutter/engine/pull/24782) Roll Fuchsia Linux SDK from _vRi_XkB7... to zPlM6iYY3... (cla: yes, waiting for tree to go green)
[24784](https://github.com/flutter/engine/pull/24784) Roll Dart SDK from 96183eef80b7 to 8d3ed9fda5f1 (1 revision) (cla: yes, waiting for tree to go green)
[24791](https://github.com/flutter/engine/pull/24791) Roll Fuchsia Mac SDK from ohpC1XzxY... to Ks1dVR_ST... (cla: yes, waiting for tree to go green)
[24792](https://github.com/flutter/engine/pull/24792) Roll Dart SDK from 8d3ed9fda5f1 to 1b674d73af53 (1 revision) (cla: yes, waiting for tree to go green)
[24794](https://github.com/flutter/engine/pull/24794) Roll Clang Mac from MQQ43_LGr... to MRLGJYv8V... (cla: yes, waiting for tree to go green)
[24795](https://github.com/flutter/engine/pull/24795) Roll Clang Linux from crEO9FDXg... to SrCqaGdSF... (cla: yes, waiting for tree to go green)
[24797](https://github.com/flutter/engine/pull/24797) Avoid the deprecated SkFilterQuality in the Engine APIs (cla: yes, waiting for tree to go green)
[24798](https://github.com/flutter/engine/pull/24798) [web] Fix url updates when using Router (cla: yes, platform-web, waiting for tree to go green)
[24799](https://github.com/flutter/engine/pull/24799) Roll Skia from 55aaefe687c7 to 6ba242d2a201 (18 revisions) (cla: yes, waiting for tree to go green)
[24802](https://github.com/flutter/engine/pull/24802) Initialize max_ascent/descent from the strut only if the strut is valid (cla: yes, waiting for tree to go green)
[24803](https://github.com/flutter/engine/pull/24803) Roll Dart SDK from 1b674d73af53 to 835da00aa6b5 (1 revision) (cla: yes, waiting for tree to go green)
[24804](https://github.com/flutter/engine/pull/24804) Roll Skia from 6ba242d2a201 to 3b58d38966f4 (1 revision) (cla: yes, waiting for tree to go green)
[24805](https://github.com/flutter/engine/pull/24805) Roll Skia from 3b58d38966f4 to d42fe062d0a7 (2 revisions) (cla: yes, waiting for tree to go green)
[24806](https://github.com/flutter/engine/pull/24806) Roll Skia from d42fe062d0a7 to 994a571fc79a (1 revision) (cla: yes, waiting for tree to go green)
[24808](https://github.com/flutter/engine/pull/24808) Roll Dart SDK from 835da00aa6b5 to b321d01eec78 (1 revision) (cla: yes, waiting for tree to go green)
[24811](https://github.com/flutter/engine/pull/24811) Roll Dart SDK from b321d01eec78 to 4693d6d4f88e (1 revision) (cla: yes, waiting for tree to go green)
[24812](https://github.com/flutter/engine/pull/24812) Roll Skia from 994a571fc79a to 532138cea7ea (4 revisions) (cla: yes, waiting for tree to go green)
[24813](https://github.com/flutter/engine/pull/24813) Roll Skia from 532138cea7ea to bf2dd2af4947 (3 revisions) (cla: yes, waiting for tree to go green)
[24815](https://github.com/flutter/engine/pull/24815) Roll Skia from bf2dd2af4947 to 319565ac6e65 (2 revisions) (cla: yes, waiting for tree to go green)
[24818](https://github.com/flutter/engine/pull/24818) Update paths related to CIPD package creation (cla: yes, platform-android, waiting for tree to go green)
[24824](https://github.com/flutter/engine/pull/24824) Roll Skia from 319565ac6e65 to d63638bb7be7 (2 revisions) (cla: yes, waiting for tree to go green)
[24825](https://github.com/flutter/engine/pull/24825) Roll Skia from d63638bb7be7 to 3dc6c190dabb (2 revisions) (cla: yes, waiting for tree to go green)
[24828](https://github.com/flutter/engine/pull/24828) [web] Don't set both color and foreground at the same time (cla: yes, platform-web, waiting for tree to go green)
[24829](https://github.com/flutter/engine/pull/24829) vulkan: Fix build issue due to missing VK_RESULT_RANGE_SIZE (cla: yes, waiting for tree to go green)
[24830](https://github.com/flutter/engine/pull/24830) Roll Skia from 3dc6c190dabb to 9ef3f2e3da9f (9 revisions) (cla: yes, waiting for tree to go green)
[24831](https://github.com/flutter/engine/pull/24831) fix voice control delete line command does not delete line correctly (cla: yes, platform-ios, waiting for tree to go green)
[24832](https://github.com/flutter/engine/pull/24832) Roll Fuchsia Mac SDK from Ks1dVR_ST... to PPdB-GHCt... (cla: yes, waiting for tree to go green)
[24834](https://github.com/flutter/engine/pull/24834) Roll Fuchsia Linux SDK from zPlM6iYY3... to Suchs2RGt... (cla: yes, waiting for tree to go green)
[24835](https://github.com/flutter/engine/pull/24835) Roll Skia from 9ef3f2e3da9f to 8f440b4e1e22 (2 revisions) (cla: yes, waiting for tree to go green)
[24836](https://github.com/flutter/engine/pull/24836) Roll Dart SDK from 4693d6d4f88e to b77641194368 (3 revisions) (cla: yes, waiting for tree to go green)
[24839](https://github.com/flutter/engine/pull/24839) Roll Dart SDK from b77641194368 to fee865ec6404 (1 revision) (cla: yes, waiting for tree to go green)
[24841](https://github.com/flutter/engine/pull/24841) Roll Fuchsia Mac SDK from PPdB-GHCt... to Xkten1Nxc... (cla: yes, waiting for tree to go green)
[24842](https://github.com/flutter/engine/pull/24842) Roll Fuchsia Linux SDK from Suchs2RGt... to 4_MXZyYYE... (cla: yes, waiting for tree to go green)
[24843](https://github.com/flutter/engine/pull/24843) Roll Skia from 8f440b4e1e22 to 00d6cf436884 (1 revision) (cla: yes, waiting for tree to go green)
[24844](https://github.com/flutter/engine/pull/24844) Roll Dart SDK from fee865ec6404 to 9bc9e48fe908 (2 revisions) (cla: yes, waiting for tree to go green)
[24847](https://github.com/flutter/engine/pull/24847) Roll Dart SDK from 9bc9e48fe908 to b191fb71063c (1 revision) (cla: yes, waiting for tree to go green)
[24849](https://github.com/flutter/engine/pull/24849) Roll Fuchsia Mac SDK from Xkten1Nxc... to Ler-DhxPF... (cla: yes, waiting for tree to go green)
[24850](https://github.com/flutter/engine/pull/24850) Roll Fuchsia Linux SDK from 4_MXZyYYE... to -kU3jhhRL... (cla: yes, waiting for tree to go green)
[24851](https://github.com/flutter/engine/pull/24851) Roll Skia from 00d6cf436884 to 1314913ff569 (1 revision) (cla: yes, waiting for tree to go green)
[24852](https://github.com/flutter/engine/pull/24852) Roll Skia from 1314913ff569 to 5f2932e0e391 (1 revision) (cla: yes, waiting for tree to go green)
[24853](https://github.com/flutter/engine/pull/24853) Roll Fuchsia Mac SDK from Ler-DhxPF... to Rw36pWO5J... (cla: yes, waiting for tree to go green)
[24855](https://github.com/flutter/engine/pull/24855) Roll Fuchsia Linux SDK from -kU3jhhRL... to hnDJ6SZhJ... (cla: yes, waiting for tree to go green)
[24856](https://github.com/flutter/engine/pull/24856) Roll Skia from 5f2932e0e391 to 07ee548d5bcd (1 revision) (cla: yes, waiting for tree to go green)
[24860](https://github.com/flutter/engine/pull/24860) Roll Dart SDK from b191fb71063c to 64a5583ffbc9 (2 revisions) (cla: yes, waiting for tree to go green)
[24862](https://github.com/flutter/engine/pull/24862) Roll Fuchsia Mac SDK from Rw36pWO5J... to C8RDwF3IB... (cla: yes, waiting for tree to go green)
[24863](https://github.com/flutter/engine/pull/24863) Roll Fuchsia Linux SDK from hnDJ6SZhJ... to yDVPrfGq5... (cla: yes, waiting for tree to go green)
[24865](https://github.com/flutter/engine/pull/24865) Send -1 for empty composition range (cla: yes, waiting for tree to go green)
[24873](https://github.com/flutter/engine/pull/24873) Adds setText to web engine (cla: yes, waiting for tree to go green)
[24874](https://github.com/flutter/engine/pull/24874) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check" (cla: yes, platform-android, waiting for tree to go green)
[24880](https://github.com/flutter/engine/pull/24880) Respond to Skia.setResourceCacheMaxBytes (cla: yes, waiting for tree to go green)
[24889](https://github.com/flutter/engine/pull/24889) Roll Fuchsia Mac SDK from C8RDwF3IB... to XxqTWS7q1... (cla: yes, waiting for tree to go green)
[24893](https://github.com/flutter/engine/pull/24893) [iOS] Fixes platform view clipped when FlutterView has non-zero offset (cla: yes, platform-ios, waiting for tree to go green)
[24905](https://github.com/flutter/engine/pull/24905) [web] Reland: Fix painting of last placeholder in paragraph (cla: yes, platform-web, waiting for tree to go green)
[24906](https://github.com/flutter/engine/pull/24906) Rename `moduleName` to `componentName` for consistency (cla: yes, platform-android, waiting for tree to go green)
[24907](https://github.com/flutter/engine/pull/24907) Roll Dart SDK from 64a5583ffbc9 to 8f22201e4050 (6 revisions) (cla: yes, waiting for tree to go green)
[24911](https://github.com/flutter/engine/pull/24911) Roll Fuchsia Mac SDK from XxqTWS7q1... to gYXU9l8jr... (cla: yes, waiting for tree to go green)
[24912](https://github.com/flutter/engine/pull/24912) Roll Fuchsia Linux SDK from yDVPrfGq5... to XaUP9-wm3... (cla: yes, waiting for tree to go green)
[24914](https://github.com/flutter/engine/pull/24914) Roll Skia from 07ee548d5bcd to da076e9aca26 (41 revisions) (cla: yes, waiting for tree to go green)
[24920](https://github.com/flutter/engine/pull/24920) Roll Dart SDK from 8f22201e4050 to abcf1f3fd91b (2 revisions) (cla: yes, waiting for tree to go green)
[24925](https://github.com/flutter/engine/pull/24925) Roll Clang Linux from SrCqaGdSF... to TEHg3vhDG... (cla: yes, waiting for tree to go green)
[24926](https://github.com/flutter/engine/pull/24926) Roll Clang Mac from MRLGJYv8V... to GUX2BsVIc... (cla: yes, waiting for tree to go green)
[24927](https://github.com/flutter/engine/pull/24927) Roll Skia from da076e9aca26 to 93330c9c4dc7 (13 revisions) (cla: yes, waiting for tree to go green)
[24930](https://github.com/flutter/engine/pull/24930) Roll Fuchsia Mac SDK from gYXU9l8jr... to CxbV_a22u... (cla: yes, waiting for tree to go green)
[24931](https://github.com/flutter/engine/pull/24931) Roll Dart SDK from abcf1f3fd91b to f596cf76c722 (1 revision) (cla: yes, waiting for tree to go green)
[24933](https://github.com/flutter/engine/pull/24933) fix selectable text selections are not announced in voice over (cla: yes, waiting for tree to go green)
[24934](https://github.com/flutter/engine/pull/24934) [web] Add few awaits in history tests (affects: tests, cla: yes, platform-web, waiting for tree to go green)
[24936](https://github.com/flutter/engine/pull/24936) Roll Skia from 93330c9c4dc7 to cc185c5a31f3 (5 revisions) (cla: yes, waiting for tree to go green)
[24937](https://github.com/flutter/engine/pull/24937) Roll Dart SDK from f596cf76c722 to 22d0f712b0a6 (1 revision) (cla: yes, waiting for tree to go green)
[24941](https://github.com/flutter/engine/pull/24941) Roll Skia from cc185c5a31f3 to 43bde9d2bc82 (5 revisions) (cla: yes, waiting for tree to go green)
[24942](https://github.com/flutter/engine/pull/24942) Roll Dart SDK from 22d0f712b0a6 to 526b85706ed7 (1 revision) (cla: yes, waiting for tree to go green)
[24943](https://github.com/flutter/engine/pull/24943) Roll Fuchsia Linux SDK from XaUP9-wm3... to Q1DG3XKnA... (cla: yes, waiting for tree to go green)
[24946](https://github.com/flutter/engine/pull/24946) Roll Fuchsia Mac SDK from CxbV_a22u... to xpyKHzaGr... (cla: yes, waiting for tree to go green)
[24951](https://github.com/flutter/engine/pull/24951) Do not return a Minikin font collection if the SkFontStyleSet is unable to create any typefaces (cla: yes, waiting for tree to go green)
[24959](https://github.com/flutter/engine/pull/24959) Roll Dart SDK from 526b85706ed7 to 616f110ef95a (4 revisions) (cla: yes, waiting for tree to go green)
[24962](https://github.com/flutter/engine/pull/24962) Roll Skia from 43bde9d2bc82 to 91113acfd1d6 (27 revisions) (cla: yes, waiting for tree to go green)
[24965](https://github.com/flutter/engine/pull/24965) Roll Fuchsia Mac SDK from xpyKHzaGr... to inepr5WS8... (cla: yes, waiting for tree to go green)
[24967](https://github.com/flutter/engine/pull/24967) Roll Dart SDK from 616f110ef95a to c7c4495b38ea (1 revision) (cla: yes, waiting for tree to go green)
[24971](https://github.com/flutter/engine/pull/24971) Roll Fuchsia Linux SDK from Q1DG3XKnA... to GsRYVri0-... (cla: yes, waiting for tree to go green)
[24972](https://github.com/flutter/engine/pull/24972) Roll Skia from 91113acfd1d6 to 82fe4d2243a3 (3 revisions) (cla: yes, waiting for tree to go green)
[24975](https://github.com/flutter/engine/pull/24975) Roll Skia from 82fe4d2243a3 to 2f4652f3096b (11 revisions) (cla: yes, waiting for tree to go green)
[24977](https://github.com/flutter/engine/pull/24977) Roll Skia from 2f4652f3096b to 7854da39b3c1 (1 revision) (cla: yes, waiting for tree to go green)
[24979](https://github.com/flutter/engine/pull/24979) Roll Dart SDK from c7c4495b38ea to 3f811750bf8a (2 revisions) (cla: yes, waiting for tree to go green)
[24982](https://github.com/flutter/engine/pull/24982) Roll Fuchsia Mac SDK from inepr5WS8... to xOxFrRRO6... (cla: yes, waiting for tree to go green)
[24983](https://github.com/flutter/engine/pull/24983) [deferred components] Handle base module loading units (cla: yes, platform-android, waiting for tree to go green)
[24988](https://github.com/flutter/engine/pull/24988) Roll Dart SDK from 3f811750bf8a to ce9e3535ae16 (1 revision) (cla: yes, waiting for tree to go green)
[24990](https://github.com/flutter/engine/pull/24990) Roll Fuchsia Linux SDK from GsRYVri0-... to aRqEDMjwC... (cla: yes, waiting for tree to go green)
[24992](https://github.com/flutter/engine/pull/24992) Roll Dart SDK from ce9e3535ae16 to b7e02a713eab (2 revisions) (cla: yes, waiting for tree to go green)
[24993](https://github.com/flutter/engine/pull/24993) Roll Skia from 7854da39b3c1 to 4fb13e026b6b (20 revisions) (cla: yes, waiting for tree to go green)
[24997](https://github.com/flutter/engine/pull/24997) Roll Fuchsia Mac SDK from xOxFrRRO6... to pmsuWkRQA... (cla: yes, waiting for tree to go green)
[24999](https://github.com/flutter/engine/pull/24999) Implement AXPlatformNodeBase::GetInstanceCountForTesting (cla: yes, waiting for tree to go green)
[25001](https://github.com/flutter/engine/pull/25001) Roll Skia from 4fb13e026b6b to 1aa25c3217b6 (25 revisions) (cla: yes, waiting for tree to go green)
[25004](https://github.com/flutter/engine/pull/25004) Call `requestDartDeferredLibrary` on platform thread (cla: yes, waiting for tree to go green)
[25005](https://github.com/flutter/engine/pull/25005) Roll Skia from 1aa25c3217b6 to ead52dc068d5 (1 revision) (cla: yes, waiting for tree to go green)
[25011](https://github.com/flutter/engine/pull/25011) Roll Skia from ead52dc068d5 to 242ae6c45e57 (4 revisions) (cla: yes, waiting for tree to go green)
[25013](https://github.com/flutter/engine/pull/25013) Roll Fuchsia Linux SDK from aRqEDMjwC... to PGa0Yn-JK... (cla: yes, waiting for tree to go green)
[25015](https://github.com/flutter/engine/pull/25015) Roll Skia from 242ae6c45e57 to 13646a8900c3 (1 revision) (cla: yes, waiting for tree to go green)
[25017](https://github.com/flutter/engine/pull/25017) Roll Fuchsia Mac SDK from pmsuWkRQA... to h6TPz98hI... (cla: yes, waiting for tree to go green)
[25027](https://github.com/flutter/engine/pull/25027) Revert "Reland "Remove pipeline in favor of layer tree holder" (#24947)" (cla: yes, waiting for tree to go green)
[25030](https://github.com/flutter/engine/pull/25030) Roll Fuchsia Linux SDK from PGa0Yn-JK... to wCRD8AhIi... (cla: yes, waiting for tree to go green)
[25031](https://github.com/flutter/engine/pull/25031) Roll Fuchsia Mac SDK from h6TPz98hI... to hta7phjBV... (cla: yes, waiting for tree to go green)
[25032](https://github.com/flutter/engine/pull/25032) Roll Dart SDK from 91d7c69ed7ea to 366b33929a85 (1 revision) (cla: yes, waiting for tree to go green)
[25033](https://github.com/flutter/engine/pull/25033) Roll Skia from 13646a8900c3 to fa8133347cbb (16 revisions) (cla: yes, waiting for tree to go green)
[25034](https://github.com/flutter/engine/pull/25034) Roll Skia from fa8133347cbb to 4e94fd11cded (1 revision) (cla: yes, waiting for tree to go green)
[25035](https://github.com/flutter/engine/pull/25035) Roll Dart SDK from 366b33929a85 to 21060985e0b6 (1 revision) (cla: yes, waiting for tree to go green)
[25036](https://github.com/flutter/engine/pull/25036) Sanitize textInRange inputs to prevent invalid argument exceptions (cla: yes, platform-ios, waiting for tree to go green)
[25037](https://github.com/flutter/engine/pull/25037) Roll Dart SDK from 21060985e0b6 to 959f46974552 (1 revision) (cla: yes, waiting for tree to go green)
[25039](https://github.com/flutter/engine/pull/25039) Roll Skia from 4e94fd11cded to 0d1cf35dae29 (1 revision) (cla: yes, waiting for tree to go green)
[25040](https://github.com/flutter/engine/pull/25040) Roll Fuchsia Linux SDK from wCRD8AhIi... to ObWWD9sx4... (cla: yes, waiting for tree to go green)
[25041](https://github.com/flutter/engine/pull/25041) Roll Skia from 0d1cf35dae29 to 2558c468cc71 (1 revision) (cla: yes, waiting for tree to go green)
[25044](https://github.com/flutter/engine/pull/25044) Roll Dart SDK from 959f46974552 to 004a35fab02e (1 revision) (cla: yes, waiting for tree to go green)
[25045](https://github.com/flutter/engine/pull/25045) Roll Skia from 2558c468cc71 to b73f737aae8d (8 revisions) (cla: yes, waiting for tree to go green)
[25046](https://github.com/flutter/engine/pull/25046) Roll Fuchsia Mac SDK from hta7phjBV... to zBUVLK4bC... (cla: yes, waiting for tree to go green)
[25047](https://github.com/flutter/engine/pull/25047) Roll Skia from b73f737aae8d to 579728eb1941 (3 revisions) (cla: yes, waiting for tree to go green)
[25049](https://github.com/flutter/engine/pull/25049) Roll Skia from 579728eb1941 to 8937cd43d339 (4 revisions) (cla: yes, waiting for tree to go green)
[25052](https://github.com/flutter/engine/pull/25052) Roll Dart SDK from 004a35fab02e to 8affa8a9de76 (1 revision) (cla: yes, waiting for tree to go green)
[25056](https://github.com/flutter/engine/pull/25056) Roll Skia from 8937cd43d339 to 22dd57b82ceb (4 revisions) (cla: yes, waiting for tree to go green)
[25058](https://github.com/flutter/engine/pull/25058) Complete Picture.toImage futures with an exception if the image is null (cla: yes, waiting for tree to go green)
[25059](https://github.com/flutter/engine/pull/25059) Roll Skia from 22dd57b82ceb to 1c22e62b710f (1 revision) (cla: yes, waiting for tree to go green)
[25063](https://github.com/flutter/engine/pull/25063) Roll Skia from 1c22e62b710f to fd708655ae4a (1 revision) (cla: yes, waiting for tree to go green)
[25065](https://github.com/flutter/engine/pull/25065) Roll Skia from fd708655ae4a to a3c0f41371d4 (4 revisions) (cla: yes, waiting for tree to go green)
[25066](https://github.com/flutter/engine/pull/25066) Roll Fuchsia Mac SDK from zBUVLK4bC... to im_i_FA0L... (cla: yes, waiting for tree to go green)
[25067](https://github.com/flutter/engine/pull/25067) Roll Skia from a3c0f41371d4 to 8151337c41fb (1 revision) (cla: yes, waiting for tree to go green)
[25069](https://github.com/flutter/engine/pull/25069) Roll Dart SDK from 8affa8a9de76 to 8c7f8aaa9c79 (1 revision) (cla: yes, waiting for tree to go green)
[25071](https://github.com/flutter/engine/pull/25071) Roll Skia from 8151337c41fb to 7a20b5c9dee7 (1 revision) (cla: yes, waiting for tree to go green)
[25072](https://github.com/flutter/engine/pull/25072) Roll Fuchsia Linux SDK from ObWWD9sx4... to isLe3MZ_H... (cla: yes, waiting for tree to go green)
[25073](https://github.com/flutter/engine/pull/25073) Roll Skia from 7a20b5c9dee7 to 4dff68a1662a (5 revisions) (cla: yes, waiting for tree to go green)
[25076](https://github.com/flutter/engine/pull/25076) Roll Skia from 4dff68a1662a to adbaeaa3652c (2 revisions) (cla: yes, waiting for tree to go green)
[25078](https://github.com/flutter/engine/pull/25078) Convert format and lint scripts to null safety. (cla: yes, waiting for tree to go green)
[25079](https://github.com/flutter/engine/pull/25079) Roll Skia from adbaeaa3652c to 333b938c958b (5 revisions) (cla: yes, waiting for tree to go green)
[25084](https://github.com/flutter/engine/pull/25084) Roll Dart SDK from 8c7f8aaa9c79 to 4832aa2f161a (1 revision) (cla: yes, waiting for tree to go green)
[25101](https://github.com/flutter/engine/pull/25101) Roll Skia from 333b938c958b to 31798c279664 (10 revisions) (cla: yes, waiting for tree to go green)
[25115](https://github.com/flutter/engine/pull/25115) Fixes iOS accessibility can focus wrong content due to rapid animations (cla: yes, platform-ios, waiting for tree to go green)
[25128](https://github.com/flutter/engine/pull/25128) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25129](https://github.com/flutter/engine/pull/25129) Sync analyzer_options.yaml (cla: yes, waiting for tree to go green)
[25131](https://github.com/flutter/engine/pull/25131) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25140](https://github.com/flutter/engine/pull/25140) Roll Skia from 31798c279664 to 4b76265c6660 (21 revisions) (cla: yes, waiting for tree to go green)
[25145](https://github.com/flutter/engine/pull/25145) Roll Skia from 4b76265c6660 to 12a75588e7bc (3 revisions) (cla: yes, waiting for tree to go green)
[25148](https://github.com/flutter/engine/pull/25148) Roll Fuchsia Mac SDK from im_i_FA0L... to n2TrYwVe9... (cla: yes, waiting for tree to go green)
[25149](https://github.com/flutter/engine/pull/25149) Roll Fuchsia Linux SDK from isLe3MZ_H... to 4JTh8dWnT... (cla: yes, waiting for tree to go green)
[25151](https://github.com/flutter/engine/pull/25151) Roll Skia from 12a75588e7bc to 3469c0aec843 (1 revision) (cla: yes, waiting for tree to go green)
[25159](https://github.com/flutter/engine/pull/25159) Roll Fuchsia Mac SDK from n2TrYwVe9... to KLoErmoN0... (cla: yes, waiting for tree to go green)
[25160](https://github.com/flutter/engine/pull/25160) Roll Fuchsia Linux SDK from 4JTh8dWnT... to O1wNtYV6b... (cla: yes, waiting for tree to go green)
[25180](https://github.com/flutter/engine/pull/25180) [Android Text Input] restart when framework changes composing region (cla: yes, platform-android, waiting for tree to go green)
[25192](https://github.com/flutter/engine/pull/25192) Roll Dart SDK from 4832aa2f161a to f8c25b8e965d (12 revisions) (cla: yes, waiting for tree to go green)
[25195](https://github.com/flutter/engine/pull/25195) Roll Skia from 3469c0aec843 to e31b526f03ea (50 revisions) (cla: yes, waiting for tree to go green)
[25197](https://github.com/flutter/engine/pull/25197) Roll Skia from e31b526f03ea to bb0ed8e48790 (4 revisions) (cla: yes, waiting for tree to go green)
[25201](https://github.com/flutter/engine/pull/25201) Roll Fuchsia Mac SDK from KLoErmoN0... to 852xQjt_Y... (cla: yes, waiting for tree to go green)
[25202](https://github.com/flutter/engine/pull/25202) Roll Fuchsia Linux SDK from O1wNtYV6b... to JgKFR3es2... (cla: yes, waiting for tree to go green)
[25204](https://github.com/flutter/engine/pull/25204) Roll Skia from bb0ed8e48790 to f2b3f916fc3a (4 revisions) (cla: yes, waiting for tree to go green)
[25206](https://github.com/flutter/engine/pull/25206) [web] More meaningful test for font features (cla: yes, platform-web, waiting for tree to go green)
[25208](https://github.com/flutter/engine/pull/25208) Roll Skia from f2b3f916fc3a to 85749c0b223b (1 revision) (cla: yes, waiting for tree to go green)
[25213](https://github.com/flutter/engine/pull/25213) When snapshotting a surface, upper-bound the render target size to the device limit (cla: yes, waiting for tree to go green)
[25218](https://github.com/flutter/engine/pull/25218) Roll Fuchsia Linux SDK from JgKFR3es2... to kg0qfAPCx... (cla: yes, waiting for tree to go green)
[25220](https://github.com/flutter/engine/pull/25220) Roll Dart SDK from f8c25b8e965d to bc78a79e5e80 (2 revisions) (cla: yes, waiting for tree to go green)
[25221](https://github.com/flutter/engine/pull/25221) Revert "Call Dart plugin registrant if available" (cla: yes, waiting for tree to go green)
[25222](https://github.com/flutter/engine/pull/25222) started cleaning scenario tests before running them (cla: yes, waiting for tree to go green)
[25226](https://github.com/flutter/engine/pull/25226) Started waiting for the notifications locally before asserting side effects (cla: yes, platform-ios, waiting for tree to go green)
[25228](https://github.com/flutter/engine/pull/25228) Roll Fuchsia Mac SDK from 852xQjt_Y... to Fl6sZdXuy... (cla: yes, waiting for tree to go green)
[25229](https://github.com/flutter/engine/pull/25229) Roll Skia from 85749c0b223b to 7cae908221a2 (15 revisions) (cla: yes, waiting for tree to go green)
[25230](https://github.com/flutter/engine/pull/25230) Roll Fuchsia Linux SDK from kg0qfAPCx... to y2eG1RQrm... (cla: yes, waiting for tree to go green)
[25231](https://github.com/flutter/engine/pull/25231) Roll Skia from 7cae908221a2 to a6748aa80272 (3 revisions) (cla: yes, waiting for tree to go green)
[25235](https://github.com/flutter/engine/pull/25235) Roll Dart SDK from bc78a79e5e80 to c346bb2d834b (2 revisions) (cla: yes, waiting for tree to go green)
[25236](https://github.com/flutter/engine/pull/25236) Roll Skia from a6748aa80272 to c028c5c1f83e (2 revisions) (cla: yes, waiting for tree to go green)
[25238](https://github.com/flutter/engine/pull/25238) Roll Skia from c028c5c1f83e to c28336e5c272 (4 revisions) (cla: yes, waiting for tree to go green)
[25249](https://github.com/flutter/engine/pull/25249) Roll Fuchsia Mac SDK from Fl6sZdXuy... to Up0KimH97... (cla: yes, waiting for tree to go green)
[25253](https://github.com/flutter/engine/pull/25253) Roll Fuchsia Linux SDK from y2eG1RQrm... to R-p04Lkby... (cla: yes, waiting for tree to go green)
[25254](https://github.com/flutter/engine/pull/25254) Roll Skia from c28336e5c272 to 7ddc9b9941ec (6 revisions) (cla: yes, waiting for tree to go green)
[25255](https://github.com/flutter/engine/pull/25255) Roll Dart SDK from c346bb2d834b to d31a6683999e (2 revisions) (cla: yes, waiting for tree to go green)
[25256](https://github.com/flutter/engine/pull/25256) Roll Skia from 7ddc9b9941ec to 2febb5b4233e (4 revisions) (cla: yes, waiting for tree to go green)
[25260](https://github.com/flutter/engine/pull/25260) Roll Skia from 2febb5b4233e to 5069304bb203 (3 revisions) (cla: yes, waiting for tree to go green)
[25261](https://github.com/flutter/engine/pull/25261) Roll Clang Mac from GUX2BsVIc... to TC0M_mkz9... (cla: yes, waiting for tree to go green)
[25263](https://github.com/flutter/engine/pull/25263) Roll Skia from 5069304bb203 to 497bdf959908 (2 revisions) (cla: yes, waiting for tree to go green)
[25265](https://github.com/flutter/engine/pull/25265) Roll Fuchsia Mac SDK from Up0KimH97... to TK3yvB3gS... (cla: yes, waiting for tree to go green)
[25266](https://github.com/flutter/engine/pull/25266) Roll Fuchsia Linux SDK from R-p04Lkby... to d8jq76lyK... (cla: yes, waiting for tree to go green)
[25267](https://github.com/flutter/engine/pull/25267) Fix WinUWP build (cla: yes, waiting for tree to go green)
[25268](https://github.com/flutter/engine/pull/25268) Roll Dart SDK from d31a6683999e to f142aa958951 (2 revisions) (cla: yes, waiting for tree to go green)
[25269](https://github.com/flutter/engine/pull/25269) Roll Clang Mac from TC0M_mkz9... to GUX2BsVIc... (cla: yes, waiting for tree to go green)
[25270](https://github.com/flutter/engine/pull/25270) [libTxt] multi-codeunit glyph hit test minor fix (cla: yes, waiting for tree to go green)
[25271](https://github.com/flutter/engine/pull/25271) Roll Fuchsia Mac SDK from TK3yvB3gS... to MQwG9VAs-... (cla: yes, waiting for tree to go green)
[25272](https://github.com/flutter/engine/pull/25272) Roll Fuchsia Linux SDK from d8jq76lyK... to wR8Sc9ieX... (cla: yes, waiting for tree to go green)
[25273](https://github.com/flutter/engine/pull/25273) Roll Fuchsia Mac SDK from MQwG9VAs-... to o-xARpyOX... (cla: yes, waiting for tree to go green)
[25274](https://github.com/flutter/engine/pull/25274) Roll Fuchsia Linux SDK from wR8Sc9ieX... to lzyM0FRih... (cla: yes, waiting for tree to go green)
[25275](https://github.com/flutter/engine/pull/25275) Roll Dart SDK from f142aa958951 to 61d949d7ec1b (1 revision) (cla: yes, waiting for tree to go green)
[25276](https://github.com/flutter/engine/pull/25276) Roll Fuchsia Mac SDK from o-xARpyOX... to jnG2ejqF6... (cla: yes, waiting for tree to go green)
[25277](https://github.com/flutter/engine/pull/25277) Roll Dart SDK from 61d949d7ec1b to b2b8c997eefa (1 revision) (cla: yes, waiting for tree to go green)
[25278](https://github.com/flutter/engine/pull/25278) Roll Fuchsia Linux SDK from lzyM0FRih... to Jsuz_VU7L... (cla: yes, waiting for tree to go green)
[25280](https://github.com/flutter/engine/pull/25280) Add clear method in FlutterEngineCache to clear all cached Flutter engines #78420 (cla: yes, platform-android, waiting for tree to go green)
[25282](https://github.com/flutter/engine/pull/25282) Roll Skia from 497bdf959908 to 975341304300 (4 revisions) (cla: yes, waiting for tree to go green)
[25284](https://github.com/flutter/engine/pull/25284) [ios] [asan] Copy asan runtime dylib when built with "--asan" (cla: yes, platform-ios, waiting for tree to go green)
[25285](https://github.com/flutter/engine/pull/25285) Roll Skia from 975341304300 to 99438408b1e0 (6 revisions) (cla: yes, waiting for tree to go green)
[25287](https://github.com/flutter/engine/pull/25287) Roll Skia from 99438408b1e0 to 556302dea5bc (4 revisions) (cla: yes, waiting for tree to go green)
[25288](https://github.com/flutter/engine/pull/25288) Roll Dart SDK from b2b8c997eefa to 5839c3386cca (3 revisions) (cla: yes, waiting for tree to go green)
[25291](https://github.com/flutter/engine/pull/25291) Roll Skia from 556302dea5bc to 7b41798fd606 (7 revisions) (cla: yes, waiting for tree to go green)
[25294](https://github.com/flutter/engine/pull/25294) Roll Dart SDK from 5839c3386cca to 07c67e891edb (1 revision) (cla: yes, waiting for tree to go green)
[25295](https://github.com/flutter/engine/pull/25295) Roll Skia from 7b41798fd606 to 589adda93059 (1 revision) (cla: yes, waiting for tree to go green)
[25296](https://github.com/flutter/engine/pull/25296) Roll Fuchsia Mac SDK from jnG2ejqF6... to hi6Arsnrc... (cla: yes, waiting for tree to go green)
[25297](https://github.com/flutter/engine/pull/25297) Deduplicate plugin registration logic and make error logs visible (cla: yes, platform-android, waiting for tree to go green)
[25301](https://github.com/flutter/engine/pull/25301) Roll Dart SDK from 07c67e891edb to 4535b2736e4e (1 revision) (cla: yes, waiting for tree to go green)
[25302](https://github.com/flutter/engine/pull/25302) Roll Fuchsia Linux SDK from Jsuz_VU7L... to -9LtXeZ47... (cla: yes, waiting for tree to go green)
[25304](https://github.com/flutter/engine/pull/25304) Remove comment about null on not-null fields (cla: yes, waiting for tree to go green)
[25305](https://github.com/flutter/engine/pull/25305) Roll Skia from 589adda93059 to 4718a8b83bbb (14 revisions) (cla: yes, waiting for tree to go green)
[25306](https://github.com/flutter/engine/pull/25306) Roll Skia from 4718a8b83bbb to 1d2a26d0df07 (2 revisions) (cla: yes, waiting for tree to go green)
[25310](https://github.com/flutter/engine/pull/25310) Roll Dart SDK from 4535b2736e4e to fb5d27696aa8 (3 revisions) (cla: yes, waiting for tree to go green)
[25311](https://github.com/flutter/engine/pull/25311) Roll Skia from 1d2a26d0df07 to 428523f9a4dc (5 revisions) (cla: yes, waiting for tree to go green)
[25312](https://github.com/flutter/engine/pull/25312) build dart2js on linux arm host (cla: yes, waiting for tree to go green)
[25314](https://github.com/flutter/engine/pull/25314) Send a null response to signal that a message is not implemented on the web text input channel (cla: yes, waiting for tree to go green)
[25324](https://github.com/flutter/engine/pull/25324) [iOS][Test] Update scenario test tutorial (cla: yes, waiting for tree to go green)
[25333](https://github.com/flutter/engine/pull/25333) Roll Fuchsia Mac SDK from hi6Arsnrc... to eXx5DUal4... (cla: yes, waiting for tree to go green)
[25335](https://github.com/flutter/engine/pull/25335) Make EncodableValue::LongValue const (affects: desktop, cla: yes, waiting for tree to go green)
[25336](https://github.com/flutter/engine/pull/25336) Roll Fuchsia Linux SDK from -9LtXeZ47... to T_kNQ9dqg... (cla: yes, waiting for tree to go green)
[25337](https://github.com/flutter/engine/pull/25337) Roll Dart SDK from fb5d27696aa8 to 35a7d7f630f4 (6 revisions) (cla: yes, waiting for tree to go green)
[25338](https://github.com/flutter/engine/pull/25338) Roll Skia from 428523f9a4dc to 8ed7a8d1c659 (18 revisions) (cla: yes, waiting for tree to go green)
[25339](https://github.com/flutter/engine/pull/25339) Roll Skia from 8ed7a8d1c659 to a4d85e708b8e (7 revisions) (cla: yes, waiting for tree to go green)
[25342](https://github.com/flutter/engine/pull/25342) Roll Skia from a4d85e708b8e to 3d3562912fea (6 revisions) (cla: yes, waiting for tree to go green)
[25344](https://github.com/flutter/engine/pull/25344) Roll Dart SDK from 35a7d7f630f4 to 125606d51e62 (1 revision) (cla: yes, waiting for tree to go green)
[25345](https://github.com/flutter/engine/pull/25345) Roll Skia from 3d3562912fea to bba188062503 (1 revision) (cla: yes, waiting for tree to go green)
[25346](https://github.com/flutter/engine/pull/25346) Correct typos throughout the engine/embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[25347](https://github.com/flutter/engine/pull/25347) Roll Skia from bba188062503 to 3d358fe2e533 (1 revision) (cla: yes, waiting for tree to go green)
[25348](https://github.com/flutter/engine/pull/25348) Roll Dart SDK from 125606d51e62 to 2e5ada685fa7 (1 revision) (cla: yes, waiting for tree to go green)
[25350](https://github.com/flutter/engine/pull/25350) fix a HapticFeedback.vibrate NNBD bug (cla: yes, waiting for tree to go green)
[25351](https://github.com/flutter/engine/pull/25351) Roll Skia from 3d358fe2e533 to f1126836f9ef (1 revision) (cla: yes, waiting for tree to go green)
[25352](https://github.com/flutter/engine/pull/25352) Roll Skia from f1126836f9ef to 7f38a89654b2 (1 revision) (cla: yes, waiting for tree to go green)
[25353](https://github.com/flutter/engine/pull/25353) Roll Fuchsia Mac SDK from eXx5DUal4... to E7dJ0nmpi... (cla: yes, waiting for tree to go green)
[25355](https://github.com/flutter/engine/pull/25355) Roll Dart SDK from 2e5ada685fa7 to 22dfe0dc39b1 (1 revision) (cla: yes, waiting for tree to go green)
[25356](https://github.com/flutter/engine/pull/25356) Roll Dart SDK from 22dfe0dc39b1 to ff3caa6e6324 (1 revision) (cla: yes, waiting for tree to go green)
[25358](https://github.com/flutter/engine/pull/25358) Roll Fuchsia Linux SDK from T_kNQ9dqg... to kafCPE8Hd... (cla: yes, waiting for tree to go green)
[25359](https://github.com/flutter/engine/pull/25359) Roll Skia from 7f38a89654b2 to 87fc65710104 (4 revisions) (cla: yes, waiting for tree to go green)
[25361](https://github.com/flutter/engine/pull/25361) Roll Skia from 87fc65710104 to d18967c67d78 (4 revisions) (cla: yes, waiting for tree to go green)
[25363](https://github.com/flutter/engine/pull/25363) Roll Dart SDK from ff3caa6e6324 to e3e901344f72 (1 revision) (cla: yes, waiting for tree to go green)
[25364](https://github.com/flutter/engine/pull/25364) Roll Skia from d18967c67d78 to 92f2d9340ef1 (5 revisions) (cla: yes, waiting for tree to go green)
[25366](https://github.com/flutter/engine/pull/25366) Roll Skia from 92f2d9340ef1 to 7384b3757655 (2 revisions) (cla: yes, waiting for tree to go green)
[25368](https://github.com/flutter/engine/pull/25368) Roll Fuchsia Mac SDK from E7dJ0nmpi... to VFHTytszr... (cla: yes, waiting for tree to go green)
[25370](https://github.com/flutter/engine/pull/25370) Roll Skia from 7384b3757655 to 92b35673c5bb (1 revision) (cla: yes, waiting for tree to go green)
[25371](https://github.com/flutter/engine/pull/25371) Roll Dart SDK from e3e901344f72 to 5fb4fb907f88 (1 revision) (cla: yes, waiting for tree to go green)
[25372](https://github.com/flutter/engine/pull/25372) Roll Skia from 92b35673c5bb to 988b7043e54c (2 revisions) (cla: yes, waiting for tree to go green)
[25374](https://github.com/flutter/engine/pull/25374) Roll Skia from 988b7043e54c to 42d753031d3f (1 revision) (cla: yes, waiting for tree to go green)
[25376](https://github.com/flutter/engine/pull/25376) Roll Dart SDK from 5fb4fb907f88 to 6d0a351efd1f (1 revision) (cla: yes, waiting for tree to go green)
[25377](https://github.com/flutter/engine/pull/25377) Roll Fuchsia Linux SDK from kafCPE8Hd... to AhlA9OIbM... (cla: yes, waiting for tree to go green)
[25378](https://github.com/flutter/engine/pull/25378) Roll Skia from 42d753031d3f to d4897f0d127e (1 revision) (cla: yes, waiting for tree to go green)
[25379](https://github.com/flutter/engine/pull/25379) Add fallback for GetAbsoluteFilePath in UWP (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[25380](https://github.com/flutter/engine/pull/25380) Roll Skia from d4897f0d127e to 1b20cf0fe9e9 (1 revision) (cla: yes, waiting for tree to go green)
[25383](https://github.com/flutter/engine/pull/25383) Roll Fuchsia Mac SDK from VFHTytszr... to TofGhqbUJ... (cla: yes, waiting for tree to go green)
[25384](https://github.com/flutter/engine/pull/25384) Roll Skia from 1b20cf0fe9e9 to 2938eea68c46 (1 revision) (cla: yes, waiting for tree to go green)
[25386](https://github.com/flutter/engine/pull/25386) Roll Skia from 2938eea68c46 to 0cbd45421f25 (1 revision) (cla: yes, waiting for tree to go green)
[25388](https://github.com/flutter/engine/pull/25388) Roll Skia from 0cbd45421f25 to 396cd1dfabdd (2 revisions) (cla: yes, waiting for tree to go green)
[25391](https://github.com/flutter/engine/pull/25391) Roll Skia from 396cd1dfabdd to 87011df3cf84 (1 revision) (cla: yes, waiting for tree to go green)
[25392](https://github.com/flutter/engine/pull/25392) Roll Fuchsia Linux SDK from AhlA9OIbM... to b6atUpuKK... (cla: yes, waiting for tree to go green)
[25393](https://github.com/flutter/engine/pull/25393) Revert "Deduplicate plugin registration logic and make error logs visible" (cla: yes, platform-android, waiting for tree to go green)
[25394](https://github.com/flutter/engine/pull/25394) Roll Skia from 87011df3cf84 to f8d75c687d2e (1 revision) (cla: yes, waiting for tree to go green)
[25398](https://github.com/flutter/engine/pull/25398) Roll Skia from f8d75c687d2e to ea1d39b35cf6 (10 revisions) (cla: yes, waiting for tree to go green)
[25399](https://github.com/flutter/engine/pull/25399) Roll Fuchsia Mac SDK from TofGhqbUJ... to yIlbYYW5i... (cla: yes, waiting for tree to go green)
[25404](https://github.com/flutter/engine/pull/25404) Roll Dart SDK from 6d0a351efd1f to 624d14c61b2d (1 revision) (cla: yes, waiting for tree to go green)
[25405](https://github.com/flutter/engine/pull/25405) Roll Dart SDK from 624d14c61b2d to 0193522c6638 (1 revision) (cla: yes, waiting for tree to go green)
[25406](https://github.com/flutter/engine/pull/25406) Roll Fuchsia Linux SDK from b6atUpuKK... to y_R-US0DL... (cla: yes, waiting for tree to go green)
[25407](https://github.com/flutter/engine/pull/25407) Roll Dart SDK from 0193522c6638 to 0d7b8ec13047 (1 revision) (cla: yes, waiting for tree to go green)
[25408](https://github.com/flutter/engine/pull/25408) Roll Dart SDK from 0d7b8ec13047 to 00eaa3c60d31 (1 revision) (cla: yes, waiting for tree to go green)
[25409](https://github.com/flutter/engine/pull/25409) Roll Skia from ea1d39b35cf6 to e9244938d2a0 (1 revision) (cla: yes, waiting for tree to go green)
[25410](https://github.com/flutter/engine/pull/25410) Roll Dart SDK from 00eaa3c60d31 to 755b81eb3fb8 (1 revision) (cla: yes, waiting for tree to go green)
[25411](https://github.com/flutter/engine/pull/25411) Roll Dart SDK from 755b81eb3fb8 to eab366e78fa5 (1 revision) (cla: yes, waiting for tree to go green)
[25413](https://github.com/flutter/engine/pull/25413) Roll Fuchsia Mac SDK from yIlbYYW5i... to 4WKVCYCPm... (cla: yes, waiting for tree to go green)
[25414](https://github.com/flutter/engine/pull/25414) Roll Dart SDK from eab366e78fa5 to 3f2cdd7b7393 (1 revision) (cla: yes, waiting for tree to go green)
[25415](https://github.com/flutter/engine/pull/25415) Roll Fuchsia Linux SDK from y_R-US0DL... to b22xnKMfp... (cla: yes, waiting for tree to go green)
[25416](https://github.com/flutter/engine/pull/25416) Roll Skia from e9244938d2a0 to 301449e4d051 (1 revision) (cla: yes, waiting for tree to go green)
[25417](https://github.com/flutter/engine/pull/25417) Roll Skia from 301449e4d051 to 5c7ab08937ca (1 revision) (cla: yes, waiting for tree to go green)
[25418](https://github.com/flutter/engine/pull/25418) Roll Dart SDK from 3f2cdd7b7393 to 5138e77df795 (1 revision) (cla: yes, waiting for tree to go green)
[25419](https://github.com/flutter/engine/pull/25419) Roll Fuchsia Mac SDK from 4WKVCYCPm... to F4eUNa2mh... (cla: yes, waiting for tree to go green)
[25422](https://github.com/flutter/engine/pull/25422) Roll Skia from 5c7ab08937ca to fd7252fa2392 (3 revisions) (cla: yes, waiting for tree to go green)
[25423](https://github.com/flutter/engine/pull/25423) Roll Skia from fd7252fa2392 to e296c56735c4 (4 revisions) (cla: yes, waiting for tree to go green)
[25424](https://github.com/flutter/engine/pull/25424) Roll Dart SDK from 5138e77df795 to c274ba72ec73 (2 revisions) (cla: yes, waiting for tree to go green)
[25426](https://github.com/flutter/engine/pull/25426) Roll Skia from e296c56735c4 to b14a819122ee (1 revision) (cla: yes, waiting for tree to go green)
[25430](https://github.com/flutter/engine/pull/25430) Roll Skia from b14a819122ee to 0a12b85f160f (5 revisions) (cla: yes, waiting for tree to go green)
[25431](https://github.com/flutter/engine/pull/25431) Roll Fuchsia Linux SDK from b22xnKMfp... to txu1APnex... (cla: yes, waiting for tree to go green)
[25432](https://github.com/flutter/engine/pull/25432) Roll Dart SDK from c274ba72ec73 to 3dd1630ab4d4 (1 revision) (cla: yes, waiting for tree to go green)
[25433](https://github.com/flutter/engine/pull/25433) Remove the DartIsolate::PostMessage timeline event (cla: yes, waiting for tree to go green)
[25434](https://github.com/flutter/engine/pull/25434) Roll Skia from 0a12b85f160f to 974c82150204 (1 revision) (cla: yes, waiting for tree to go green)
[25436](https://github.com/flutter/engine/pull/25436) Roll Fuchsia Mac SDK from F4eUNa2mh... to IKx9cvrtJ... (cla: yes, waiting for tree to go green)
[25438](https://github.com/flutter/engine/pull/25438) Roll Dart SDK from 3dd1630ab4d4 to b55f7a132f67 (1 revision) (cla: yes, waiting for tree to go green)
[25440](https://github.com/flutter/engine/pull/25440) Roll Skia from 974c82150204 to b4e5a9192d39 (1 revision) (cla: yes, waiting for tree to go green)
[25441](https://github.com/flutter/engine/pull/25441) Roll Skia from b4e5a9192d39 to b6689e568050 (2 revisions) (cla: yes, waiting for tree to go green)
[25442](https://github.com/flutter/engine/pull/25442) Roll Clang Linux from TEHg3vhDG... to pRlhGPqYQ... (cla: yes, waiting for tree to go green)
[25443](https://github.com/flutter/engine/pull/25443) Roll Clang Mac from GUX2BsVIc... to RW7LSJ9ld... (cla: yes, waiting for tree to go green)
[25447](https://github.com/flutter/engine/pull/25447) Roll Dart SDK from b55f7a132f67 to ef46d99315de (2 revisions) (cla: yes, waiting for tree to go green)
[25448](https://github.com/flutter/engine/pull/25448) Roll Fuchsia Linux SDK from txu1APnex... to dl1JUKVuj... (cla: yes, waiting for tree to go green)
[25450](https://github.com/flutter/engine/pull/25450) Roll Skia from b6689e568050 to 3b6ea141bd8d (1 revision) (cla: yes, waiting for tree to go green)
[25451](https://github.com/flutter/engine/pull/25451) Roll Fuchsia Mac SDK from IKx9cvrtJ... to Z-pl5laFz... (cla: yes, waiting for tree to go green)
[25452](https://github.com/flutter/engine/pull/25452) Roll Dart SDK from ef46d99315de to b9471aadaa1a (1 revision) (cla: yes, waiting for tree to go green)
[25454](https://github.com/flutter/engine/pull/25454) Roll Skia from 3b6ea141bd8d to b3479cea80aa (1 revision) (cla: yes, waiting for tree to go green)
[25455](https://github.com/flutter/engine/pull/25455) Roll Skia from b3479cea80aa to c6a3d531880e (3 revisions) (cla: yes, waiting for tree to go green)
[25457](https://github.com/flutter/engine/pull/25457) Roll Skia from c6a3d531880e to c8c573d455f0 (1 revision) (cla: yes, waiting for tree to go green)
[25459](https://github.com/flutter/engine/pull/25459) Roll Dart SDK from b9471aadaa1a to 9704370488b0 (1 revision) (cla: yes, waiting for tree to go green)
[25460](https://github.com/flutter/engine/pull/25460) Roll Skia from c8c573d455f0 to 601abfacc736 (8 revisions) (cla: yes, waiting for tree to go green)
[25461](https://github.com/flutter/engine/pull/25461) Roll Skia from 601abfacc736 to d986f476ae68 (5 revisions) (cla: yes, waiting for tree to go green)
[25462](https://github.com/flutter/engine/pull/25462) Revert "Reland: Call Dart plugin registrant if available (#23813)" (cla: yes, waiting for tree to go green)
[25463](https://github.com/flutter/engine/pull/25463) Roll Skia from d986f476ae68 to 0195bec798a9 (1 revision) (cla: yes, waiting for tree to go green)
[25466](https://github.com/flutter/engine/pull/25466) Roll Dart SDK from 9704370488b0 to e778310fcdcc (1 revision) (cla: yes, waiting for tree to go green)
[25467](https://github.com/flutter/engine/pull/25467) Roll Fuchsia Linux SDK from dl1JUKVuj... to 0Db2pEb0U... (cla: yes, waiting for tree to go green)
[25468](https://github.com/flutter/engine/pull/25468) Roll Fuchsia Mac SDK from Z-pl5laFz... to a9NOB6sdo... (cla: yes, waiting for tree to go green)
[25469](https://github.com/flutter/engine/pull/25469) Roll Skia from 0195bec798a9 to 2f5a91c531de (1 revision) (cla: yes, waiting for tree to go green)
[25470](https://github.com/flutter/engine/pull/25470) Roll Dart SDK from e778310fcdcc to dda1a31495e3 (1 revision) (cla: yes, waiting for tree to go green)
[25472](https://github.com/flutter/engine/pull/25472) Roll Dart SDK from dda1a31495e3 to 3f36938a7cff (2 revisions) (cla: yes, waiting for tree to go green)
[25473](https://github.com/flutter/engine/pull/25473) Roll Skia from 2f5a91c531de to 5c6258287461 (3 revisions) (cla: yes, waiting for tree to go green)
[25474](https://github.com/flutter/engine/pull/25474) Roll Fuchsia Linux SDK from 0Db2pEb0U... to R3xv3K9Hz... (cla: yes, waiting for tree to go green)
[25476](https://github.com/flutter/engine/pull/25476) Roll Fuchsia Mac SDK from a9NOB6sdo... to eV1E54W8a... (cla: yes, waiting for tree to go green)
[25479](https://github.com/flutter/engine/pull/25479) Roll Dart SDK from 3f36938a7cff to 1fd6151bb137 (2 revisions) (cla: yes, waiting for tree to go green)
### platform-android - 49 pull request(s)
[23911](https://github.com/flutter/engine/pull/23911) Fix Android IO and Worker threads priority issue (cla: yes, platform-android, waiting for tree to go green)
[23955](https://github.com/flutter/engine/pull/23955) Fix "Buffer not large enough for pixels" by adding buffer.rewind() (cla: yes, platform-android, waiting for tree to go green)
[23980](https://github.com/flutter/engine/pull/23980) Load FlutterLoader when creating FlutterEngineGroup (cla: yes, platform-android, waiting for tree to go green)
[24101](https://github.com/flutter/engine/pull/24101) Use sampling instead of (deprecated) filter-quality (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[24135](https://github.com/flutter/engine/pull/24135) drawBitmap is deprecated, use drawImage (cla: yes, platform-android)
[24142](https://github.com/flutter/engine/pull/24142) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Engine Cherrypicks (cla: yes, platform-android)
[24146](https://github.com/flutter/engine/pull/24146) fixes android deeplink query paremeter null crashes (cla: yes, platform-android, waiting for tree to go green)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24181](https://github.com/flutter/engine/pull/24181) Make activity/fragment leftover from an attach/detach race slightly safer (cla: yes, platform-android)
[24272](https://github.com/flutter/engine/pull/24272) Fix ImageReader may leak images when onDraw() not called (cla: yes, platform-android, waiting for tree to go green)
[24288](https://github.com/flutter/engine/pull/24288) [Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards (cla: yes, platform-android, waiting for tree to go green)
[24340](https://github.com/flutter/engine/pull/24340) Remove NonNull annotation on FlutterCallbackInformation.lookupCallbackInformation (cla: yes, platform-android)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[24363](https://github.com/flutter/engine/pull/24363) Replace Flutter surface only after all platform views are destroyed (cla: yes, platform-android)
[24463](https://github.com/flutter/engine/pull/24463) [Android text input] fix android autofill on focused text field (cla: yes, platform-android, waiting for tree to go green)
[24479](https://github.com/flutter/engine/pull/24479) Let FlutterEngine to turn off automaticallyRegisterPlugins from AndroidManifest.xml. (cla: yes, platform-android, waiting for tree to go green)
[24486](https://github.com/flutter/engine/pull/24486) Revert "[Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards" (cla: yes, platform-android, waiting for tree to go green)
[24543](https://github.com/flutter/engine/pull/24543) Delete multi set args parameter from intent (cla: yes, platform-android, waiting for tree to go green)
[24575](https://github.com/flutter/engine/pull/24575) Add method to obtain native string resource in localization plugin. (cla: yes, platform-android)
[24581](https://github.com/flutter/engine/pull/24581) [Android Input] Passthrough movement keys when there's no selection (cla: yes, platform-android, waiting for tree to go green)
[24635](https://github.com/flutter/engine/pull/24635) [flutter_releases] Flutter Engine Cherrypicks (cla: yes, platform-android)
[24644](https://github.com/flutter/engine/pull/24644) Fixed problem where AndroidShellHolder was trashing the ThreadHost in its deconstructor (cla: yes, cp: 1.26, platform-android, platform-ios)
[24690](https://github.com/flutter/engine/pull/24690) Fix memory leak and bug in the RunsOnCreationTaskRunner check (cla: yes, platform-android, waiting for tree to go green)
[24734](https://github.com/flutter/engine/pull/24734) Adds set text action for voice access (cla: yes, platform-android, waiting for tree to go green)
[24800](https://github.com/flutter/engine/pull/24800) Revert "Replace Flutter surface only after all platform views are destroyed" (cla: yes, platform-android)
[24818](https://github.com/flutter/engine/pull/24818) Update paths related to CIPD package creation (cla: yes, platform-android, waiting for tree to go green)
[24838](https://github.com/flutter/engine/pull/24838) Prevent race condition while switching surfaces (cla: yes, platform-android)
[24874](https://github.com/flutter/engine/pull/24874) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check" (cla: yes, platform-android, waiting for tree to go green)
[24897](https://github.com/flutter/engine/pull/24897) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check⦠(cla: yes, platform-android)
[24906](https://github.com/flutter/engine/pull/24906) Rename `moduleName` to `componentName` for consistency (cla: yes, platform-android, waiting for tree to go green)
[24917](https://github.com/flutter/engine/pull/24917) Cherrypick Skia roll #24914 (cla: yes, platform-android)
[24928](https://github.com/flutter/engine/pull/24928) [flutter_releases] Flutter 2.0.2 Stable Engine Cherrypicks (cla: yes, platform-android)
[24983](https://github.com/flutter/engine/pull/24983) [deferred components] Handle base module loading units (cla: yes, platform-android, waiting for tree to go green)
[25050](https://github.com/flutter/engine/pull/25050) Fixes android voice access delete text, redo, and undo actions. (cla: yes, platform-android)
[25055](https://github.com/flutter/engine/pull/25055) [flutter_releases] Flutter Stable 2.0.3 Engine Cherrypicks (cla: yes, platform-android)
[25167](https://github.com/flutter/engine/pull/25167) [fuchsia][a11y] Adds isKeyboardKey semantics flag. (cla: yes, platform-android)
[25171](https://github.com/flutter/engine/pull/25171) Make DartExecutor.isExecutingDart account for spawned engines (cla: yes, platform-android)
[25174](https://github.com/flutter/engine/pull/25174) Switched assert(x > 0) to assert(x != 0) to handle tagged pointers in java (cla: yes, platform-android)
[25180](https://github.com/flutter/engine/pull/25180) [Android Text Input] restart when framework changes composing region (cla: yes, platform-android, waiting for tree to go green)
[25280](https://github.com/flutter/engine/pull/25280) Add clear method in FlutterEngineCache to clear all cached Flutter engines #78420 (cla: yes, platform-android, waiting for tree to go green)
[25286](https://github.com/flutter/engine/pull/25286) Revert "Fixes android voice access delete text, redo, and undo action⦠(cla: yes, platform-android)
[25289](https://github.com/flutter/engine/pull/25289) Reland "Fixes android voice access delete text, redo, and undo action" (cla: yes, platform-android)
[25297](https://github.com/flutter/engine/pull/25297) Deduplicate plugin registration logic and make error logs visible (cla: yes, platform-android, waiting for tree to go green)
[25299](https://github.com/flutter/engine/pull/25299) Turn off insecure socket policy configuration in the engine (cla: yes, platform-android, platform-ios)
[25317](https://github.com/flutter/engine/pull/25317) Reland: "Fix memory leak and bug in the RunsOnCreationTaskRun" (cla: yes, platform-android)
[25346](https://github.com/flutter/engine/pull/25346) Correct typos throughout the engine/embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[25393](https://github.com/flutter/engine/pull/25393) Revert "Deduplicate plugin registration logic and make error logs visible" (cla: yes, platform-android, waiting for tree to go green)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
[25428](https://github.com/flutter/engine/pull/25428) Update FlutterFragment to implement ComponentCallbacks2. (cla: yes, platform-android)
### platform-web - 36 pull request(s)
[23466](https://github.com/flutter/engine/pull/23466) Hardware keyboard: Web, embedder, and dart:ui (cla: yes, platform-ios, platform-web, waiting for tree to go green)
[23961](https://github.com/flutter/engine/pull/23961) [web] Fix flake due to shadow rendering difference on webkit (cla: yes, platform-web, waiting for tree to go green)
[23965](https://github.com/flutter/engine/pull/23965) [web] Fix alignment issue in rich paragraphs (cla: yes, platform-web, waiting for tree to go green)
[23995](https://github.com/flutter/engine/pull/23995) [web] Fix drawVertices rendering when colors array is null and style is fill (cla: yes, platform-web)
[24001](https://github.com/flutter/engine/pull/24001) [canvaskit] remove the DOM node of unrendered platform view (cla: yes, platform-web)
[24024](https://github.com/flutter/engine/pull/24024) Use `runes` to get code units in CanvasKit. (cla: yes, platform-web, waiting for tree to go green)
[24029](https://github.com/flutter/engine/pull/24029) Refactor gradient renderer to produce image. Implement gradient based Shadermask (cla: yes, platform-web)
[24036](https://github.com/flutter/engine/pull/24036) [web] Fix text alignment when transform + tight constraints + DOM rendering (cla: yes, platform-web, waiting for tree to go green)
[24037](https://github.com/flutter/engine/pull/24037) [web] Implement CanvasParagraph.getLineBoundary (cla: yes, platform-web, waiting for tree to go green)
[24150](https://github.com/flutter/engine/pull/24150) [web] Fix exception when using a keyboard (cla: yes, platform-web, waiting for tree to go green)
[24153](https://github.com/flutter/engine/pull/24153) [web] Fix svg stroke when style is not provided (cla: yes, platform-web)
[24159](https://github.com/flutter/engine/pull/24159) [web] Fix text rendering issue when paragraph style is ginormous (cla: yes, platform-web)
[24214](https://github.com/flutter/engine/pull/24214) [web] Fix text selection from right to left (affects: text input, cla: yes, platform-web, waiting for tree to go green)
[24249](https://github.com/flutter/engine/pull/24249) Roll CanvasKit to 0.23 (cla: yes, platform-web)
[24354](https://github.com/flutter/engine/pull/24354) [web] Fix origin for repeated linear gradients (cla: yes, platform-web, waiting for tree to go green)
[24382](https://github.com/flutter/engine/pull/24382) [canvaskit] fix Path.from (cla: yes, platform-web)
[24447](https://github.com/flutter/engine/pull/24447) [web] Fix right click issue when dragging (cla: yes, platform-web, waiting for tree to go green)
[24572](https://github.com/flutter/engine/pull/24572) [web] Fix placeholder-only paragraphs (cla: yes, platform-web, waiting for tree to go green)
[24651](https://github.com/flutter/engine/pull/24651) Fix exactCullRect computation (cla: yes, platform-web)
[24716](https://github.com/flutter/engine/pull/24716) [web] Fix painting of last placeholder in paragraph (cla: yes, platform-web)
[24719](https://github.com/flutter/engine/pull/24719) [web] Fix pointer events for Wacom pen (cla: yes, platform-web)
[24798](https://github.com/flutter/engine/pull/24798) [web] Fix url updates when using Router (cla: yes, platform-web, waiting for tree to go green)
[24827](https://github.com/flutter/engine/pull/24827) Improve error message when CanvasKit is unable to parse a font (cla: yes, platform-web)
[24828](https://github.com/flutter/engine/pull/24828) [web] Don't set both color and foreground at the same time (cla: yes, platform-web, waiting for tree to go green)
[24876](https://github.com/flutter/engine/pull/24876) [web] Reland: Fix url updates when using Router (cla: yes, platform-web)
[24905](https://github.com/flutter/engine/pull/24905) [web] Reland: Fix painting of last placeholder in paragraph (cla: yes, platform-web, waiting for tree to go green)
[24934](https://github.com/flutter/engine/pull/24934) [web] Add few awaits in history tests (affects: tests, cla: yes, platform-web, waiting for tree to go green)
[24949](https://github.com/flutter/engine/pull/24949) [web] Silence flaky history test (affects: tests, cla: yes, platform-web)
[24957](https://github.com/flutter/engine/pull/24957) [web] Skip the history tests that introduced flakiness (cla: yes, platform-web)
[25080](https://github.com/flutter/engine/pull/25080) [web] Fix handling of ClipOp.none (cla: yes, platform-web)
[25088](https://github.com/flutter/engine/pull/25088) [web] Implement font features in the html renderer (cla: yes, platform-web)
[25126](https://github.com/flutter/engine/pull/25126) [web] Fix few potential issues with DOM/Bitmap rendering (cla: yes, platform-web)
[25206](https://github.com/flutter/engine/pull/25206) [web] More meaningful test for font features (cla: yes, platform-web, waiting for tree to go green)
[25315](https://github.com/flutter/engine/pull/25315) Roll CanvasKit to 0.25.1 (cla: yes, platform-web)
[25367](https://github.com/flutter/engine/pull/25367) [web] Fix framework material text field tests (cla: yes, platform-web)
[25456](https://github.com/flutter/engine/pull/25456) [web] Fix shadermask rendering using CanvasKit (cla: yes, platform-web)
### platform-ios - 31 pull request(s)
[23466](https://github.com/flutter/engine/pull/23466) Hardware keyboard: Web, embedder, and dart:ui (cla: yes, platform-ios, platform-web, waiting for tree to go green)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[23776](https://github.com/flutter/engine/pull/23776) unhide uitextinput when focused (cla: yes, platform-ios, waiting for tree to go green)
[24101](https://github.com/flutter/engine/pull/24101) Use sampling instead of (deprecated) filter-quality (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24157](https://github.com/flutter/engine/pull/24157) [metal] Darwin unified external metal textures (cla: yes, platform-ios, waiting for tree to go green)
[24223](https://github.com/flutter/engine/pull/24223) Revert "[metal] Darwin unified external metal textures" (cla: yes, platform-ios)
[24244](https://github.com/flutter/engine/pull/24244) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24308](https://github.com/flutter/engine/pull/24308) Fix FlutterPlatformViewSemanticsContainer retain cycle with SemanticsObject (cla: yes, platform-ios, waiting for tree to go green)
[24331](https://github.com/flutter/engine/pull/24331) Revert "Reland "[metal] Darwin unified external metal textures (#2415β¦ (cla: yes, platform-ios, waiting for tree to go green)
[24333](https://github.com/flutter/engine/pull/24333) Always set change type to cancel with `touchesCancelled` on iOS platform view (cla: yes, platform-ios, waiting for tree to go green)
[24350](https://github.com/flutter/engine/pull/24350) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[24503](https://github.com/flutter/engine/pull/24503) iOS: Started initializing the gpu disable sync switch based on the app state. (cla: yes, platform-ios)
[24640](https://github.com/flutter/engine/pull/24640) Enables semantics when voice control is turned on (cla: yes, platform-ios, waiting for tree to go green)
[24644](https://github.com/flutter/engine/pull/24644) Fixed problem where AndroidShellHolder was trashing the ThreadHost in its deconstructor (cla: yes, cp: 1.26, platform-android, platform-ios)
[24768](https://github.com/flutter/engine/pull/24768) fixes reference retaining issue in flutter text input plugin (cla: yes, platform-ios, waiting for tree to go green)
[24831](https://github.com/flutter/engine/pull/24831) fix voice control delete line command does not delete line correctly (cla: yes, platform-ios, waiting for tree to go green)
[24893](https://github.com/flutter/engine/pull/24893) [iOS] Fixes platform view clipped when FlutterView has non-zero offset (cla: yes, platform-ios, waiting for tree to go green)
[24958](https://github.com/flutter/engine/pull/24958) Fixed issue where the gpu disable syncswitch was being overridden after init (cla: yes, platform-ios)
[25036](https://github.com/flutter/engine/pull/25036) Sanitize textInRange inputs to prevent invalid argument exceptions (cla: yes, platform-ios, waiting for tree to go green)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
[25115](https://github.com/flutter/engine/pull/25115) Fixes iOS accessibility can focus wrong content due to rapid animations (cla: yes, platform-ios, waiting for tree to go green)
[25196](https://github.com/flutter/engine/pull/25196) Keep rendering to screen in iOS `inactive` state (cla: yes, platform-ios)
[25226](https://github.com/flutter/engine/pull/25226) Started waiting for the notifications locally before asserting side effects (cla: yes, platform-ios, waiting for tree to go green)
[25248](https://github.com/flutter/engine/pull/25248) Revert "Started waiting for the notifications locally before assertin⦠(cla: yes, platform-ios)
[25257](https://github.com/flutter/engine/pull/25257) Reland: Started waiting for the notifications locally before asserting side-effects (cla: yes, platform-ios)
[25284](https://github.com/flutter/engine/pull/25284) [ios] [asan] Copy asan runtime dylib when built with "--asan" (cla: yes, platform-ios, waiting for tree to go green)
[25299](https://github.com/flutter/engine/pull/25299) Turn off insecure socket policy configuration in the engine (cla: yes, platform-android, platform-ios)
[25346](https://github.com/flutter/engine/pull/25346) Correct typos throughout the engine/embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
### affects: desktop - 16 pull request(s)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[23906](https://github.com/flutter/engine/pull/23906) Increase logging in AngleSurfaceManager (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[24186](https://github.com/flutter/engine/pull/24186) Add API to force redraw of flutter view (affects: desktop, cla: yes, needs tests)
[24232](https://github.com/flutter/engine/pull/24232) Use hidden window to process flutter messages (affects: desktop, cla: yes, platform-windows)
[24423](https://github.com/flutter/engine/pull/24423) Add missing header guard, namespace (affects: desktop, affects: engine, affects: text input, cla: yes)
[24438](https://github.com/flutter/engine/pull/24438) Roll buildroot to 47043991a50e1cfda66766009885197a05bb29f1 (affects: desktop, cla: yes, platform-windows)
[24672](https://github.com/flutter/engine/pull/24672) Convert cursor rect to device coordinates on Win32 (affects: desktop, cla: yes, platform-windows)
[24699](https://github.com/flutter/engine/pull/24699) Add RAII wrapper for Win32 IMM context (affects: desktop, affects: engine, cla: yes, platform-windows)
[24770](https://github.com/flutter/engine/pull/24770) Added dependency on CppWinRT for UWP builds (affects: desktop, cla: yes, platform-windows)
[24801](https://github.com/flutter/engine/pull/24801) Update cppwinrt to build 2.0.210304.5 (affects: desktop, cla: yes, platform-windows)
[24964](https://github.com/flutter/engine/pull/24964) fix printing Failed to determine valid GL format (affects: desktop, cla: yes, platform-linux)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
[25193](https://github.com/flutter/engine/pull/25193) Fix Windows external texture interference (affects: desktop, cla: yes, platform-windows)
[25335](https://github.com/flutter/engine/pull/25335) Make EncodableValue::LongValue const (affects: desktop, cla: yes, waiting for tree to go green)
[25379](https://github.com/flutter/engine/pull/25379) Add fallback for GetAbsoluteFilePath in UWP (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[25439](https://github.com/flutter/engine/pull/25439) Fix parameter type in FlutterDesktopEngineCreate (affects: desktop, cla: yes, platform-windows)
### platform-windows - 13 pull request(s)
[23906](https://github.com/flutter/engine/pull/23906) Increase logging in AngleSurfaceManager (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24232](https://github.com/flutter/engine/pull/24232) Use hidden window to process flutter messages (affects: desktop, cla: yes, platform-windows)
[24438](https://github.com/flutter/engine/pull/24438) Roll buildroot to 47043991a50e1cfda66766009885197a05bb29f1 (affects: desktop, cla: yes, platform-windows)
[24672](https://github.com/flutter/engine/pull/24672) Convert cursor rect to device coordinates on Win32 (affects: desktop, cla: yes, platform-windows)
[24699](https://github.com/flutter/engine/pull/24699) Add RAII wrapper for Win32 IMM context (affects: desktop, affects: engine, cla: yes, platform-windows)
[24770](https://github.com/flutter/engine/pull/24770) Added dependency on CppWinRT for UWP builds (affects: desktop, cla: yes, platform-windows)
[24801](https://github.com/flutter/engine/pull/24801) Update cppwinrt to build 2.0.210304.5 (affects: desktop, cla: yes, platform-windows)
[25193](https://github.com/flutter/engine/pull/25193) Fix Windows external texture interference (affects: desktop, cla: yes, platform-windows)
[25319](https://github.com/flutter/engine/pull/25319) Windows: Revert https://github.com/flutter/engine/pull/24428 (Work in progress (WIP), cla: yes, platform-windows)
[25349](https://github.com/flutter/engine/pull/25349) Fix texture corruption on Windows (bug, cla: yes, platform-windows)
[25379](https://github.com/flutter/engine/pull/25379) Add fallback for GetAbsoluteFilePath in UWP (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[25439](https://github.com/flutter/engine/pull/25439) Fix parameter type in FlutterDesktopEngineCreate (affects: desktop, cla: yes, platform-windows)
### affects: engine - 4 pull request(s)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24423](https://github.com/flutter/engine/pull/24423) Add missing header guard, namespace (affects: desktop, affects: engine, affects: text input, cla: yes)
[24699](https://github.com/flutter/engine/pull/24699) Add RAII wrapper for Win32 IMM context (affects: desktop, affects: engine, cla: yes, platform-windows)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
### embedder - 4 pull request(s)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
[25435](https://github.com/flutter/engine/pull/25435) Allow embedders to set a custom log tag (cla: yes, embedder)
[25437](https://github.com/flutter/engine/pull/25437) Add documentation to embedder locale callback (cla: yes, embedder)
### needs tests - 4 pull request(s)
[23573](https://github.com/flutter/engine/pull/23573) Windows: Add CoreWindow implementation of FlutterWindowsView (Flutter#70205) (cla: yes, needs tests)
[24186](https://github.com/flutter/engine/pull/24186) Add API to force redraw of flutter view (affects: desktop, cla: yes, needs tests)
[24698](https://github.com/flutter/engine/pull/24698) Windows UWP: Add support for emulated mouse cursor for targets such as XBOX (cla: yes, needs tests)
[25369](https://github.com/flutter/engine/pull/25369) Call CreateRenderSurface() after setting the Engine for a View on UWP (cla: yes, needs tests)
### platform-fuchsia - 4 pull request(s)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[24645](https://github.com/flutter/engine/pull/24645) fuchsia: Correct PlatformView scale/transform (cla: yes, platform-fuchsia)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
### affects: text input - 3 pull request(s)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[24214](https://github.com/flutter/engine/pull/24214) [web] Fix text selection from right to left (affects: text input, cla: yes, platform-web, waiting for tree to go green)
[24423](https://github.com/flutter/engine/pull/24423) Add missing header guard, namespace (affects: desktop, affects: engine, affects: text input, cla: yes)
### platform-macos - 3 pull request(s)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
### affects: tests - 2 pull request(s)
[24934](https://github.com/flutter/engine/pull/24934) [web] Add few awaits in history tests (affects: tests, cla: yes, platform-web, waiting for tree to go green)
[24949](https://github.com/flutter/engine/pull/24949) [web] Silence flaky history test (affects: tests, cla: yes, platform-web)
### cp: 1.26 - 2 pull request(s)
[23931](https://github.com/flutter/engine/pull/23931) Ensures that hit testing only returns focusable nodes. (cla: yes, cp: 1.26, waiting for tree to go green)
[24644](https://github.com/flutter/engine/pull/24644) Fixed problem where AndroidShellHolder was trashing the ThreadHost in its deconstructor (cla: yes, cp: 1.26, platform-android, platform-ios)
### platform-linux - 2 pull request(s)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24964](https://github.com/flutter/engine/pull/24964) fix printing Failed to determine valid GL format (affects: desktop, cla: yes, platform-linux)
### tech-debt - 2 pull request(s)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
[25403](https://github.com/flutter/engine/pull/25403) Eliminate error message for missing CMAP table (cla: yes, tech-debt)
### Work in progress (WIP) - 1 pull request(s)
[25319](https://github.com/flutter/engine/pull/25319) Windows: Revert https://github.com/flutter/engine/pull/24428 (Work in progress (WIP), cla: yes, platform-windows)
### bug - 1 pull request(s)
[25349](https://github.com/flutter/engine/pull/25349) Fix texture corruption on Windows (bug, cla: yes, platform-windows)
### crash - 1 pull request(s)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
## Merged PRs by labels for `flutter/plugins`
### cla: yes - 274 pull request(s)
[2031](https://github.com/flutter/plugins/pull/2031) [url_launcher] Added a note to the README (cla: yes, in review, p: url_launcher)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2480](https://github.com/flutter/plugins/pull/2480) [video_player] : Flutter's video plugin can cause crashes after a closing a flutter vi⦠(cla: yes, p: video_player)
[2606](https://github.com/flutter/plugins/pull/2606) Updated README.md typo (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2822](https://github.com/flutter/plugins/pull/2822) [in_app_purchase] Add support for InApp subscription upgrade/downgrade (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[2835](https://github.com/flutter/plugins/pull/2835) Fix typo in image_picker_for_web README.md (cla: yes, p: image_picker, platform-web)
[2846](https://github.com/flutter/plugins/pull/2846) [in_app_purchase] Typos in comments (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2858](https://github.com/flutter/plugins/pull/2858) [url_launcher] Update description in pubspec.yaml (cla: yes, p: url_launcher)
[2983](https://github.com/flutter/plugins/pull/2983) [local_auth] Unnecessary reassignment in example removed (cla: yes, p: local_auth, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3234](https://github.com/flutter/plugins/pull/3234) [wifi_info_flutter] Check Permissions in Android O or higher (cla: yes, p: wifi_info_flutter, platform-android)
[3252](https://github.com/flutter/plugins/pull/3252) [url_launcher] Update readme for URL schemes on iOS (cla: yes, p: url_launcher, waiting for tree to go green)
[3274](https://github.com/flutter/plugins/pull/3274) [in_app_purchase] presentCodeRedemptionSheet (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3300](https://github.com/flutter/plugins/pull/3300) [share] Update README.md (cla: yes, p: share, submit queue)
[3305](https://github.com/flutter/plugins/pull/3305) [quick_actions] Update "eponymous concept" link. (cla: yes, p: quick_actions)
[3330](https://github.com/flutter/plugins/pull/3330) [path_provider_linux] Migrate to null safety (cla: yes, nnbd, p: path_provider, platform-linux)
[3333](https://github.com/flutter/plugins/pull/3333) [url_launcher] Fix PlatformException introduced in nnbd release (cla: yes, nnbd, p: url_launcher)
[3381](https://github.com/flutter/plugins/pull/3381) [ios_platform_images] Migrate to null safety (cla: yes, nnbd, p: ios_platform_images)
[3398](https://github.com/flutter/plugins/pull/3398) [package_info] Migrate to null safety (cla: yes, nnbd, p: package_info)
[3421](https://github.com/flutter/plugins/pull/3421) [quick_actions] Migrate to null safety (cla: yes, nnbd, p: quick_actions)
[3423](https://github.com/flutter/plugins/pull/3423) [sensors] Migrate to null safety (cla: yes, nnbd, p: sensors)
[3424](https://github.com/flutter/plugins/pull/3424) [wifi_info_flutter] Migrate the platform interface to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3425](https://github.com/flutter/plugins/pull/3425) [wifi_info_flutter] Migrate to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3438](https://github.com/flutter/plugins/pull/3438) Clean up CODEOWNERS (cla: yes)
[3451](https://github.com/flutter/plugins/pull/3451) [file_selector_platform_interface]: Verify that extensions don't have leading dots. (cla: yes, p: file_selector, waiting for tree to go green)
[3452](https://github.com/flutter/plugins/pull/3452) [cross_file] Migrate to null-safety. (cla: yes, p: cross_file)
[3458](https://github.com/flutter/plugins/pull/3458) [camera] Clockwise rotation of focus point in android (cla: yes, p: camera, platform-android)
[3460](https://github.com/flutter/plugins/pull/3460) Migrate path_provider to null safety. (cla: yes, nnbd, p: path_provider)
[3461](https://github.com/flutter/plugins/pull/3461) [ci][image_picker][webviews_flutter] enable Xcode 12 (cla: yes, p: image_picker, p: webview_flutter, waiting for tree to go green)
[3466](https://github.com/flutter/plugins/pull/3466) Migrate shared_preferences_platform_interfaces to null safety (cla: yes, p: shared_preferences)
[3467](https://github.com/flutter/plugins/pull/3467) [image_picker_platform_interface] fix test asset file location (cla: yes, p: cross_file, p: image_picker)
[3468](https://github.com/flutter/plugins/pull/3468) Revert "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3469](https://github.com/flutter/plugins/pull/3469) Reland "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3470](https://github.com/flutter/plugins/pull/3470) [ci] fix ci failure on ios builds (cla: yes)
[3472](https://github.com/flutter/plugins/pull/3472) [camera] Fix example reference in camera's doc (cla: yes, p: camera)
[3473](https://github.com/flutter/plugins/pull/3473) [local_auth] Fix incorrect switch fallthrough (cla: yes, p: local_auth)
[3475](https://github.com/flutter/plugins/pull/3475) [url_launcher] Update result to `True` when the url was loaded successfully. (cla: yes, p: url_launcher, platform-ios)
[3476](https://github.com/flutter/plugins/pull/3476) [url_launcher_web] Fix Link misalignment issue (cla: yes, p: url_launcher)
[3478](https://github.com/flutter/plugins/pull/3478) [package_info] Register IntegrationTestPlugin in the example app. (cla: yes, p: package_info)
[3480](https://github.com/flutter/plugins/pull/3480) [integration_test] Fix tests from changes to `flutter test` machine output (cla: yes, p: integration_test)
[3481](https://github.com/flutter/plugins/pull/3481) [shared_preferences] Removed deprecated AsyncTask API (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3484](https://github.com/flutter/plugins/pull/3484) Remove amirh from CODEOWNERS (cla: yes, waiting for tree to go green)
[3485](https://github.com/flutter/plugins/pull/3485) [path_provider_windows] Resolve FFI stabilization changes (cla: yes, p: path_provider)
[3487](https://github.com/flutter/plugins/pull/3487) Automatically add platform labels (cla: yes)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3491](https://github.com/flutter/plugins/pull/3491) Remove Dart stubs from macOS plugins (cla: yes, p: connectivity, p: path_provider)
[3492](https://github.com/flutter/plugins/pull/3492) [image_picker_platform_interface] migrate to nnbd (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3493](https://github.com/flutter/plugins/pull/3493) Add plugin issue query to README (cla: yes, waiting for tree to go green)
[3494](https://github.com/flutter/plugins/pull/3494) [in_app_purchases] Remove TypeMatcher reference (cla: yes, p: in_app_purchase)
[3495](https://github.com/flutter/plugins/pull/3495) Remove cyanglaz from CODEOWNER: google_sign_in, connectivity, package_info, video_player (cla: yes, waiting for tree to go green)
[3496](https://github.com/flutter/plugins/pull/3496) [camera] Revert compileSdkVersion back to 29 (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3497](https://github.com/flutter/plugins/pull/3497) [camera_platform_interface] Migrate to null safety (cla: yes, nnbd, p: camera)
[3498](https://github.com/flutter/plugins/pull/3498) [path_provider] Update macOS for NNBD (cla: yes, nnbd, p: path_provider, platform-macos)
[3499](https://github.com/flutter/plugins/pull/3499) [android_alarm_manager] Migrated android_alarm_manager to support null safety #75233 (cla: yes, nnbd, p: android_alarm_manager)
[3500](https://github.com/flutter/plugins/pull/3500) [google_maps_flutter_platform_interface ]fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3501](https://github.com/flutter/plugins/pull/3501) Merge upcoming camera updates (cla: yes, p: camera)
[3502](https://github.com/flutter/plugins/pull/3502) Run pub global activate before pub global run (cla: yes)
[3503](https://github.com/flutter/plugins/pull/3503) [camera] Removed obsolete example folder from camera root (cla: yes, p: camera, platform-android)
[3505](https://github.com/flutter/plugins/pull/3505) [shared_preferences] Update macOS for NNBD (cla: yes, nnbd, p: shared_preferences, platform-macos)
[3506](https://github.com/flutter/plugins/pull/3506) Run activate before run (cla: yes)
[3507](https://github.com/flutter/plugins/pull/3507) [video_player] Update video_player_platform_interface to latest pigeon (cla: yes, p: video_player)
[3509](https://github.com/flutter/plugins/pull/3509) [file_selector_platform_interface] File selector nnbd (cla: yes, nnbd, p: file_selector, platform-web)
[3511](https://github.com/flutter/plugins/pull/3511) Add a note about Plus plugins to CONTRIBUTING.md (cla: yes)
[3512](https://github.com/flutter/plugins/pull/3512) [google_maps_flutter] fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3513](https://github.com/flutter/plugins/pull/3513) Update to ffi 0.3.0-nullsafety.1 (cla: yes, p: path_provider, platform-windows)
[3515](https://github.com/flutter/plugins/pull/3515) Remove stray dependency (cla: yes, p: shared_preferences, platform-windows)
[3516](https://github.com/flutter/plugins/pull/3516) [shared_preferences_windows]-Migrate to null safety (cla: yes, nnbd, p: shared_preferences, platform-windows)
[3518](https://github.com/flutter/plugins/pull/3518) [camera_platform_interface] Added stopRecordingVideo (cla: yes, p: camera)
[3521](https://github.com/flutter/plugins/pull/3521) Add section about how to use Material components in an app using WebView (cla: yes, p: webview_flutter)
[3522](https://github.com/flutter/plugins/pull/3522) [url_launcher_web] Migrate to null-safety (cla: yes, nnbd, p: url_launcher, platform-web)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3524](https://github.com/flutter/plugins/pull/3524) [image_picker] Migrate to null-safety (cla: yes, nnbd, p: image_picker)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3527](https://github.com/flutter/plugins/pull/3527) Add plugin tools as a git submodule and depend on it directly (cla: yes)
[3528](https://github.com/flutter/plugins/pull/3528) [file_selector_web] Fix typo in pubspec. (cla: yes, p: file_selector, platform-web)
[3530](https://github.com/flutter/plugins/pull/3530) [camera_platform_interface] Migrate to null safety (cla: yes, p: camera)
[3532](https://github.com/flutter/plugins/pull/3532) Add post merge labeler (cla: yes)
[3533](https://github.com/flutter/plugins/pull/3533) [camera] NNBD migration of the camera plugin (cla: yes, p: camera, platform-ios)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3535](https://github.com/flutter/plugins/pull/3535) [image_picker] Migrate image_picker_web to null-safety (cla: yes, p: image_picker, platform-web)
[3536](https://github.com/flutter/plugins/pull/3536) [video_player] Update video_player_web to point to new video_player_interface (cla: yes, p: video_player, platform-web)
[3537](https://github.com/flutter/plugins/pull/3537) [camera] Fixes crash on takePicture() (cla: yes, p: camera, platform-android)
[3538](https://github.com/flutter/plugins/pull/3538) Enable CI tests on beta (cla: yes)
[3539](https://github.com/flutter/plugins/pull/3539) [google_maps_flutter] Migrate platform interface to null safety (cla: yes, p: google_maps_flutter)
[3540](https://github.com/flutter/plugins/pull/3540) Bump ffi dependencies (cla: yes, p: path_provider, platform-windows)
[3541](https://github.com/flutter/plugins/pull/3541) [path_provider] Update Windows implementation version (cla: yes, p: path_provider)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3543](https://github.com/flutter/plugins/pull/3543) [plugin_platform_interface] Migrate to v2 stable, null-safe (cla: yes, nnbd, p: plugin_platform_interface)
[3544](https://github.com/flutter/plugins/pull/3544) Move plugin tools code (cla: yes)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3546](https://github.com/flutter/plugins/pull/3546) [video_player] Update video_player readme to change sample video to https (cla: yes, documentation, p: video_player)
[3547](https://github.com/flutter/plugins/pull/3547) [google_maps_flutter] Fix CameraPosition regression (cla: yes, p: google_maps_flutter)
[3548](https://github.com/flutter/plugins/pull/3548) [google_maps_flutter] Migrate to NNBD (cla: yes, nnbd, p: google_maps_flutter)
[3550](https://github.com/flutter/plugins/pull/3550) [file_selector_web] Migrated to null-safety (cla: yes, nnbd, p: file_selector, platform-web)
[3552](https://github.com/flutter/plugins/pull/3552) Fix the build-all exclusion list (cla: yes)
[3554](https://github.com/flutter/plugins/pull/3554) [file_selector_web] update documentation #76067 (cla: yes, p: file_selector, platform-web)
[3555](https://github.com/flutter/plugins/pull/3555) [in_app_purchase] Migrate to NNBD (cla: yes, nnbd, p: in_app_purchase, platform-ios)
[3556](https://github.com/flutter/plugins/pull/3556) Publish check (cla: yes)
[3557](https://github.com/flutter/plugins/pull/3557) [url_launcher] Re-endorse null-safe web implementation. (cla: yes, nnbd, p: url_launcher)
[3558](https://github.com/flutter/plugins/pull/3558) [camera] Added timeout to Android pre-capture sequence (cla: yes, p: camera, platform-android)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3560](https://github.com/flutter/plugins/pull/3560) Publish check ignores prerelease sdk (cla: yes)
[3561](https://github.com/flutter/plugins/pull/3561) [video_player] Ignore setting mixWithOthers in web (cla: yes, p: video_player, platform-web)
[3562](https://github.com/flutter/plugins/pull/3562) [camera] Solves delay when using the zoom feature on iOS. (cla: yes, p: camera, platform-ios)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3565](https://github.com/flutter/plugins/pull/3565) [shared_preferences] fix crash when list type is dynaimc (cla: yes, nnbd, p: shared_preferences, waiting for tree to go green)
[3566](https://github.com/flutter/plugins/pull/3566) [image_picker_for_web] Add doc comments to point out that some arguments aren't supported on the web (cla: yes, p: image_picker, platform-web)
[3568](https://github.com/flutter/plugins/pull/3568) [path_provider] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: path_provider)
[3569](https://github.com/flutter/plugins/pull/3569) [flutter_plugin_android_lifecycle] Bump version for NNBD stable (cla: yes, nnbd, p: flutter_plugin_android_lifecycle)
[3570](https://github.com/flutter/plugins/pull/3570) [url_launcher] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: url_launcher)
[3571](https://github.com/flutter/plugins/pull/3571) [package_info] Bump version for NNBD stable (cla: yes, nnbd, p: package_info, platform-macos)
[3573](https://github.com/flutter/plugins/pull/3573) [image_picker_platform_interface] Bump NNBD version to stable (cla: yes, nnbd, p: image_picker)
[3574](https://github.com/flutter/plugins/pull/3574) [video_player_web] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, platform-web)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3576](https://github.com/flutter/plugins/pull/3576) [flutter_plugin_android_lifecycle-sdk] Update Flutter SDK constraint (cla: yes, p: flutter_plugin_android_lifecycle, waiting for tree to go green)
[3578](https://github.com/flutter/plugins/pull/3578) [video_player_platform_interface] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, waiting for tree to go green)
[3579](https://github.com/flutter/plugins/pull/3579) [image_picker] NNBD stable (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3580](https://github.com/flutter/plugins/pull/3580) [image_picker] use nnbd version of deps to resolve ci failure (cla: yes, nnbd, p: image_picker)
[3582](https://github.com/flutter/plugins/pull/3582) [path_provider] Update to stable NNBD (cla: yes, nnbd, p: path_provider)
[3583](https://github.com/flutter/plugins/pull/3583) [url_launcher] Fix SDK copypasta in platform interface (cla: yes, nnbd, p: url_launcher)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3585](https://github.com/flutter/plugins/pull/3585) [connectivity_platform_interface] nnbd stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3586](https://github.com/flutter/plugins/pull/3586) [shared_preferences] Bump version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3587](https://github.com/flutter/plugins/pull/3587) [battery] Bump platform version to NNBD stable (cla: yes, nnbd, p: battery)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3589](https://github.com/flutter/plugins/pull/3589) [sensors] Update to NNBD stable (cla: yes, nnbd, p: sensors)
[3590](https://github.com/flutter/plugins/pull/3590) [google_maps_flutter] fixed a small bug in example app. (cla: yes, p: google_maps_flutter)
[3591](https://github.com/flutter/plugins/pull/3591) [camera] Fix iOS rotation issue (cla: yes, p: camera, platform-ios, waiting for tree to go green)
[3592](https://github.com/flutter/plugins/pull/3592) [camera] Fix example from README.md (cla: yes, p: camera, waiting for tree to go green)
[3593](https://github.com/flutter/plugins/pull/3593) [cross_file] Stable null safety release (cla: yes, nnbd, p: cross_file)
[3594](https://github.com/flutter/plugins/pull/3594) [battery] Bump version for NNBD stable (cla: yes, nnbd, p: battery)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3596](https://github.com/flutter/plugins/pull/3596) [connectivity] null safety stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3597](https://github.com/flutter/plugins/pull/3597) [device_info_platform_interface] null safety stable release (cla: yes, nnbd, p: device_info)
[3598](https://github.com/flutter/plugins/pull/3598) [google_maps_flutter] Bump platform interface version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter)
[3599](https://github.com/flutter/plugins/pull/3599) [connectivity_macos] fix version (cla: yes, nnbd, p: connectivity, platform-macos)
[3600](https://github.com/flutter/plugins/pull/3600) [share] Bump version for NNBD stable (cla: yes, nnbd, p: share)
[3601](https://github.com/flutter/plugins/pull/3601) [android_intent] Bump version for NNBD stable (cla: yes, nnbd, p: android_intent)
[3602](https://github.com/flutter/plugins/pull/3602) [shared_preferences] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3603](https://github.com/flutter/plugins/pull/3603) [url_launcher] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: url_launcher)
[3604](https://github.com/flutter/plugins/pull/3604) [connectivity_macos] fix flutter version constraint (cla: yes, p: connectivity, platform-macos)
[3605](https://github.com/flutter/plugins/pull/3605) [file_selector_platform_interface] null safety stable release (cla: yes, nnbd, p: file_selector)
[3606](https://github.com/flutter/plugins/pull/3606) Move plugin tool tests over (cla: yes)
[3607](https://github.com/flutter/plugins/pull/3607) [android_intent] Fix Flutter SDK version (cla: yes, nnbd, p: android_intent)
[3608](https://github.com/flutter/plugins/pull/3608) [android_alarm_manager] Bump version for NNBD stable (cla: yes, nnbd, p: android_alarm_manager)
[3609](https://github.com/flutter/plugins/pull/3609) [device_info_platform_interface] handle null value from method channel (cla: yes, nnbd, p: device_info)
[3610](https://github.com/flutter/plugins/pull/3610) [camera_platform_interface] Stable null safety release. (cla: yes, nnbd, p: camera)
[3614](https://github.com/flutter/plugins/pull/3614) [espresso] Update SDK requirement for null-safety (cla: yes, nnbd, p: espresso, waiting for tree to go green)
[3615](https://github.com/flutter/plugins/pull/3615) [local_auth] Bump version for NNBD stable (cla: yes, nnbd, p: local_auth)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3617](https://github.com/flutter/plugins/pull/3617) [google_sign_in] Bump platform interface version for NNBD stable (cla: yes, p: google_sign_in)
[3618](https://github.com/flutter/plugins/pull/3618) [quick_action] null safety stable release (cla: yes, p: quick_actions, waiting for tree to go green)
[3619](https://github.com/flutter/plugins/pull/3619) [webview_flutter] null safety stable release (cla: yes, p: webview_flutter)
[3620](https://github.com/flutter/plugins/pull/3620) [wifi_info_flutter_platform_interface] null safety stable release (cla: yes, nnbd, p: wifi_info_flutter)
[3621](https://github.com/flutter/plugins/pull/3621) [quick_action] fix delegate methods not called on iOS (cla: yes, p: quick_actions, platform-ios, waiting for tree to go green)
[3622](https://github.com/flutter/plugins/pull/3622) [google_sign_in_web] Ignore analyzer checks in generated files. (cla: yes, p: google_sign_in, platform-web)
[3623](https://github.com/flutter/plugins/pull/3623) [google_maps_flutter] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter, waiting for tree to go green)
[3624](https://github.com/flutter/plugins/pull/3624) [video_player] Bump app-facing version for NNBD stable (cla: yes, p: video_player)
[3625](https://github.com/flutter/plugins/pull/3625) [google_maps_flutter] embedded_views_preview not required since v1.0.0 (cla: yes, p: google_maps_flutter, platform-ios)
[3626](https://github.com/flutter/plugins/pull/3626) [device_info] null safety stable (cla: yes, nnbd, p: device_info)
[3627](https://github.com/flutter/plugins/pull/3627) [wifi_info_flutter] null safety stable (cla: yes, nnbd, p: wifi_info_flutter)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3629](https://github.com/flutter/plugins/pull/3629) [cross_file] Fix base class nullability (cla: yes, p: cross_file)
[3630](https://github.com/flutter/plugins/pull/3630) [file_selector] Return a non-null value from getSavePath on web (cla: yes, p: file_selector, platform-web, waiting for tree to go green)
[3631](https://github.com/flutter/plugins/pull/3631) [file_selector] Migrate to null safety (cla: yes, nnbd, p: file_selector)
[3632](https://github.com/flutter/plugins/pull/3632) set ci runs on master and enable integration test on android alarm manager (cla: yes, p: android_alarm_manager)
[3633](https://github.com/flutter/plugins/pull/3633) Make executor an instance property (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3634](https://github.com/flutter/plugins/pull/3634) Fix Cirrus script for firebase testlab tests (cla: yes)
[3635](https://github.com/flutter/plugins/pull/3635) [image_picker_for_web] Bump version for NNBD stable (cla: yes, p: image_picker, platform-web, waiting for tree to go green)
[3636](https://github.com/flutter/plugins/pull/3636) [in_app_purchase] migrate playing billing library to v3 (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3637](https://github.com/flutter/plugins/pull/3637) [google_sign_in] Bump app-facing version for NNBD stable (cla: yes, p: google_sign_in)
[3639](https://github.com/flutter/plugins/pull/3639) [shared_preferences] Don't create additional Handler when method channel is called. (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3641](https://github.com/flutter/plugins/pull/3641) [camera] Stable release for null safety. (cla: yes, nnbd, p: camera)
[3642](https://github.com/flutter/plugins/pull/3642) [extension_google_sign_in_as_googleapis_auth] Migrate to null safety (cla: yes, p: google_sign_in)
[3643](https://github.com/flutter/plugins/pull/3643) [file_selector] Endorse web (cla: yes, p: file_selector)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3645](https://github.com/flutter/plugins/pull/3645) [connectivity] migrate unit tests to null safety (cla: yes, nnbd, p: connectivity)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3647](https://github.com/flutter/plugins/pull/3647) Update pull_request_label.yml to make actions pointing to refs (cla: yes)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3652](https://github.com/flutter/plugins/pull/3652) [connectivity_for_web] Migration to null-safety. (cla: yes, p: connectivity, platform-web, waiting for tree to go green)
[3653](https://github.com/flutter/plugins/pull/3653) Adopt Xcode 12 for podspec lints (cla: yes)
[3654](https://github.com/flutter/plugins/pull/3654) [in_app_purchase] fix plugin version (cla: yes, p: in_app_purchase)
[3655](https://github.com/flutter/plugins/pull/3655) Bring HTML inputs into view automatically (cla: yes, p: webview_flutter, platform-android)
[3657](https://github.com/flutter/plugins/pull/3657) [url_launcher] Migrate unit tests to NNBD (cla: yes, p: url_launcher)
[3658](https://github.com/flutter/plugins/pull/3658) [device_info] Enable NNBD for unit test (cla: yes, p: device_info)
[3659](https://github.com/flutter/plugins/pull/3659) [android_intent] move unit test to nullsafety (cla: yes, p: android_intent, waiting for tree to go green)
[3660](https://github.com/flutter/plugins/pull/3660) [share] Migrate unit tests to null-safety. (cla: yes, p: share, waiting for tree to go green)
[3661](https://github.com/flutter/plugins/pull/3661) Remove unused plugin (integration_test_macos) (cla: yes, p: integration_test, platform-macos, waiting for tree to go green)
[3662](https://github.com/flutter/plugins/pull/3662) [google_maps_flutter_web] update min flutter sdk version to 1.20.0 (cla: yes, p: google_maps_flutter, platform-web, waiting for tree to go green)
[3663](https://github.com/flutter/plugins/pull/3663) [image_picker] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: image_picker, platform-ios)
[3664](https://github.com/flutter/plugins/pull/3664) [webview_flutter] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: webview_flutter, platform-ios)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3666](https://github.com/flutter/plugins/pull/3666) Reorder the checkboxes in the PR template (cla: yes)
[3667](https://github.com/flutter/plugins/pull/3667) Run static analyzer during xctest (cla: yes)
[3668](https://github.com/flutter/plugins/pull/3668) [video_player] fixed misleading size and aspect ratio documentation (cla: yes, p: video_player, waiting for tree to go green)
[3669](https://github.com/flutter/plugins/pull/3669) [Video_Player] Remove the deprecated API reference. (cla: yes, p: video_player, platform-android, waiting for tree to go green)
[3671](https://github.com/flutter/plugins/pull/3671) [video_player] add http headers (cla: yes, p: video_player, platform-android, platform-ios)
[3672](https://github.com/flutter/plugins/pull/3672) [path_provider] Make a 0.0.5 for Dart 2.12 compat (cla: yes, p: path_provider, platform-windows)
[3673](https://github.com/flutter/plugins/pull/3673) [google_maps_flutter_web] Make google_maps_flutter_web work with latest plugins (cla: yes, p: google_maps_flutter, platform-web)
[3674](https://github.com/flutter/plugins/pull/3674) Update CI config for Flutter 2 (cla: yes, p: wifi_info_flutter, platform-ios)
[3675](https://github.com/flutter/plugins/pull/3675) [google_maps_flutter_web] Move integration tests to example. (cla: yes, p: google_maps_flutter, platform-web)
[3676](https://github.com/flutter/plugins/pull/3676) [image_picker] fix flutter/flutter#71927 (cla: yes, p: image_picker, platform-ios, waiting for tree to go green)
[3678](https://github.com/flutter/plugins/pull/3678) [tool] Improve check version ci so that it enforces the version in CHANGELOG and pubspec matches. (cla: yes, waiting for tree to go green)
[3679](https://github.com/flutter/plugins/pull/3679) [google_maps_flutter_web] Downgrade mockito in example app. (cla: yes, p: google_maps_flutter, platform-web)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3684](https://github.com/flutter/plugins/pull/3684) [shared_preferences] Fix concurrent modification of the shared preferences on Android (cla: yes, p: shared_preferences, platform-android)
[3685](https://github.com/flutter/plugins/pull/3685) [image_picker] Implemented 2860 and added Unit Test to test functionality (cla: yes, p: image_picker, platform-android, waiting for tree to go green)
[3686](https://github.com/flutter/plugins/pull/3686) [google_sign_in] Updates google_sign_in_platform_interfaces adding parametrized `clientId` (cla: yes, p: google_sign_in)
[3689](https://github.com/flutter/plugins/pull/3689) [extension_google_sign_in_as_googleapis_auth] Update import (cla: yes, p: google_sign_in, waiting for tree to go green)
[3690](https://github.com/flutter/plugins/pull/3690) [google_sign_in] fix test (cla: yes, p: google_sign_in)
[3692](https://github.com/flutter/plugins/pull/3692) Skip pod lint tests (cla: yes)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3697](https://github.com/flutter/plugins/pull/3697) Streamline CI setup, and reenable macOS credits (cla: yes)
[3698](https://github.com/flutter/plugins/pull/3698) [cross_file] Delete. (cla: yes, p: cross_file)
[3700](https://github.com/flutter/plugins/pull/3700) Skip flutter upgrade for pod linting Cirrus task (cla: yes)
[3702](https://github.com/flutter/plugins/pull/3702) [video_player_platform_interface] add http headers (cla: yes, p: video_player)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3705](https://github.com/flutter/plugins/pull/3705) [shared_preferences] Fix missing declaration of windows' default_package (cla: yes, p: shared_preferences)
[3708](https://github.com/flutter/plugins/pull/3708) [connectivity] re-endorse connectivity_for_web (cla: yes, p: connectivity)
[3711](https://github.com/flutter/plugins/pull/3711) [ci] Add libgcrypt to Docker image. (cla: yes)
[3713](https://github.com/flutter/plugins/pull/3713) [video_player]Update README.me (cla: yes, p: video_player, waiting for tree to go green)
[3717](https://github.com/flutter/plugins/pull/3717) [image_picker] endorse image_picker_for_web in image_picker plugin (cla: yes, p: image_picker)
[3718](https://github.com/flutter/plugins/pull/3718) [google_maps_flutter_platform_interface] Mark constructors as const for ids (cla: yes, p: google_maps_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3726](https://github.com/flutter/plugins/pull/3726) [google_maps_flutter_web] Migrate to null-safety. (cla: yes, p: google_maps_flutter, platform-web)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3731](https://github.com/flutter/plugins/pull/3731) [in_app_purchase] improve readme (cla: yes, p: in_app_purchase, waiting for tree to go green)
[3732](https://github.com/flutter/plugins/pull/3732) [in_app_purchase] moved android iap unit tests (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3733](https://github.com/flutter/plugins/pull/3733) Use flutter gcp project for linux tasks. (cla: yes)
[3734](https://github.com/flutter/plugins/pull/3734) [quick_actions] 1/3 Moved quickactions to a subfolder for federated architecture (cla: yes, p: quick_actions, platform-android, platform-ios)
[3735](https://github.com/flutter/plugins/pull/3735) [quick_actions] 2/3 Quick actions federated platform interface (cla: yes, p: quick_actions, platform-android, platform-ios)
[3736](https://github.com/flutter/plugins/pull/3736) [quick_actions] 3/3 Quick actions federated migration (cla: yes, p: quick_actions, waiting for tree to go green)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3738](https://github.com/flutter/plugins/pull/3738) Enable web integration tests in CI (cla: yes, waiting for tree to go green)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3741](https://github.com/flutter/plugins/pull/3741) [quick_actions_platform_interface] Update license file (cla: yes, p: quick_actions)
[3742](https://github.com/flutter/plugins/pull/3742) [flutter_plugin_tools] Also look for Java tests in plugin path (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3745](https://github.com/flutter/plugins/pull/3745) [quick_actions] example fix (cla: yes, p: quick_actions, waiting for tree to go green)
[3746](https://github.com/flutter/plugins/pull/3746) Make sure androidx.lifecycle classes aren't R8'ed away when using flutter_plugin_android_lifecycle (cla: yes, p: flutter_plugin_android_lifecycle, platform-android)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3748](https://github.com/flutter/plugins/pull/3748) [ci] Do not use empty exclude directories in analyze_command. (cla: yes)
[3749](https://github.com/flutter/plugins/pull/3749) [in_app_purchase] Fixed some minor spelling mistakes in README (cla: yes, p: in_app_purchase)
[3750](https://github.com/flutter/plugins/pull/3750) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3751](https://github.com/flutter/plugins/pull/3751) Revert "[in_app_purchase] Fix error message when trying to consume purchase on iOS" (cla: yes, p: in_app_purchase)
[3752](https://github.com/flutter/plugins/pull/3752) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3753](https://github.com/flutter/plugins/pull/3753) [in_app_purchase] Update instructions on setting up example App (cla: yes, p: in_app_purchase)
[3754](https://github.com/flutter/plugins/pull/3754) [google_maps_flutter] Fix handling of non-nullable invokeMethod return types (cla: yes, p: google_maps_flutter)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3756](https://github.com/flutter/plugins/pull/3756) Drop redundant question marks used with dynamic. (cla: yes, p: google_sign_in, p: in_app_purchase, platform-web)
[3757](https://github.com/flutter/plugins/pull/3757) Drop redundant ? for dynamic (cla: yes, p: google_sign_in, platform-web)
[3760](https://github.com/flutter/plugins/pull/3760) Add tests for publish check tool command (cla: yes)
[3762](https://github.com/flutter/plugins/pull/3762) Capitalise Platform class in README (cla: yes, p: android_intent)
[3765](https://github.com/flutter/plugins/pull/3765) [webview_flutter] Fix scroll bar position for Android non-hybrid WebViews (cla: yes, p: webview_flutter)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
[3768](https://github.com/flutter/plugins/pull/3768) [google_maps_flutter] Fix NNBD migration mistake in example (cla: yes, p: google_maps_flutter)
[3769](https://github.com/flutter/plugins/pull/3769) let google_maps_flutter_web version solve for older mockito (cla: yes, p: google_maps_flutter, platform-web)
[3771](https://github.com/flutter/plugins/pull/3771) [google_maps_flutter] Fix TileOverlay cloning (cla: yes, p: google_maps_flutter)
[3772](https://github.com/flutter/plugins/pull/3772) [in_app_purchase] Configured example app to use StoreKit Testing on iOS 14 (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3773](https://github.com/flutter/plugins/pull/3773) Update build-all test for null-safe template (cla: yes)
[3777](https://github.com/flutter/plugins/pull/3777) Switch script/tools over to the new analysis options (cla: yes)
[3778](https://github.com/flutter/plugins/pull/3778) [local_auth] Fix callback thread handling (cla: yes, p: local_auth, platform-ios)
[3779](https://github.com/flutter/plugins/pull/3779) [tool] refactor publish plugin command (cla: yes, waiting for tree to go green)
[3784](https://github.com/flutter/plugins/pull/3784) [google_maps_flutter] Reword README (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3786](https://github.com/flutter/plugins/pull/3786) [local_auth] Update Jetpack dependencies (cla: yes, p: local_auth, platform-android)
[3787](https://github.com/flutter/plugins/pull/3787) [google_maps_flutter] remove unnecessary test (cla: yes, p: google_maps_flutter)
[3790](https://github.com/flutter/plugins/pull/3790) [google_map_flutter] fix version (cla: yes, p: google_maps_flutter)
[3791](https://github.com/flutter/plugins/pull/3791) [flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (cla: yes, p: webview_flutter, platform-ios, waiting for tree to go green)
### nnbd - 73 pull request(s)
[3330](https://github.com/flutter/plugins/pull/3330) [path_provider_linux] Migrate to null safety (cla: yes, nnbd, p: path_provider, platform-linux)
[3333](https://github.com/flutter/plugins/pull/3333) [url_launcher] Fix PlatformException introduced in nnbd release (cla: yes, nnbd, p: url_launcher)
[3381](https://github.com/flutter/plugins/pull/3381) [ios_platform_images] Migrate to null safety (cla: yes, nnbd, p: ios_platform_images)
[3398](https://github.com/flutter/plugins/pull/3398) [package_info] Migrate to null safety (cla: yes, nnbd, p: package_info)
[3421](https://github.com/flutter/plugins/pull/3421) [quick_actions] Migrate to null safety (cla: yes, nnbd, p: quick_actions)
[3423](https://github.com/flutter/plugins/pull/3423) [sensors] Migrate to null safety (cla: yes, nnbd, p: sensors)
[3424](https://github.com/flutter/plugins/pull/3424) [wifi_info_flutter] Migrate the platform interface to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3425](https://github.com/flutter/plugins/pull/3425) [wifi_info_flutter] Migrate to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3460](https://github.com/flutter/plugins/pull/3460) Migrate path_provider to null safety. (cla: yes, nnbd, p: path_provider)
[3492](https://github.com/flutter/plugins/pull/3492) [image_picker_platform_interface] migrate to nnbd (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3497](https://github.com/flutter/plugins/pull/3497) [camera_platform_interface] Migrate to null safety (cla: yes, nnbd, p: camera)
[3498](https://github.com/flutter/plugins/pull/3498) [path_provider] Update macOS for NNBD (cla: yes, nnbd, p: path_provider, platform-macos)
[3499](https://github.com/flutter/plugins/pull/3499) [android_alarm_manager] Migrated android_alarm_manager to support null safety #75233 (cla: yes, nnbd, p: android_alarm_manager)
[3505](https://github.com/flutter/plugins/pull/3505) [shared_preferences] Update macOS for NNBD (cla: yes, nnbd, p: shared_preferences, platform-macos)
[3509](https://github.com/flutter/plugins/pull/3509) [file_selector_platform_interface] File selector nnbd (cla: yes, nnbd, p: file_selector, platform-web)
[3516](https://github.com/flutter/plugins/pull/3516) [shared_preferences_windows]-Migrate to null safety (cla: yes, nnbd, p: shared_preferences, platform-windows)
[3522](https://github.com/flutter/plugins/pull/3522) [url_launcher_web] Migrate to null-safety (cla: yes, nnbd, p: url_launcher, platform-web)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3524](https://github.com/flutter/plugins/pull/3524) [image_picker] Migrate to null-safety (cla: yes, nnbd, p: image_picker)
[3543](https://github.com/flutter/plugins/pull/3543) [plugin_platform_interface] Migrate to v2 stable, null-safe (cla: yes, nnbd, p: plugin_platform_interface)
[3548](https://github.com/flutter/plugins/pull/3548) [google_maps_flutter] Migrate to NNBD (cla: yes, nnbd, p: google_maps_flutter)
[3550](https://github.com/flutter/plugins/pull/3550) [file_selector_web] Migrated to null-safety (cla: yes, nnbd, p: file_selector, platform-web)
[3555](https://github.com/flutter/plugins/pull/3555) [in_app_purchase] Migrate to NNBD (cla: yes, nnbd, p: in_app_purchase, platform-ios)
[3557](https://github.com/flutter/plugins/pull/3557) [url_launcher] Re-endorse null-safe web implementation. (cla: yes, nnbd, p: url_launcher)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3565](https://github.com/flutter/plugins/pull/3565) [shared_preferences] fix crash when list type is dynaimc (cla: yes, nnbd, p: shared_preferences, waiting for tree to go green)
[3568](https://github.com/flutter/plugins/pull/3568) [path_provider] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: path_provider)
[3569](https://github.com/flutter/plugins/pull/3569) [flutter_plugin_android_lifecycle] Bump version for NNBD stable (cla: yes, nnbd, p: flutter_plugin_android_lifecycle)
[3570](https://github.com/flutter/plugins/pull/3570) [url_launcher] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: url_launcher)
[3571](https://github.com/flutter/plugins/pull/3571) [package_info] Bump version for NNBD stable (cla: yes, nnbd, p: package_info, platform-macos)
[3573](https://github.com/flutter/plugins/pull/3573) [image_picker_platform_interface] Bump NNBD version to stable (cla: yes, nnbd, p: image_picker)
[3574](https://github.com/flutter/plugins/pull/3574) [video_player_web] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, platform-web)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3578](https://github.com/flutter/plugins/pull/3578) [video_player_platform_interface] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, waiting for tree to go green)
[3579](https://github.com/flutter/plugins/pull/3579) [image_picker] NNBD stable (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3580](https://github.com/flutter/plugins/pull/3580) [image_picker] use nnbd version of deps to resolve ci failure (cla: yes, nnbd, p: image_picker)
[3582](https://github.com/flutter/plugins/pull/3582) [path_provider] Update to stable NNBD (cla: yes, nnbd, p: path_provider)
[3583](https://github.com/flutter/plugins/pull/3583) [url_launcher] Fix SDK copypasta in platform interface (cla: yes, nnbd, p: url_launcher)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3585](https://github.com/flutter/plugins/pull/3585) [connectivity_platform_interface] nnbd stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3586](https://github.com/flutter/plugins/pull/3586) [shared_preferences] Bump version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3587](https://github.com/flutter/plugins/pull/3587) [battery] Bump platform version to NNBD stable (cla: yes, nnbd, p: battery)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3589](https://github.com/flutter/plugins/pull/3589) [sensors] Update to NNBD stable (cla: yes, nnbd, p: sensors)
[3593](https://github.com/flutter/plugins/pull/3593) [cross_file] Stable null safety release (cla: yes, nnbd, p: cross_file)
[3594](https://github.com/flutter/plugins/pull/3594) [battery] Bump version for NNBD stable (cla: yes, nnbd, p: battery)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3596](https://github.com/flutter/plugins/pull/3596) [connectivity] null safety stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3597](https://github.com/flutter/plugins/pull/3597) [device_info_platform_interface] null safety stable release (cla: yes, nnbd, p: device_info)
[3598](https://github.com/flutter/plugins/pull/3598) [google_maps_flutter] Bump platform interface version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter)
[3599](https://github.com/flutter/plugins/pull/3599) [connectivity_macos] fix version (cla: yes, nnbd, p: connectivity, platform-macos)
[3600](https://github.com/flutter/plugins/pull/3600) [share] Bump version for NNBD stable (cla: yes, nnbd, p: share)
[3601](https://github.com/flutter/plugins/pull/3601) [android_intent] Bump version for NNBD stable (cla: yes, nnbd, p: android_intent)
[3602](https://github.com/flutter/plugins/pull/3602) [shared_preferences] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3603](https://github.com/flutter/plugins/pull/3603) [url_launcher] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: url_launcher)
[3605](https://github.com/flutter/plugins/pull/3605) [file_selector_platform_interface] null safety stable release (cla: yes, nnbd, p: file_selector)
[3607](https://github.com/flutter/plugins/pull/3607) [android_intent] Fix Flutter SDK version (cla: yes, nnbd, p: android_intent)
[3608](https://github.com/flutter/plugins/pull/3608) [android_alarm_manager] Bump version for NNBD stable (cla: yes, nnbd, p: android_alarm_manager)
[3609](https://github.com/flutter/plugins/pull/3609) [device_info_platform_interface] handle null value from method channel (cla: yes, nnbd, p: device_info)
[3610](https://github.com/flutter/plugins/pull/3610) [camera_platform_interface] Stable null safety release. (cla: yes, nnbd, p: camera)
[3614](https://github.com/flutter/plugins/pull/3614) [espresso] Update SDK requirement for null-safety (cla: yes, nnbd, p: espresso, waiting for tree to go green)
[3615](https://github.com/flutter/plugins/pull/3615) [local_auth] Bump version for NNBD stable (cla: yes, nnbd, p: local_auth)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3620](https://github.com/flutter/plugins/pull/3620) [wifi_info_flutter_platform_interface] null safety stable release (cla: yes, nnbd, p: wifi_info_flutter)
[3623](https://github.com/flutter/plugins/pull/3623) [google_maps_flutter] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter, waiting for tree to go green)
[3626](https://github.com/flutter/plugins/pull/3626) [device_info] null safety stable (cla: yes, nnbd, p: device_info)
[3627](https://github.com/flutter/plugins/pull/3627) [wifi_info_flutter] null safety stable (cla: yes, nnbd, p: wifi_info_flutter)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3631](https://github.com/flutter/plugins/pull/3631) [file_selector] Migrate to null safety (cla: yes, nnbd, p: file_selector)
[3641](https://github.com/flutter/plugins/pull/3641) [camera] Stable release for null safety. (cla: yes, nnbd, p: camera)
[3645](https://github.com/flutter/plugins/pull/3645) [connectivity] migrate unit tests to null safety (cla: yes, nnbd, p: connectivity)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
### waiting for tree to go green - 67 pull request(s)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2606](https://github.com/flutter/plugins/pull/2606) Updated README.md typo (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2822](https://github.com/flutter/plugins/pull/2822) [in_app_purchase] Add support for InApp subscription upgrade/downgrade (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[2846](https://github.com/flutter/plugins/pull/2846) [in_app_purchase] Typos in comments (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2983](https://github.com/flutter/plugins/pull/2983) [local_auth] Unnecessary reassignment in example removed (cla: yes, p: local_auth, waiting for tree to go green)
[3252](https://github.com/flutter/plugins/pull/3252) [url_launcher] Update readme for URL schemes on iOS (cla: yes, p: url_launcher, waiting for tree to go green)
[3274](https://github.com/flutter/plugins/pull/3274) [in_app_purchase] presentCodeRedemptionSheet (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3451](https://github.com/flutter/plugins/pull/3451) [file_selector_platform_interface]: Verify that extensions don't have leading dots. (cla: yes, p: file_selector, waiting for tree to go green)
[3461](https://github.com/flutter/plugins/pull/3461) [ci][image_picker][webviews_flutter] enable Xcode 12 (cla: yes, p: image_picker, p: webview_flutter, waiting for tree to go green)
[3481](https://github.com/flutter/plugins/pull/3481) [shared_preferences] Removed deprecated AsyncTask API (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3484](https://github.com/flutter/plugins/pull/3484) Remove amirh from CODEOWNERS (cla: yes, waiting for tree to go green)
[3492](https://github.com/flutter/plugins/pull/3492) [image_picker_platform_interface] migrate to nnbd (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3493](https://github.com/flutter/plugins/pull/3493) Add plugin issue query to README (cla: yes, waiting for tree to go green)
[3495](https://github.com/flutter/plugins/pull/3495) Remove cyanglaz from CODEOWNER: google_sign_in, connectivity, package_info, video_player (cla: yes, waiting for tree to go green)
[3496](https://github.com/flutter/plugins/pull/3496) [camera] Revert compileSdkVersion back to 29 (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3500](https://github.com/flutter/plugins/pull/3500) [google_maps_flutter_platform_interface ]fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3512](https://github.com/flutter/plugins/pull/3512) [google_maps_flutter] fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3565](https://github.com/flutter/plugins/pull/3565) [shared_preferences] fix crash when list type is dynaimc (cla: yes, nnbd, p: shared_preferences, waiting for tree to go green)
[3576](https://github.com/flutter/plugins/pull/3576) [flutter_plugin_android_lifecycle-sdk] Update Flutter SDK constraint (cla: yes, p: flutter_plugin_android_lifecycle, waiting for tree to go green)
[3578](https://github.com/flutter/plugins/pull/3578) [video_player_platform_interface] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, waiting for tree to go green)
[3579](https://github.com/flutter/plugins/pull/3579) [image_picker] NNBD stable (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3585](https://github.com/flutter/plugins/pull/3585) [connectivity_platform_interface] nnbd stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3591](https://github.com/flutter/plugins/pull/3591) [camera] Fix iOS rotation issue (cla: yes, p: camera, platform-ios, waiting for tree to go green)
[3592](https://github.com/flutter/plugins/pull/3592) [camera] Fix example from README.md (cla: yes, p: camera, waiting for tree to go green)
[3596](https://github.com/flutter/plugins/pull/3596) [connectivity] null safety stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3614](https://github.com/flutter/plugins/pull/3614) [espresso] Update SDK requirement for null-safety (cla: yes, nnbd, p: espresso, waiting for tree to go green)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3618](https://github.com/flutter/plugins/pull/3618) [quick_action] null safety stable release (cla: yes, p: quick_actions, waiting for tree to go green)
[3621](https://github.com/flutter/plugins/pull/3621) [quick_action] fix delegate methods not called on iOS (cla: yes, p: quick_actions, platform-ios, waiting for tree to go green)
[3623](https://github.com/flutter/plugins/pull/3623) [google_maps_flutter] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter, waiting for tree to go green)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3630](https://github.com/flutter/plugins/pull/3630) [file_selector] Return a non-null value from getSavePath on web (cla: yes, p: file_selector, platform-web, waiting for tree to go green)
[3633](https://github.com/flutter/plugins/pull/3633) Make executor an instance property (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3635](https://github.com/flutter/plugins/pull/3635) [image_picker_for_web] Bump version for NNBD stable (cla: yes, p: image_picker, platform-web, waiting for tree to go green)
[3636](https://github.com/flutter/plugins/pull/3636) [in_app_purchase] migrate playing billing library to v3 (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3639](https://github.com/flutter/plugins/pull/3639) [shared_preferences] Don't create additional Handler when method channel is called. (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3652](https://github.com/flutter/plugins/pull/3652) [connectivity_for_web] Migration to null-safety. (cla: yes, p: connectivity, platform-web, waiting for tree to go green)
[3659](https://github.com/flutter/plugins/pull/3659) [android_intent] move unit test to nullsafety (cla: yes, p: android_intent, waiting for tree to go green)
[3660](https://github.com/flutter/plugins/pull/3660) [share] Migrate unit tests to null-safety. (cla: yes, p: share, waiting for tree to go green)
[3661](https://github.com/flutter/plugins/pull/3661) Remove unused plugin (integration_test_macos) (cla: yes, p: integration_test, platform-macos, waiting for tree to go green)
[3662](https://github.com/flutter/plugins/pull/3662) [google_maps_flutter_web] update min flutter sdk version to 1.20.0 (cla: yes, p: google_maps_flutter, platform-web, waiting for tree to go green)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3668](https://github.com/flutter/plugins/pull/3668) [video_player] fixed misleading size and aspect ratio documentation (cla: yes, p: video_player, waiting for tree to go green)
[3669](https://github.com/flutter/plugins/pull/3669) [Video_Player] Remove the deprecated API reference. (cla: yes, p: video_player, platform-android, waiting for tree to go green)
[3676](https://github.com/flutter/plugins/pull/3676) [image_picker] fix flutter/flutter#71927 (cla: yes, p: image_picker, platform-ios, waiting for tree to go green)
[3678](https://github.com/flutter/plugins/pull/3678) [tool] Improve check version ci so that it enforces the version in CHANGELOG and pubspec matches. (cla: yes, waiting for tree to go green)
[3685](https://github.com/flutter/plugins/pull/3685) [image_picker] Implemented 2860 and added Unit Test to test functionality (cla: yes, p: image_picker, platform-android, waiting for tree to go green)
[3689](https://github.com/flutter/plugins/pull/3689) [extension_google_sign_in_as_googleapis_auth] Update import (cla: yes, p: google_sign_in, waiting for tree to go green)
[3713](https://github.com/flutter/plugins/pull/3713) [video_player]Update README.me (cla: yes, p: video_player, waiting for tree to go green)
[3731](https://github.com/flutter/plugins/pull/3731) [in_app_purchase] improve readme (cla: yes, p: in_app_purchase, waiting for tree to go green)
[3732](https://github.com/flutter/plugins/pull/3732) [in_app_purchase] moved android iap unit tests (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3736](https://github.com/flutter/plugins/pull/3736) [quick_actions] 3/3 Quick actions federated migration (cla: yes, p: quick_actions, waiting for tree to go green)
[3738](https://github.com/flutter/plugins/pull/3738) Enable web integration tests in CI (cla: yes, waiting for tree to go green)
[3742](https://github.com/flutter/plugins/pull/3742) [flutter_plugin_tools] Also look for Java tests in plugin path (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3745](https://github.com/flutter/plugins/pull/3745) [quick_actions] example fix (cla: yes, p: quick_actions, waiting for tree to go green)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
[3772](https://github.com/flutter/plugins/pull/3772) [in_app_purchase] Configured example app to use StoreKit Testing on iOS 14 (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3779](https://github.com/flutter/plugins/pull/3779) [tool] refactor publish plugin command (cla: yes, waiting for tree to go green)
[3784](https://github.com/flutter/plugins/pull/3784) [google_maps_flutter] Reword README (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3791](https://github.com/flutter/plugins/pull/3791) [flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (cla: yes, p: webview_flutter, platform-ios, waiting for tree to go green)
### platform-web - 37 pull request(s)
[2835](https://github.com/flutter/plugins/pull/2835) Fix typo in image_picker_for_web README.md (cla: yes, p: image_picker, platform-web)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3509](https://github.com/flutter/plugins/pull/3509) [file_selector_platform_interface] File selector nnbd (cla: yes, nnbd, p: file_selector, platform-web)
[3522](https://github.com/flutter/plugins/pull/3522) [url_launcher_web] Migrate to null-safety (cla: yes, nnbd, p: url_launcher, platform-web)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3528](https://github.com/flutter/plugins/pull/3528) [file_selector_web] Fix typo in pubspec. (cla: yes, p: file_selector, platform-web)
[3535](https://github.com/flutter/plugins/pull/3535) [image_picker] Migrate image_picker_web to null-safety (cla: yes, p: image_picker, platform-web)
[3536](https://github.com/flutter/plugins/pull/3536) [video_player] Update video_player_web to point to new video_player_interface (cla: yes, p: video_player, platform-web)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3550](https://github.com/flutter/plugins/pull/3550) [file_selector_web] Migrated to null-safety (cla: yes, nnbd, p: file_selector, platform-web)
[3554](https://github.com/flutter/plugins/pull/3554) [file_selector_web] update documentation #76067 (cla: yes, p: file_selector, platform-web)
[3561](https://github.com/flutter/plugins/pull/3561) [video_player] Ignore setting mixWithOthers in web (cla: yes, p: video_player, platform-web)
[3566](https://github.com/flutter/plugins/pull/3566) [image_picker_for_web] Add doc comments to point out that some arguments aren't supported on the web (cla: yes, p: image_picker, platform-web)
[3574](https://github.com/flutter/plugins/pull/3574) [video_player_web] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, platform-web)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3622](https://github.com/flutter/plugins/pull/3622) [google_sign_in_web] Ignore analyzer checks in generated files. (cla: yes, p: google_sign_in, platform-web)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3630](https://github.com/flutter/plugins/pull/3630) [file_selector] Return a non-null value from getSavePath on web (cla: yes, p: file_selector, platform-web, waiting for tree to go green)
[3635](https://github.com/flutter/plugins/pull/3635) [image_picker_for_web] Bump version for NNBD stable (cla: yes, p: image_picker, platform-web, waiting for tree to go green)
[3652](https://github.com/flutter/plugins/pull/3652) [connectivity_for_web] Migration to null-safety. (cla: yes, p: connectivity, platform-web, waiting for tree to go green)
[3662](https://github.com/flutter/plugins/pull/3662) [google_maps_flutter_web] update min flutter sdk version to 1.20.0 (cla: yes, p: google_maps_flutter, platform-web, waiting for tree to go green)
[3673](https://github.com/flutter/plugins/pull/3673) [google_maps_flutter_web] Make google_maps_flutter_web work with latest plugins (cla: yes, p: google_maps_flutter, platform-web)
[3675](https://github.com/flutter/plugins/pull/3675) [google_maps_flutter_web] Move integration tests to example. (cla: yes, p: google_maps_flutter, platform-web)
[3679](https://github.com/flutter/plugins/pull/3679) [google_maps_flutter_web] Downgrade mockito in example app. (cla: yes, p: google_maps_flutter, platform-web)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3726](https://github.com/flutter/plugins/pull/3726) [google_maps_flutter_web] Migrate to null-safety. (cla: yes, p: google_maps_flutter, platform-web)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3756](https://github.com/flutter/plugins/pull/3756) Drop redundant question marks used with dynamic. (cla: yes, p: google_sign_in, p: in_app_purchase, platform-web)
[3757](https://github.com/flutter/plugins/pull/3757) Drop redundant ? for dynamic (cla: yes, p: google_sign_in, platform-web)
[3769](https://github.com/flutter/plugins/pull/3769) let google_maps_flutter_web version solve for older mockito (cla: yes, p: google_maps_flutter, platform-web)
### p: google_maps_flutter - 37 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3500](https://github.com/flutter/plugins/pull/3500) [google_maps_flutter_platform_interface ]fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3512](https://github.com/flutter/plugins/pull/3512) [google_maps_flutter] fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3539](https://github.com/flutter/plugins/pull/3539) [google_maps_flutter] Migrate platform interface to null safety (cla: yes, p: google_maps_flutter)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3547](https://github.com/flutter/plugins/pull/3547) [google_maps_flutter] Fix CameraPosition regression (cla: yes, p: google_maps_flutter)
[3548](https://github.com/flutter/plugins/pull/3548) [google_maps_flutter] Migrate to NNBD (cla: yes, nnbd, p: google_maps_flutter)
[3590](https://github.com/flutter/plugins/pull/3590) [google_maps_flutter] fixed a small bug in example app. (cla: yes, p: google_maps_flutter)
[3598](https://github.com/flutter/plugins/pull/3598) [google_maps_flutter] Bump platform interface version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter)
[3623](https://github.com/flutter/plugins/pull/3623) [google_maps_flutter] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter, waiting for tree to go green)
[3625](https://github.com/flutter/plugins/pull/3625) [google_maps_flutter] embedded_views_preview not required since v1.0.0 (cla: yes, p: google_maps_flutter, platform-ios)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3662](https://github.com/flutter/plugins/pull/3662) [google_maps_flutter_web] update min flutter sdk version to 1.20.0 (cla: yes, p: google_maps_flutter, platform-web, waiting for tree to go green)
[3673](https://github.com/flutter/plugins/pull/3673) [google_maps_flutter_web] Make google_maps_flutter_web work with latest plugins (cla: yes, p: google_maps_flutter, platform-web)
[3675](https://github.com/flutter/plugins/pull/3675) [google_maps_flutter_web] Move integration tests to example. (cla: yes, p: google_maps_flutter, platform-web)
[3679](https://github.com/flutter/plugins/pull/3679) [google_maps_flutter_web] Downgrade mockito in example app. (cla: yes, p: google_maps_flutter, platform-web)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3718](https://github.com/flutter/plugins/pull/3718) [google_maps_flutter_platform_interface] Mark constructors as const for ids (cla: yes, p: google_maps_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3726](https://github.com/flutter/plugins/pull/3726) [google_maps_flutter_web] Migrate to null-safety. (cla: yes, p: google_maps_flutter, platform-web)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3754](https://github.com/flutter/plugins/pull/3754) [google_maps_flutter] Fix handling of non-nullable invokeMethod return types (cla: yes, p: google_maps_flutter)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
[3768](https://github.com/flutter/plugins/pull/3768) [google_maps_flutter] Fix NNBD migration mistake in example (cla: yes, p: google_maps_flutter)
[3769](https://github.com/flutter/plugins/pull/3769) let google_maps_flutter_web version solve for older mockito (cla: yes, p: google_maps_flutter, platform-web)
[3771](https://github.com/flutter/plugins/pull/3771) [google_maps_flutter] Fix TileOverlay cloning (cla: yes, p: google_maps_flutter)
[3784](https://github.com/flutter/plugins/pull/3784) [google_maps_flutter] Reword README (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3787](https://github.com/flutter/plugins/pull/3787) [google_maps_flutter] remove unnecessary test (cla: yes, p: google_maps_flutter)
[3790](https://github.com/flutter/plugins/pull/3790) [google_map_flutter] fix version (cla: yes, p: google_maps_flutter)
### platform-android - 33 pull request(s)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2822](https://github.com/flutter/plugins/pull/2822) [in_app_purchase] Add support for InApp subscription upgrade/downgrade (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3234](https://github.com/flutter/plugins/pull/3234) [wifi_info_flutter] Check Permissions in Android O or higher (cla: yes, p: wifi_info_flutter, platform-android)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3458](https://github.com/flutter/plugins/pull/3458) [camera] Clockwise rotation of focus point in android (cla: yes, p: camera, platform-android)
[3481](https://github.com/flutter/plugins/pull/3481) [shared_preferences] Removed deprecated AsyncTask API (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3496](https://github.com/flutter/plugins/pull/3496) [camera] Revert compileSdkVersion back to 29 (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3503](https://github.com/flutter/plugins/pull/3503) [camera] Removed obsolete example folder from camera root (cla: yes, p: camera, platform-android)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3537](https://github.com/flutter/plugins/pull/3537) [camera] Fixes crash on takePicture() (cla: yes, p: camera, platform-android)
[3558](https://github.com/flutter/plugins/pull/3558) [camera] Added timeout to Android pre-capture sequence (cla: yes, p: camera, platform-android)
[3633](https://github.com/flutter/plugins/pull/3633) Make executor an instance property (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3636](https://github.com/flutter/plugins/pull/3636) [in_app_purchase] migrate playing billing library to v3 (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3639](https://github.com/flutter/plugins/pull/3639) [shared_preferences] Don't create additional Handler when method channel is called. (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3655](https://github.com/flutter/plugins/pull/3655) Bring HTML inputs into view automatically (cla: yes, p: webview_flutter, platform-android)
[3669](https://github.com/flutter/plugins/pull/3669) [Video_Player] Remove the deprecated API reference. (cla: yes, p: video_player, platform-android, waiting for tree to go green)
[3671](https://github.com/flutter/plugins/pull/3671) [video_player] add http headers (cla: yes, p: video_player, platform-android, platform-ios)
[3684](https://github.com/flutter/plugins/pull/3684) [shared_preferences] Fix concurrent modification of the shared preferences on Android (cla: yes, p: shared_preferences, platform-android)
[3685](https://github.com/flutter/plugins/pull/3685) [image_picker] Implemented 2860 and added Unit Test to test functionality (cla: yes, p: image_picker, platform-android, waiting for tree to go green)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3732](https://github.com/flutter/plugins/pull/3732) [in_app_purchase] moved android iap unit tests (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3734](https://github.com/flutter/plugins/pull/3734) [quick_actions] 1/3 Moved quickactions to a subfolder for federated architecture (cla: yes, p: quick_actions, platform-android, platform-ios)
[3735](https://github.com/flutter/plugins/pull/3735) [quick_actions] 2/3 Quick actions federated platform interface (cla: yes, p: quick_actions, platform-android, platform-ios)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3742](https://github.com/flutter/plugins/pull/3742) [flutter_plugin_tools] Also look for Java tests in plugin path (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3746](https://github.com/flutter/plugins/pull/3746) Make sure androidx.lifecycle classes aren't R8'ed away when using flutter_plugin_android_lifecycle (cla: yes, p: flutter_plugin_android_lifecycle, platform-android)
[3786](https://github.com/flutter/plugins/pull/3786) [local_auth] Update Jetpack dependencies (cla: yes, p: local_auth, platform-android)
### platform-ios - 32 pull request(s)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3274](https://github.com/flutter/plugins/pull/3274) [in_app_purchase] presentCodeRedemptionSheet (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3475](https://github.com/flutter/plugins/pull/3475) [url_launcher] Update result to `True` when the url was loaded successfully. (cla: yes, p: url_launcher, platform-ios)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3533](https://github.com/flutter/plugins/pull/3533) [camera] NNBD migration of the camera plugin (cla: yes, p: camera, platform-ios)
[3555](https://github.com/flutter/plugins/pull/3555) [in_app_purchase] Migrate to NNBD (cla: yes, nnbd, p: in_app_purchase, platform-ios)
[3562](https://github.com/flutter/plugins/pull/3562) [camera] Solves delay when using the zoom feature on iOS. (cla: yes, p: camera, platform-ios)
[3591](https://github.com/flutter/plugins/pull/3591) [camera] Fix iOS rotation issue (cla: yes, p: camera, platform-ios, waiting for tree to go green)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3621](https://github.com/flutter/plugins/pull/3621) [quick_action] fix delegate methods not called on iOS (cla: yes, p: quick_actions, platform-ios, waiting for tree to go green)
[3625](https://github.com/flutter/plugins/pull/3625) [google_maps_flutter] embedded_views_preview not required since v1.0.0 (cla: yes, p: google_maps_flutter, platform-ios)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3663](https://github.com/flutter/plugins/pull/3663) [image_picker] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: image_picker, platform-ios)
[3664](https://github.com/flutter/plugins/pull/3664) [webview_flutter] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: webview_flutter, platform-ios)
[3671](https://github.com/flutter/plugins/pull/3671) [video_player] add http headers (cla: yes, p: video_player, platform-android, platform-ios)
[3674](https://github.com/flutter/plugins/pull/3674) Update CI config for Flutter 2 (cla: yes, p: wifi_info_flutter, platform-ios)
[3676](https://github.com/flutter/plugins/pull/3676) [image_picker] fix flutter/flutter#71927 (cla: yes, p: image_picker, platform-ios, waiting for tree to go green)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3734](https://github.com/flutter/plugins/pull/3734) [quick_actions] 1/3 Moved quickactions to a subfolder for federated architecture (cla: yes, p: quick_actions, platform-android, platform-ios)
[3735](https://github.com/flutter/plugins/pull/3735) [quick_actions] 2/3 Quick actions federated platform interface (cla: yes, p: quick_actions, platform-android, platform-ios)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3772](https://github.com/flutter/plugins/pull/3772) [in_app_purchase] Configured example app to use StoreKit Testing on iOS 14 (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3778](https://github.com/flutter/plugins/pull/3778) [local_auth] Fix callback thread handling (cla: yes, p: local_auth, platform-ios)
[3791](https://github.com/flutter/plugins/pull/3791) [flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (cla: yes, p: webview_flutter, platform-ios, waiting for tree to go green)
### p: image_picker - 29 pull request(s)
[2835](https://github.com/flutter/plugins/pull/2835) Fix typo in image_picker_for_web README.md (cla: yes, p: image_picker, platform-web)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3461](https://github.com/flutter/plugins/pull/3461) [ci][image_picker][webviews_flutter] enable Xcode 12 (cla: yes, p: image_picker, p: webview_flutter, waiting for tree to go green)
[3467](https://github.com/flutter/plugins/pull/3467) [image_picker_platform_interface] fix test asset file location (cla: yes, p: cross_file, p: image_picker)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3492](https://github.com/flutter/plugins/pull/3492) [image_picker_platform_interface] migrate to nnbd (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3524](https://github.com/flutter/plugins/pull/3524) [image_picker] Migrate to null-safety (cla: yes, nnbd, p: image_picker)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3535](https://github.com/flutter/plugins/pull/3535) [image_picker] Migrate image_picker_web to null-safety (cla: yes, p: image_picker, platform-web)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3566](https://github.com/flutter/plugins/pull/3566) [image_picker_for_web] Add doc comments to point out that some arguments aren't supported on the web (cla: yes, p: image_picker, platform-web)
[3573](https://github.com/flutter/plugins/pull/3573) [image_picker_platform_interface] Bump NNBD version to stable (cla: yes, nnbd, p: image_picker)
[3579](https://github.com/flutter/plugins/pull/3579) [image_picker] NNBD stable (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3580](https://github.com/flutter/plugins/pull/3580) [image_picker] use nnbd version of deps to resolve ci failure (cla: yes, nnbd, p: image_picker)
[3635](https://github.com/flutter/plugins/pull/3635) [image_picker_for_web] Bump version for NNBD stable (cla: yes, p: image_picker, platform-web, waiting for tree to go green)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3663](https://github.com/flutter/plugins/pull/3663) [image_picker] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: image_picker, platform-ios)
[3676](https://github.com/flutter/plugins/pull/3676) [image_picker] fix flutter/flutter#71927 (cla: yes, p: image_picker, platform-ios, waiting for tree to go green)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3685](https://github.com/flutter/plugins/pull/3685) [image_picker] Implemented 2860 and added Unit Test to test functionality (cla: yes, p: image_picker, platform-android, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3717](https://github.com/flutter/plugins/pull/3717) [image_picker] endorse image_picker_for_web in image_picker plugin (cla: yes, p: image_picker)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
### p: camera - 28 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3458](https://github.com/flutter/plugins/pull/3458) [camera] Clockwise rotation of focus point in android (cla: yes, p: camera, platform-android)
[3472](https://github.com/flutter/plugins/pull/3472) [camera] Fix example reference in camera's doc (cla: yes, p: camera)
[3496](https://github.com/flutter/plugins/pull/3496) [camera] Revert compileSdkVersion back to 29 (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3497](https://github.com/flutter/plugins/pull/3497) [camera_platform_interface] Migrate to null safety (cla: yes, nnbd, p: camera)
[3501](https://github.com/flutter/plugins/pull/3501) Merge upcoming camera updates (cla: yes, p: camera)
[3503](https://github.com/flutter/plugins/pull/3503) [camera] Removed obsolete example folder from camera root (cla: yes, p: camera, platform-android)
[3518](https://github.com/flutter/plugins/pull/3518) [camera_platform_interface] Added stopRecordingVideo (cla: yes, p: camera)
[3530](https://github.com/flutter/plugins/pull/3530) [camera_platform_interface] Migrate to null safety (cla: yes, p: camera)
[3533](https://github.com/flutter/plugins/pull/3533) [camera] NNBD migration of the camera plugin (cla: yes, p: camera, platform-ios)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3537](https://github.com/flutter/plugins/pull/3537) [camera] Fixes crash on takePicture() (cla: yes, p: camera, platform-android)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3558](https://github.com/flutter/plugins/pull/3558) [camera] Added timeout to Android pre-capture sequence (cla: yes, p: camera, platform-android)
[3562](https://github.com/flutter/plugins/pull/3562) [camera] Solves delay when using the zoom feature on iOS. (cla: yes, p: camera, platform-ios)
[3591](https://github.com/flutter/plugins/pull/3591) [camera] Fix iOS rotation issue (cla: yes, p: camera, platform-ios, waiting for tree to go green)
[3592](https://github.com/flutter/plugins/pull/3592) [camera] Fix example from README.md (cla: yes, p: camera, waiting for tree to go green)
[3610](https://github.com/flutter/plugins/pull/3610) [camera_platform_interface] Stable null safety release. (cla: yes, nnbd, p: camera)
[3641](https://github.com/flutter/plugins/pull/3641) [camera] Stable release for null safety. (cla: yes, nnbd, p: camera)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3742](https://github.com/flutter/plugins/pull/3742) [flutter_plugin_tools] Also look for Java tests in plugin path (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: in_app_purchase - 28 pull request(s)
[2606](https://github.com/flutter/plugins/pull/2606) Updated README.md typo (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2822](https://github.com/flutter/plugins/pull/2822) [in_app_purchase] Add support for InApp subscription upgrade/downgrade (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[2846](https://github.com/flutter/plugins/pull/2846) [in_app_purchase] Typos in comments (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3274](https://github.com/flutter/plugins/pull/3274) [in_app_purchase] presentCodeRedemptionSheet (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3494](https://github.com/flutter/plugins/pull/3494) [in_app_purchases] Remove TypeMatcher reference (cla: yes, p: in_app_purchase)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3555](https://github.com/flutter/plugins/pull/3555) [in_app_purchase] Migrate to NNBD (cla: yes, nnbd, p: in_app_purchase, platform-ios)
[3636](https://github.com/flutter/plugins/pull/3636) [in_app_purchase] migrate playing billing library to v3 (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3654](https://github.com/flutter/plugins/pull/3654) [in_app_purchase] fix plugin version (cla: yes, p: in_app_purchase)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3731](https://github.com/flutter/plugins/pull/3731) [in_app_purchase] improve readme (cla: yes, p: in_app_purchase, waiting for tree to go green)
[3732](https://github.com/flutter/plugins/pull/3732) [in_app_purchase] moved android iap unit tests (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3749](https://github.com/flutter/plugins/pull/3749) [in_app_purchase] Fixed some minor spelling mistakes in README (cla: yes, p: in_app_purchase)
[3750](https://github.com/flutter/plugins/pull/3750) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3751](https://github.com/flutter/plugins/pull/3751) Revert "[in_app_purchase] Fix error message when trying to consume purchase on iOS" (cla: yes, p: in_app_purchase)
[3752](https://github.com/flutter/plugins/pull/3752) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3753](https://github.com/flutter/plugins/pull/3753) [in_app_purchase] Update instructions on setting up example App (cla: yes, p: in_app_purchase)
[3756](https://github.com/flutter/plugins/pull/3756) Drop redundant question marks used with dynamic. (cla: yes, p: google_sign_in, p: in_app_purchase, platform-web)
[3772](https://github.com/flutter/plugins/pull/3772) [in_app_purchase] Configured example app to use StoreKit Testing on iOS 14 (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
### p: path_provider - 28 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3330](https://github.com/flutter/plugins/pull/3330) [path_provider_linux] Migrate to null safety (cla: yes, nnbd, p: path_provider, platform-linux)
[3460](https://github.com/flutter/plugins/pull/3460) Migrate path_provider to null safety. (cla: yes, nnbd, p: path_provider)
[3485](https://github.com/flutter/plugins/pull/3485) [path_provider_windows] Resolve FFI stabilization changes (cla: yes, p: path_provider)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3491](https://github.com/flutter/plugins/pull/3491) Remove Dart stubs from macOS plugins (cla: yes, p: connectivity, p: path_provider)
[3498](https://github.com/flutter/plugins/pull/3498) [path_provider] Update macOS for NNBD (cla: yes, nnbd, p: path_provider, platform-macos)
[3513](https://github.com/flutter/plugins/pull/3513) Update to ffi 0.3.0-nullsafety.1 (cla: yes, p: path_provider, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3540](https://github.com/flutter/plugins/pull/3540) Bump ffi dependencies (cla: yes, p: path_provider, platform-windows)
[3541](https://github.com/flutter/plugins/pull/3541) [path_provider] Update Windows implementation version (cla: yes, p: path_provider)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3568](https://github.com/flutter/plugins/pull/3568) [path_provider] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: path_provider)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3582](https://github.com/flutter/plugins/pull/3582) [path_provider] Update to stable NNBD (cla: yes, nnbd, p: path_provider)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3672](https://github.com/flutter/plugins/pull/3672) [path_provider] Make a 0.0.5 for Dart 2.12 compat (cla: yes, p: path_provider, platform-windows)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
### p: shared_preferences - 28 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3466](https://github.com/flutter/plugins/pull/3466) Migrate shared_preferences_platform_interfaces to null safety (cla: yes, p: shared_preferences)
[3481](https://github.com/flutter/plugins/pull/3481) [shared_preferences] Removed deprecated AsyncTask API (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3505](https://github.com/flutter/plugins/pull/3505) [shared_preferences] Update macOS for NNBD (cla: yes, nnbd, p: shared_preferences, platform-macos)
[3515](https://github.com/flutter/plugins/pull/3515) Remove stray dependency (cla: yes, p: shared_preferences, platform-windows)
[3516](https://github.com/flutter/plugins/pull/3516) [shared_preferences_windows]-Migrate to null safety (cla: yes, nnbd, p: shared_preferences, platform-windows)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3565](https://github.com/flutter/plugins/pull/3565) [shared_preferences] fix crash when list type is dynaimc (cla: yes, nnbd, p: shared_preferences, waiting for tree to go green)
[3586](https://github.com/flutter/plugins/pull/3586) [shared_preferences] Bump version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3602](https://github.com/flutter/plugins/pull/3602) [shared_preferences] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3633](https://github.com/flutter/plugins/pull/3633) Make executor an instance property (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3639](https://github.com/flutter/plugins/pull/3639) [shared_preferences] Don't create additional Handler when method channel is called. (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3684](https://github.com/flutter/plugins/pull/3684) [shared_preferences] Fix concurrent modification of the shared preferences on Android (cla: yes, p: shared_preferences, platform-android)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3705](https://github.com/flutter/plugins/pull/3705) [shared_preferences] Fix missing declaration of windows' default_package (cla: yes, p: shared_preferences)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: url_launcher - 26 pull request(s)
[2031](https://github.com/flutter/plugins/pull/2031) [url_launcher] Added a note to the README (cla: yes, in review, p: url_launcher)
[2858](https://github.com/flutter/plugins/pull/2858) [url_launcher] Update description in pubspec.yaml (cla: yes, p: url_launcher)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3252](https://github.com/flutter/plugins/pull/3252) [url_launcher] Update readme for URL schemes on iOS (cla: yes, p: url_launcher, waiting for tree to go green)
[3333](https://github.com/flutter/plugins/pull/3333) [url_launcher] Fix PlatformException introduced in nnbd release (cla: yes, nnbd, p: url_launcher)
[3475](https://github.com/flutter/plugins/pull/3475) [url_launcher] Update result to `True` when the url was loaded successfully. (cla: yes, p: url_launcher, platform-ios)
[3476](https://github.com/flutter/plugins/pull/3476) [url_launcher_web] Fix Link misalignment issue (cla: yes, p: url_launcher)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3522](https://github.com/flutter/plugins/pull/3522) [url_launcher_web] Migrate to null-safety (cla: yes, nnbd, p: url_launcher, platform-web)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3557](https://github.com/flutter/plugins/pull/3557) [url_launcher] Re-endorse null-safe web implementation. (cla: yes, nnbd, p: url_launcher)
[3570](https://github.com/flutter/plugins/pull/3570) [url_launcher] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: url_launcher)
[3583](https://github.com/flutter/plugins/pull/3583) [url_launcher] Fix SDK copypasta in platform interface (cla: yes, nnbd, p: url_launcher)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3603](https://github.com/flutter/plugins/pull/3603) [url_launcher] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: url_launcher)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3657](https://github.com/flutter/plugins/pull/3657) [url_launcher] Migrate unit tests to NNBD (cla: yes, p: url_launcher)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### platform-macos - 26 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3498](https://github.com/flutter/plugins/pull/3498) [path_provider] Update macOS for NNBD (cla: yes, nnbd, p: path_provider, platform-macos)
[3505](https://github.com/flutter/plugins/pull/3505) [shared_preferences] Update macOS for NNBD (cla: yes, nnbd, p: shared_preferences, platform-macos)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3571](https://github.com/flutter/plugins/pull/3571) [package_info] Bump version for NNBD stable (cla: yes, nnbd, p: package_info, platform-macos)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3599](https://github.com/flutter/plugins/pull/3599) [connectivity_macos] fix version (cla: yes, nnbd, p: connectivity, platform-macos)
[3604](https://github.com/flutter/plugins/pull/3604) [connectivity_macos] fix flutter version constraint (cla: yes, p: connectivity, platform-macos)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3661](https://github.com/flutter/plugins/pull/3661) Remove unused plugin (integration_test_macos) (cla: yes, p: integration_test, platform-macos, waiting for tree to go green)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
### p: connectivity - 25 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3491](https://github.com/flutter/plugins/pull/3491) Remove Dart stubs from macOS plugins (cla: yes, p: connectivity, p: path_provider)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3585](https://github.com/flutter/plugins/pull/3585) [connectivity_platform_interface] nnbd stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3596](https://github.com/flutter/plugins/pull/3596) [connectivity] null safety stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3599](https://github.com/flutter/plugins/pull/3599) [connectivity_macos] fix version (cla: yes, nnbd, p: connectivity, platform-macos)
[3604](https://github.com/flutter/plugins/pull/3604) [connectivity_macos] fix flutter version constraint (cla: yes, p: connectivity, platform-macos)
[3645](https://github.com/flutter/plugins/pull/3645) [connectivity] migrate unit tests to null safety (cla: yes, nnbd, p: connectivity)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3652](https://github.com/flutter/plugins/pull/3652) [connectivity_for_web] Migration to null-safety. (cla: yes, p: connectivity, platform-web, waiting for tree to go green)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3708](https://github.com/flutter/plugins/pull/3708) [connectivity] re-endorse connectivity_for_web (cla: yes, p: connectivity)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: google_sign_in - 25 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3617](https://github.com/flutter/plugins/pull/3617) [google_sign_in] Bump platform interface version for NNBD stable (cla: yes, p: google_sign_in)
[3622](https://github.com/flutter/plugins/pull/3622) [google_sign_in_web] Ignore analyzer checks in generated files. (cla: yes, p: google_sign_in, platform-web)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3637](https://github.com/flutter/plugins/pull/3637) [google_sign_in] Bump app-facing version for NNBD stable (cla: yes, p: google_sign_in)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3642](https://github.com/flutter/plugins/pull/3642) [extension_google_sign_in_as_googleapis_auth] Migrate to null safety (cla: yes, p: google_sign_in)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3686](https://github.com/flutter/plugins/pull/3686) [google_sign_in] Updates google_sign_in_platform_interfaces adding parametrized `clientId` (cla: yes, p: google_sign_in)
[3689](https://github.com/flutter/plugins/pull/3689) [extension_google_sign_in_as_googleapis_auth] Update import (cla: yes, p: google_sign_in, waiting for tree to go green)
[3690](https://github.com/flutter/plugins/pull/3690) [google_sign_in] fix test (cla: yes, p: google_sign_in)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3756](https://github.com/flutter/plugins/pull/3756) Drop redundant question marks used with dynamic. (cla: yes, p: google_sign_in, p: in_app_purchase, platform-web)
[3757](https://github.com/flutter/plugins/pull/3757) Drop redundant ? for dynamic (cla: yes, p: google_sign_in, platform-web)
### p: video_player - 25 pull request(s)
[2480](https://github.com/flutter/plugins/pull/2480) [video_player] : Flutter's video plugin can cause crashes after a closing a flutter vi⦠(cla: yes, p: video_player)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3507](https://github.com/flutter/plugins/pull/3507) [video_player] Update video_player_platform_interface to latest pigeon (cla: yes, p: video_player)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3536](https://github.com/flutter/plugins/pull/3536) [video_player] Update video_player_web to point to new video_player_interface (cla: yes, p: video_player, platform-web)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3546](https://github.com/flutter/plugins/pull/3546) [video_player] Update video_player readme to change sample video to https (cla: yes, documentation, p: video_player)
[3561](https://github.com/flutter/plugins/pull/3561) [video_player] Ignore setting mixWithOthers in web (cla: yes, p: video_player, platform-web)
[3574](https://github.com/flutter/plugins/pull/3574) [video_player_web] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, platform-web)
[3578](https://github.com/flutter/plugins/pull/3578) [video_player_platform_interface] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, waiting for tree to go green)
[3624](https://github.com/flutter/plugins/pull/3624) [video_player] Bump app-facing version for NNBD stable (cla: yes, p: video_player)
[3668](https://github.com/flutter/plugins/pull/3668) [video_player] fixed misleading size and aspect ratio documentation (cla: yes, p: video_player, waiting for tree to go green)
[3669](https://github.com/flutter/plugins/pull/3669) [Video_Player] Remove the deprecated API reference. (cla: yes, p: video_player, platform-android, waiting for tree to go green)
[3671](https://github.com/flutter/plugins/pull/3671) [video_player] add http headers (cla: yes, p: video_player, platform-android, platform-ios)
[3702](https://github.com/flutter/plugins/pull/3702) [video_player_platform_interface] add http headers (cla: yes, p: video_player)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3713](https://github.com/flutter/plugins/pull/3713) [video_player]Update README.me (cla: yes, p: video_player, waiting for tree to go green)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### platform-windows - 22 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3513](https://github.com/flutter/plugins/pull/3513) Update to ffi 0.3.0-nullsafety.1 (cla: yes, p: path_provider, platform-windows)
[3515](https://github.com/flutter/plugins/pull/3515) Remove stray dependency (cla: yes, p: shared_preferences, platform-windows)
[3516](https://github.com/flutter/plugins/pull/3516) [shared_preferences_windows]-Migrate to null safety (cla: yes, nnbd, p: shared_preferences, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3540](https://github.com/flutter/plugins/pull/3540) Bump ffi dependencies (cla: yes, p: path_provider, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3672](https://github.com/flutter/plugins/pull/3672) [path_provider] Make a 0.0.5 for Dart 2.12 compat (cla: yes, p: path_provider, platform-windows)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
### p: quick_actions - 19 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3305](https://github.com/flutter/plugins/pull/3305) [quick_actions] Update "eponymous concept" link. (cla: yes, p: quick_actions)
[3421](https://github.com/flutter/plugins/pull/3421) [quick_actions] Migrate to null safety (cla: yes, nnbd, p: quick_actions)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3618](https://github.com/flutter/plugins/pull/3618) [quick_action] null safety stable release (cla: yes, p: quick_actions, waiting for tree to go green)
[3621](https://github.com/flutter/plugins/pull/3621) [quick_action] fix delegate methods not called on iOS (cla: yes, p: quick_actions, platform-ios, waiting for tree to go green)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3734](https://github.com/flutter/plugins/pull/3734) [quick_actions] 1/3 Moved quickactions to a subfolder for federated architecture (cla: yes, p: quick_actions, platform-android, platform-ios)
[3735](https://github.com/flutter/plugins/pull/3735) [quick_actions] 2/3 Quick actions federated platform interface (cla: yes, p: quick_actions, platform-android, platform-ios)
[3736](https://github.com/flutter/plugins/pull/3736) [quick_actions] 3/3 Quick actions federated migration (cla: yes, p: quick_actions, waiting for tree to go green)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3741](https://github.com/flutter/plugins/pull/3741) [quick_actions_platform_interface] Update license file (cla: yes, p: quick_actions)
[3745](https://github.com/flutter/plugins/pull/3745) [quick_actions] example fix (cla: yes, p: quick_actions, waiting for tree to go green)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### platform-linux - 18 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3330](https://github.com/flutter/plugins/pull/3330) [path_provider_linux] Migrate to null safety (cla: yes, nnbd, p: path_provider, platform-linux)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
### p: file_selector - 17 pull request(s)
[3451](https://github.com/flutter/plugins/pull/3451) [file_selector_platform_interface]: Verify that extensions don't have leading dots. (cla: yes, p: file_selector, waiting for tree to go green)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3509](https://github.com/flutter/plugins/pull/3509) [file_selector_platform_interface] File selector nnbd (cla: yes, nnbd, p: file_selector, platform-web)
[3528](https://github.com/flutter/plugins/pull/3528) [file_selector_web] Fix typo in pubspec. (cla: yes, p: file_selector, platform-web)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3550](https://github.com/flutter/plugins/pull/3550) [file_selector_web] Migrated to null-safety (cla: yes, nnbd, p: file_selector, platform-web)
[3554](https://github.com/flutter/plugins/pull/3554) [file_selector_web] update documentation #76067 (cla: yes, p: file_selector, platform-web)
[3605](https://github.com/flutter/plugins/pull/3605) [file_selector_platform_interface] null safety stable release (cla: yes, nnbd, p: file_selector)
[3630](https://github.com/flutter/plugins/pull/3630) [file_selector] Return a non-null value from getSavePath on web (cla: yes, p: file_selector, platform-web, waiting for tree to go green)
[3631](https://github.com/flutter/plugins/pull/3631) [file_selector] Migrate to null safety (cla: yes, nnbd, p: file_selector)
[3643](https://github.com/flutter/plugins/pull/3643) [file_selector] Endorse web (cla: yes, p: file_selector)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
### p: device_info - 16 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3597](https://github.com/flutter/plugins/pull/3597) [device_info_platform_interface] null safety stable release (cla: yes, nnbd, p: device_info)
[3609](https://github.com/flutter/plugins/pull/3609) [device_info_platform_interface] handle null value from method channel (cla: yes, nnbd, p: device_info)
[3626](https://github.com/flutter/plugins/pull/3626) [device_info] null safety stable (cla: yes, nnbd, p: device_info)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3658](https://github.com/flutter/plugins/pull/3658) [device_info] Enable NNBD for unit test (cla: yes, p: device_info)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: wifi_info_flutter - 16 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3234](https://github.com/flutter/plugins/pull/3234) [wifi_info_flutter] Check Permissions in Android O or higher (cla: yes, p: wifi_info_flutter, platform-android)
[3424](https://github.com/flutter/plugins/pull/3424) [wifi_info_flutter] Migrate the platform interface to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3425](https://github.com/flutter/plugins/pull/3425) [wifi_info_flutter] Migrate to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3620](https://github.com/flutter/plugins/pull/3620) [wifi_info_flutter_platform_interface] null safety stable release (cla: yes, nnbd, p: wifi_info_flutter)
[3627](https://github.com/flutter/plugins/pull/3627) [wifi_info_flutter] null safety stable (cla: yes, nnbd, p: wifi_info_flutter)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3674](https://github.com/flutter/plugins/pull/3674) Update CI config for Flutter 2 (cla: yes, p: wifi_info_flutter, platform-ios)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: webview_flutter - 16 pull request(s)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3461](https://github.com/flutter/plugins/pull/3461) [ci][image_picker][webviews_flutter] enable Xcode 12 (cla: yes, p: image_picker, p: webview_flutter, waiting for tree to go green)
[3521](https://github.com/flutter/plugins/pull/3521) Add section about how to use Material components in an app using WebView (cla: yes, p: webview_flutter)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3619](https://github.com/flutter/plugins/pull/3619) [webview_flutter] null safety stable release (cla: yes, p: webview_flutter)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3655](https://github.com/flutter/plugins/pull/3655) Bring HTML inputs into view automatically (cla: yes, p: webview_flutter, platform-android)
[3664](https://github.com/flutter/plugins/pull/3664) [webview_flutter] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: webview_flutter, platform-ios)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3765](https://github.com/flutter/plugins/pull/3765) [webview_flutter] Fix scroll bar position for Android non-hybrid WebViews (cla: yes, p: webview_flutter)
[3791](https://github.com/flutter/plugins/pull/3791) [flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (cla: yes, p: webview_flutter, platform-ios, waiting for tree to go green)
### p: local_auth - 15 pull request(s)
[2983](https://github.com/flutter/plugins/pull/2983) [local_auth] Unnecessary reassignment in example removed (cla: yes, p: local_auth, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3473](https://github.com/flutter/plugins/pull/3473) [local_auth] Fix incorrect switch fallthrough (cla: yes, p: local_auth)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3615](https://github.com/flutter/plugins/pull/3615) [local_auth] Bump version for NNBD stable (cla: yes, nnbd, p: local_auth)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
[3778](https://github.com/flutter/plugins/pull/3778) [local_auth] Fix callback thread handling (cla: yes, p: local_auth, platform-ios)
[3786](https://github.com/flutter/plugins/pull/3786) [local_auth] Update Jetpack dependencies (cla: yes, p: local_auth, platform-android)
### p: android_intent - 14 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3601](https://github.com/flutter/plugins/pull/3601) [android_intent] Bump version for NNBD stable (cla: yes, nnbd, p: android_intent)
[3607](https://github.com/flutter/plugins/pull/3607) [android_intent] Fix Flutter SDK version (cla: yes, nnbd, p: android_intent)
[3659](https://github.com/flutter/plugins/pull/3659) [android_intent] move unit test to nullsafety (cla: yes, p: android_intent, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3762](https://github.com/flutter/plugins/pull/3762) Capitalise Platform class in README (cla: yes, p: android_intent)
### p: share - 14 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3300](https://github.com/flutter/plugins/pull/3300) [share] Update README.md (cla: yes, p: share, submit queue)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3600](https://github.com/flutter/plugins/pull/3600) [share] Bump version for NNBD stable (cla: yes, nnbd, p: share)
[3660](https://github.com/flutter/plugins/pull/3660) [share] Migrate unit tests to null-safety. (cla: yes, p: share, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: sensors - 13 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3423](https://github.com/flutter/plugins/pull/3423) [sensors] Migrate to null safety (cla: yes, nnbd, p: sensors)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3589](https://github.com/flutter/plugins/pull/3589) [sensors] Update to NNBD stable (cla: yes, nnbd, p: sensors)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: package_info - 13 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3398](https://github.com/flutter/plugins/pull/3398) [package_info] Migrate to null safety (cla: yes, nnbd, p: package_info)
[3478](https://github.com/flutter/plugins/pull/3478) [package_info] Register IntegrationTestPlugin in the example app. (cla: yes, p: package_info)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3571](https://github.com/flutter/plugins/pull/3571) [package_info] Bump version for NNBD stable (cla: yes, nnbd, p: package_info, platform-macos)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: battery - 12 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3587](https://github.com/flutter/plugins/pull/3587) [battery] Bump platform version to NNBD stable (cla: yes, nnbd, p: battery)
[3594](https://github.com/flutter/plugins/pull/3594) [battery] Bump version for NNBD stable (cla: yes, nnbd, p: battery)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: android_alarm_manager - 12 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3499](https://github.com/flutter/plugins/pull/3499) [android_alarm_manager] Migrated android_alarm_manager to support null safety #75233 (cla: yes, nnbd, p: android_alarm_manager)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3608](https://github.com/flutter/plugins/pull/3608) [android_alarm_manager] Bump version for NNBD stable (cla: yes, nnbd, p: android_alarm_manager)
[3632](https://github.com/flutter/plugins/pull/3632) set ci runs on master and enable integration test on android alarm manager (cla: yes, p: android_alarm_manager)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
### p: integration_test - 12 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3480](https://github.com/flutter/plugins/pull/3480) [integration_test] Fix tests from changes to `flutter test` machine output (cla: yes, p: integration_test)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3661](https://github.com/flutter/plugins/pull/3661) Remove unused plugin (integration_test_macos) (cla: yes, p: integration_test, platform-macos, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: flutter_plugin_android_lifecycle - 11 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3569](https://github.com/flutter/plugins/pull/3569) [flutter_plugin_android_lifecycle] Bump version for NNBD stable (cla: yes, nnbd, p: flutter_plugin_android_lifecycle)
[3576](https://github.com/flutter/plugins/pull/3576) [flutter_plugin_android_lifecycle-sdk] Update Flutter SDK constraint (cla: yes, p: flutter_plugin_android_lifecycle, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3746](https://github.com/flutter/plugins/pull/3746) Make sure androidx.lifecycle classes aren't R8'ed away when using flutter_plugin_android_lifecycle (cla: yes, p: flutter_plugin_android_lifecycle, platform-android)
### p: ios_platform_images - 9 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3381](https://github.com/flutter/plugins/pull/3381) [ios_platform_images] Migrate to null safety (cla: yes, nnbd, p: ios_platform_images)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
### p: espresso - 8 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3614](https://github.com/flutter/plugins/pull/3614) [espresso] Update SDK requirement for null-safety (cla: yes, nnbd, p: espresso, waiting for tree to go green)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
### p: cross_file - 8 pull request(s)
[3452](https://github.com/flutter/plugins/pull/3452) [cross_file] Migrate to null-safety. (cla: yes, p: cross_file)
[3467](https://github.com/flutter/plugins/pull/3467) [image_picker_platform_interface] fix test asset file location (cla: yes, p: cross_file, p: image_picker)
[3468](https://github.com/flutter/plugins/pull/3468) Revert "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3469](https://github.com/flutter/plugins/pull/3469) Reland "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3593](https://github.com/flutter/plugins/pull/3593) [cross_file] Stable null safety release (cla: yes, nnbd, p: cross_file)
[3629](https://github.com/flutter/plugins/pull/3629) [cross_file] Fix base class nullability (cla: yes, p: cross_file)
[3698](https://github.com/flutter/plugins/pull/3698) [cross_file] Delete. (cla: yes, p: cross_file)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
### p: plugin_platform_interface - 5 pull request(s)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3543](https://github.com/flutter/plugins/pull/3543) [plugin_platform_interface] Migrate to v2 stable, null-safe (cla: yes, nnbd, p: plugin_platform_interface)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
### p: e2e - 1 pull request(s)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
### in review - 1 pull request(s)
[2031](https://github.com/flutter/plugins/pull/2031) [url_launcher] Added a note to the README (cla: yes, in review, p: url_launcher)
### documentation - 1 pull request(s)
[3546](https://github.com/flutter/plugins/pull/3546) [video_player] Update video_player readme to change sample video to https (cla: yes, documentation, p: video_player)
### submit queue - 1 pull request(s)
[3300](https://github.com/flutter/plugins/pull/3300) [share] Update README.md (cla: yes, p: share, submit queue)
## Merged PRs in `flutter/flutter` from 2021-01-26T18:58:00.000Z to 2021-04-07T15:28:00.000
There were 1197 pull requests.
[61221](https://github.com/flutter/flutter/pull/61221) [flutter_tools] Add ARM64 Linux host and cross-building option support (a: desktop, cla: yes, platform-linux, tool)
[70141](https://github.com/flutter/flutter/pull/70141) Run cirrus linux-docs only on presubmit. (cla: yes, team)
[70171](https://github.com/flutter/flutter/pull/70171) [Checkbox] Adds shape property (cla: yes, f: material design, framework, waiting for tree to go green)
[70673](https://github.com/flutter/flutter/pull/70673) Point to a new artifacts location. (cla: yes, f: material design, team, tool)
[71138](https://github.com/flutter/flutter/pull/71138) Let InkWell/Ink/ancestor support GlobalKey so that splash does not stop when changing position. (cla: yes, f: material design, framework, waiting for tree to go green)
[71217](https://github.com/flutter/flutter/pull/71217) Added checkboxHorizontalMargin to DataTable and PaginatedDataTable (cla: yes, f: material design, framework)
[71582](https://github.com/flutter/flutter/pull/71582) properly pass on gradle exit code (#71484) (cla: yes, tool, waiting for tree to go green)
[71864](https://github.com/flutter/flutter/pull/71864) ignore sliver underflow if the last children is no longer at the previous last index (cla: yes, framework, waiting for tree to go green)
[72008](https://github.com/flutter/flutter/pull/72008) added debugDisableShadows usage explaination (cla: yes, framework)
[72052](https://github.com/flutter/flutter/pull/72052) Feature refresh indicator padding (cla: yes, f: material design, framework)
[72707](https://github.com/flutter/flutter/pull/72707) Fix/ValueListenableBuilder rebuilds (cla: yes, framework, waiting for tree to go green)
[72828](https://github.com/flutter/flutter/pull/72828) Move caret/highlight painting to custom painters (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[73042](https://github.com/flutter/flutter/pull/73042) Timer based pointer event resampling (cla: yes, f: gestures, framework)
[73105](https://github.com/flutter/flutter/pull/73105) [UserAccountsDrawerHeader] New option for changing profiles images size (cla: yes, f: material design, framework, waiting for tree to go green)
[73143](https://github.com/flutter/flutter/pull/73143) Add optional DragAnchorStrategy to Draggable (cla: yes, framework, waiting for tree to go green)
[73205](https://github.com/flutter/flutter/pull/73205) Added warning when not enabled platform is selected (cla: yes, tool, waiting for tree to go green)
[73510](https://github.com/flutter/flutter/pull/73510) Reland "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73526](https://github.com/flutter/flutter/pull/73526) SliverAppBar Default Elevation Patch (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73750](https://github.com/flutter/flutter/pull/73750) Remove deprecated BinaryMessages (cla: yes, framework, severe: API break, waiting for tree to go green)
[73751](https://github.com/flutter/flutter/pull/73751) Remove deprecated TypeMatcher class (cla: yes, framework, severe: API break, waiting for tree to go green)
[73828](https://github.com/flutter/flutter/pull/73828) Exclude arm64 from valid iOS simulators (cla: yes, team, tool, waiting for tree to go green)
[73964](https://github.com/flutter/flutter/pull/73964) Adds First/Last buttons to PaginatedDataTable (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)
[73981](https://github.com/flutter/flutter/pull/73981) Format try/prod_builders.json (cla: yes, team, waiting for tree to go green)
[74043](https://github.com/flutter/flutter/pull/74043) Added enableFeedback property to BottomNavigationBar (cla: yes, f: material design, framework, waiting for tree to go green)
[74046](https://github.com/flutter/flutter/pull/74046) Fix "[proposal] provide a way to change the clipBehavior of the AnimatedList widget " (cla: yes, framework)
[74047](https://github.com/flutter/flutter/pull/74047) Fix "Support configurable hit test behavior on Draggable and DragTarget" (cla: yes, framework, waiting for tree to go green)
[74176](https://github.com/flutter/flutter/pull/74176) [flutter_tools] Simplify `flutter test` internals (cla: yes, tool, waiting for tree to go green)
[74236](https://github.com/flutter/flutter/pull/74236) [flutter_tools] Decouple FlutterPlatform from Process (cla: yes, tool, waiting for tree to go green)
[74373](https://github.com/flutter/flutter/pull/74373) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[74378](https://github.com/flutter/flutter/pull/74378) Dump logs on failing devicelab test to recipe artifact location (cla: yes, team, team: flakes)
[74382](https://github.com/flutter/flutter/pull/74382) Remove unnecessary imports in dev/benchmarks (cla: yes, team, waiting for tree to go green)
[74415](https://github.com/flutter/flutter/pull/74415) Adding hero example (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[74446](https://github.com/flutter/flutter/pull/74446) Don't leak exceptions thrown by message channels (a: tests, cla: yes, framework, waiting for tree to go green)
[74447](https://github.com/flutter/flutter/pull/74447) [flutter_tools] experiment with skipping process resolution (cla: yes, tool)
[74469](https://github.com/flutter/flutter/pull/74469) Implement dartPluginClass support for plugins (cla: yes, tool)
[74533](https://github.com/flutter/flutter/pull/74533) Only write the pid-file while listening to SIGUSR signals. (cla: yes, team, tool, waiting for tree to go green)
[74592](https://github.com/flutter/flutter/pull/74592) Allow long press delay duration for LongPressDraggable to be adjustable (cla: yes, framework, waiting for tree to go green)
[74620](https://github.com/flutter/flutter/pull/74620) Reland "Update PopupMenuButton to match Material Design spec" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[74684](https://github.com/flutter/flutter/pull/74684) [flutter] throw more specific error messages if a lerp'd type does not conform to Tween (cla: yes, framework)
[74697](https://github.com/flutter/flutter/pull/74697) Added a ReorderableListView.builder constructor (cla: yes, f: material design, framework)
[74701](https://github.com/flutter/flutter/pull/74701) Switch global key registry to be owned by the build owner. (cla: yes, framework)
[74722](https://github.com/flutter/flutter/pull/74722) TextField and last input character should visible on the screen when the cursor is not shown (cla: yes, f: material design, framework, waiting for tree to go green)
[74740](https://github.com/flutter/flutter/pull/74740) Suppress 'Info: Compiling without sound null safety' message when building flutter_tools (cla: yes, tool)
[74744](https://github.com/flutter/flutter/pull/74744) [flutter_tools] catch errors when getting cwd (cla: yes, tool, waiting for tree to go green)
[74747](https://github.com/flutter/flutter/pull/74747) fix title format tweaks (cla: yes, framework, waiting for tree to go green)
[74755](https://github.com/flutter/flutter/pull/74755) no more mockito for fuchsia remote debug protocol (cla: yes, team, tool, waiting for tree to go green)
[74758](https://github.com/flutter/flutter/pull/74758) Remove FocusTraversalGroups from the final sorted list of descendants. (cla: yes, framework)
[74762](https://github.com/flutter/flutter/pull/74762) Null safe migration for fuchsia remote debug protocol (cla: yes, team, tool)
[74763](https://github.com/flutter/flutter/pull/74763) Remove package image dependency (cla: yes, team, tool, waiting for tree to go green)
[74764](https://github.com/flutter/flutter/pull/74764) [flutter_tools] handle further devtools NPE (cla: yes, tool)
[74768](https://github.com/flutter/flutter/pull/74768) Use the shortcuts temporary solution only on web (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74770](https://github.com/flutter/flutter/pull/74770) drop mockito for integration_test (cla: yes, team, waiting for tree to go green)
[74773](https://github.com/flutter/flutter/pull/74773) Added ButtonStyle.fixedSize (cla: yes, f: material design, framework, waiting for tree to go green)
[74777](https://github.com/flutter/flutter/pull/74777) Replace MockXcode with Xcode.test in unit tests (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[74778](https://github.com/flutter/flutter/pull/74778) Rename setUpMockXcodeBuildHandler -> setUpFakeXcodeBuildHandler in tests (cla: yes, team, tool, waiting for tree to go green)
[74780](https://github.com/flutter/flutter/pull/74780) Remove MockProcessManager from channel_test and other tests (cla: yes, team, tool)
[74781](https://github.com/flutter/flutter/pull/74781) roll packages (cla: yes, team)
[74782](https://github.com/flutter/flutter/pull/74782) Drop mockito for flutter_goldens (cla: yes, team)
[74788](https://github.com/flutter/flutter/pull/74788) fix for upcoming lint use_named_constants (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, tool)
[74798](https://github.com/flutter/flutter/pull/74798) Catch cases in tests where people try to tap on widgets that aren't reachable (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74805](https://github.com/flutter/flutter/pull/74805) [State Restoration] CupertinoModalPopupRoute (cla: yes, f: cupertino, framework, waiting for tree to go green)
[74817](https://github.com/flutter/flutter/pull/74817) [flutter_tools] remove mock from analyze_size_test.dart (cla: yes, tool, waiting for tree to go green)
[74818](https://github.com/flutter/flutter/pull/74818) [flutter_tools] delete old directories when unzipping ontop of them (cla: yes, tool)
[74820](https://github.com/flutter/flutter/pull/74820) Remove "unnecessary" imports in examples (cla: yes, d: examples, team, waiting for tree to go green)
[74821](https://github.com/flutter/flutter/pull/74821) Remove "unnecessary" imports in material (cla: yes, f: material design, framework, waiting for tree to go green)
[74826](https://github.com/flutter/flutter/pull/74826) Cherrypick Use the shortcuts temporary solution only on web (#74768) (cla: yes, f: cupertino, f: material design, framework)
[74827](https://github.com/flutter/flutter/pull/74827) Replace MockXcode with Xcode.test in more unit tests (cla: yes, tool)
[74829](https://github.com/flutter/flutter/pull/74829) [flutter_tools] rewrite Usage.test to capture objects instead of print logs (cla: yes, tool)
[74832](https://github.com/flutter/flutter/pull/74832) [flutter_tools] opt all flutter tool libraries and tests out of null safety. (cla: yes, team, tool)
[74834](https://github.com/flutter/flutter/pull/74834) Replace MockProcessManager with FakeProcessManager in process_test where possible (cla: yes, tool)
[74835](https://github.com/flutter/flutter/pull/74835) Add more references to LongPressDraggable (cla: yes, framework)
[74837](https://github.com/flutter/flutter/pull/74837) InputDecorator negative baseline error message (cla: yes, f: material design, framework, waiting for tree to go green)
[74838](https://github.com/flutter/flutter/pull/74838) Swap MockStdio to FakeStdio in tests (cla: yes, team, tool)
[74842](https://github.com/flutter/flutter/pull/74842) Fix a bug with duplicate keys being used in the ReorderableListView. (cla: yes, f: material design, framework, waiting for tree to go green)
[74844](https://github.com/flutter/flutter/pull/74844) Make `flutter create --sample` null-safe (cla: yes, tool, waiting for tree to go green)
[74847](https://github.com/flutter/flutter/pull/74847) Swap mockito import for test/fake (cla: yes, team, tool)
[74848](https://github.com/flutter/flutter/pull/74848) Run tests in sound null safety mode for fuchsia_remote_debug_protocol (cla: yes, team, waiting for tree to go green)
[74851](https://github.com/flutter/flutter/pull/74851) fixes precision error during SliverGridRegularTileLayout (cla: yes, framework, waiting for tree to go green)
[74853](https://github.com/flutter/flutter/pull/74853) Migrate flutter_goldens to NNBD (a: null-safety, cla: yes, framework, team, waiting for tree to go green)
[74854](https://github.com/flutter/flutter/pull/74854) always pass filterQuality specified in the Image widget to canvas (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)
[74856](https://github.com/flutter/flutter/pull/74856) driver nnbd (a: tests, cla: yes, framework, team)
[74857](https://github.com/flutter/flutter/pull/74857) Migrate remaining examples to null-safety (cla: yes, d: examples, team, waiting for tree to go green)
[74859](https://github.com/flutter/flutter/pull/74859) Remove the timeout when launching DevTools (cla: yes, tool, waiting for tree to go green)
[74861](https://github.com/flutter/flutter/pull/74861) Migrate some dev/ things to null-safety (cla: yes, team, waiting for tree to go green)
[74862](https://github.com/flutter/flutter/pull/74862) Migrate automated_tests to null-safety (cla: yes, team, waiting for tree to go green)
[74865](https://github.com/flutter/flutter/pull/74865) Add canRun override to FakeProcessManager (cla: yes, team, tool)
[74866](https://github.com/flutter/flutter/pull/74866) Add fixes for nullOk changes (a: null-safety, cla: yes, cp: 1.26, cp: 1.26 completed, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74867](https://github.com/flutter/flutter/pull/74867) Revert "Swap MockStdio to FakeStdio in tests" (cla: yes, tool)
[74869](https://github.com/flutter/flutter/pull/74869) Revert "Remove package image dependency" (cla: yes, team, tool)
[74874](https://github.com/flutter/flutter/pull/74874) Update packages (cla: yes, team, tool, waiting for tree to go green)
[74880](https://github.com/flutter/flutter/pull/74880) Fix a slider layout bug when the overlay size is smaller than the thumb size (cla: yes, f: material design, framework, waiting for tree to go green)
[74885](https://github.com/flutter/flutter/pull/74885) Unpin mysteriously pinned packages (cla: yes, team, tool, waiting for tree to go green)
[74899](https://github.com/flutter/flutter/pull/74899) Remove "unnecessary" imports in material/ (cla: yes, f: material design, framework, waiting for tree to go green)
[74901](https://github.com/flutter/flutter/pull/74901) Remove "unnecessary" imports in test/animation (cla: yes, framework, waiting for tree to go green)
[74906](https://github.com/flutter/flutter/pull/74906) Improve Dropdown Menu (cla: yes, f: material design, framework, waiting for tree to go green)
[74909](https://github.com/flutter/flutter/pull/74909) Update the Focus widget to update the node's onKey handler when the widget updates (cla: yes, framework)
[74916](https://github.com/flutter/flutter/pull/74916) Only show devtools deep links for render overflow errors (cla: yes, framework, waiting for tree to go green)
[74919](https://github.com/flutter/flutter/pull/74919) [flutter_tools] remove mocks from file system test (cla: yes, tool)
[74922](https://github.com/flutter/flutter/pull/74922) NNBD integration_test (cla: yes, team, waiting for tree to go green)
[74927](https://github.com/flutter/flutter/pull/74927) fix word in doc comment (cla: yes, framework, waiting for tree to go green)
[74932](https://github.com/flutter/flutter/pull/74932) Allow 'flutter create' in dev and example directories (cla: yes, tool, waiting for tree to go green)
[74937](https://github.com/flutter/flutter/pull/74937) [flutter_releases] Flutter 1.26.0-17.1.pre Dev - Revert vm_service, other packages from pub roll (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[74943](https://github.com/flutter/flutter/pull/74943) vm_service 6.0.1-nullsafety.1, dwds 8.0.2 (cla: yes, team, tool, waiting for tree to go green)
[74946](https://github.com/flutter/flutter/pull/74946) Replace MockUsage with TestUsage (cla: yes, team, tool, waiting for tree to go green)
[74949](https://github.com/flutter/flutter/pull/74949) Added ButtonStyle.splashFactory and NoSplash.splashFactory (cla: yes, f: material design, framework, waiting for tree to go green)
[74956](https://github.com/flutter/flutter/pull/74956) Replace MockProcessManager with FakeProcessManager in cocoapods_test (cla: yes, team, tool)
[74959](https://github.com/flutter/flutter/pull/74959) Make Linux apps non-unique by default. (cla: yes, tool)
[74972](https://github.com/flutter/flutter/pull/74972) Show an X when images can't load. (cla: yes, framework, waiting for tree to go green)
[74992](https://github.com/flutter/flutter/pull/74992) [flutter_tools] move some fakes out of mocks.dart (cla: yes, tool, waiting for tree to go green)
[74994](https://github.com/flutter/flutter/pull/74994) [flutter_tools] remove mock SystemClock (cla: yes, tool, waiting for tree to go green)
[74995](https://github.com/flutter/flutter/pull/74995) [flutter_tools] remove mock android device from log reader test (cla: yes, tool, waiting for tree to go green)
[74999](https://github.com/flutter/flutter/pull/74999) [flutter_tools] remove most usage of MockDevice in resident runner test (cla: yes, tool, waiting for tree to go green)
[75005](https://github.com/flutter/flutter/pull/75005) Remove "unnecessary" imports in material (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75006](https://github.com/flutter/flutter/pull/75006) Remove "unnecessary" imports in cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75007](https://github.com/flutter/flutter/pull/75007) Remove "unnecessary" imports in foundation,gestures tests (cla: yes, framework, waiting for tree to go green)
[75012](https://github.com/flutter/flutter/pull/75012) Remove "unnecessary" imports in flutter_tools tests (cla: yes, tool, waiting for tree to go green)
[75022](https://github.com/flutter/flutter/pull/75022) Migrate driver tests in example/ to NNBD (cla: yes, d: examples, team, waiting for tree to go green)
[75023](https://github.com/flutter/flutter/pull/75023) Migrate some benchmarks to NNBD (cla: yes, team, waiting for tree to go green)
[75024](https://github.com/flutter/flutter/pull/75024) Clarify performance overlay in performance issue template (cla: yes, waiting for tree to go green)
[75026](https://github.com/flutter/flutter/pull/75026) Bump flutter_gallery_assets (cla: yes, team, tool, waiting for tree to go green)
[75027](https://github.com/flutter/flutter/pull/75027) [flutter_tools] switch dart defines to base64 to avoid windows control characters (cla: yes, tool)
[75029](https://github.com/flutter/flutter/pull/75029) Migrate off e2e (cla: yes, team, tool, waiting for tree to go green)
[75030](https://github.com/flutter/flutter/pull/75030) Revert "NNBD integration_test" (a: tests, cla: yes, framework, team)
[75032](https://github.com/flutter/flutter/pull/75032) Text Editing Movement Keys via Shortcuts (cla: yes, f: material design, framework)
[75033](https://github.com/flutter/flutter/pull/75033) Split tools_tests subshards into separate shards to support sub-sub-sharding (cla: yes, team, waiting for tree to go green)
[75037](https://github.com/flutter/flutter/pull/75037) [web] benchmark and optimize defaultTargetPlatform (cla: yes, framework, team)
[75039](https://github.com/flutter/flutter/pull/75039) add a benchmark test for stack size (cla: yes, team, waiting for tree to go green)
[75044](https://github.com/flutter/flutter/pull/75044) Replace MockConfig with TestConfig (cla: yes, team, tool, waiting for tree to go green)
[75049](https://github.com/flutter/flutter/pull/75049) Removed the "new" keyword from the Flutter_test examples (a: tests, cla: yes, framework)
[75053](https://github.com/flutter/flutter/pull/75053) Revert "Migrate some benchmarks to NNBD" (cla: yes, team)
[75074](https://github.com/flutter/flutter/pull/75074) Reland integration_test NNBD (a: tests, cla: yes, framework, team)
[75095](https://github.com/flutter/flutter/pull/75095) Fixed improper assertion of maxCrossAxisExtent (cla: yes, f: scrolling, framework)
[75096](https://github.com/flutter/flutter/pull/75096) Grammatical mistake on pull request template (cla: yes, team)
[75102](https://github.com/flutter/flutter/pull/75102) Fix formatting in rendering/box (cla: yes, framework, waiting for tree to go green)
[75138](https://github.com/flutter/flutter/pull/75138) AlertDialog: Remove scrollability by default (cla: yes, f: material design, framework, waiting for tree to go green)
[75160](https://github.com/flutter/flutter/pull/75160) [flutter_tools] skip web renderer defines unless web target is picked (cla: yes, tool)
[75161](https://github.com/flutter/flutter/pull/75161) Revert "Migrate driver tests in example/ to NNBD" (cla: yes, d: examples, team)
[75163](https://github.com/flutter/flutter/pull/75163) Avoid iOS local networking dialog in integration tests (cla: yes, platform-ios, team, waiting for tree to go green)
[75169](https://github.com/flutter/flutter/pull/75169) Added scrollController property to TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)
[75170](https://github.com/flutter/flutter/pull/75170) Replace context FakeUsage with TestUsage (cla: yes, team, tool)
[75171](https://github.com/flutter/flutter/pull/75171) Adopt tool_test shard builders (cla: yes, team, waiting for tree to go green)
[75175](https://github.com/flutter/flutter/pull/75175) Make flutter_driver be usable from a null-safe app (a: tests, cla: yes, framework, waiting for tree to go green)
[75179](https://github.com/flutter/flutter/pull/75179) Adopt subshard naming convention in build_tests (cla: yes, team, team: infra, waiting for tree to go green)
[75185](https://github.com/flutter/flutter/pull/75185) Remove dead tool_coverage code (cla: yes, team)
[75189](https://github.com/flutter/flutter/pull/75189) Remove hard-coded subshard numbers from the test runner (cla: yes, team, waiting for tree to go green)
[75193](https://github.com/flutter/flutter/pull/75193) Update to latest templates (cla: yes, team, waiting for tree to go green)
[75194](https://github.com/flutter/flutter/pull/75194) Remove unactionable message that was appearing during test execution. (cla: yes, framework, waiting for tree to go green)
[75198](https://github.com/flutter/flutter/pull/75198) Remove "unnecessary" imports in painting tests (cla: yes, framework)
[75209](https://github.com/flutter/flutter/pull/75209) [gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified (a: internationalization, cla: yes, tool, waiting for tree to go green)
[75213](https://github.com/flutter/flutter/pull/75213) [flutter_tools] Merge some test options into DebuggingOptions (cla: yes, tool, waiting for tree to go green)
[75230](https://github.com/flutter/flutter/pull/75230) [Api docs] Added Vertical Divider dartpad demo (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[75243](https://github.com/flutter/flutter/pull/75243) Add support for producing unstripped AOT snapshots. (cla: yes, tool, waiting for tree to go green)
[75251](https://github.com/flutter/flutter/pull/75251) [flutter_tools] add build system test for concurrent failures (cla: yes, tool)
[75259](https://github.com/flutter/flutter/pull/75259) [flutter_tools] use TestFeatureFlags instead of MockFeatureFlags (cla: yes, tool, waiting for tree to go green)
[75263](https://github.com/flutter/flutter/pull/75263) [flutter_tools] remove mockito from flutter symbolize test (cla: yes, tool)
[75264](https://github.com/flutter/flutter/pull/75264) Re-land "Migrate driver tests in example/ to NNBD (#75022)" (cla: yes, d: examples, team, waiting for tree to go green)
[75265](https://github.com/flutter/flutter/pull/75265) Re-land "Migrate some benchmarks to NNBD (75023)" (cla: yes, team, waiting for tree to go green)
[75266](https://github.com/flutter/flutter/pull/75266) Revert "Make flutter_driver be usable from a null-safe app" (a: tests, cla: yes, framework)
[75269](https://github.com/flutter/flutter/pull/75269) Reland "Make flutter_driver be usable from a null-safe app (#75175)" (a: tests, cla: yes, framework, waiting for tree to go green)
[75271](https://github.com/flutter/flutter/pull/75271) Add test for driver test organisation (a: tests, cla: yes, framework, waiting for tree to go green)
[75273](https://github.com/flutter/flutter/pull/75273) Mark tool_integration_tests not flaky (cla: yes, team, waiting for tree to go green)
[75275](https://github.com/flutter/flutter/pull/75275) Run flutter_driver, integration_test, flutter_localizations, and fuchsia_remote_debug_protocol in framework_tests presubmit (cla: yes, team, waiting for tree to go green)
[75276](https://github.com/flutter/flutter/pull/75276) Replace MockPlistParser with FakePlistParser (cla: yes, team, tool)
[75287](https://github.com/flutter/flutter/pull/75287) Add fix for maxEnforced -> maxEnforcement (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[75291](https://github.com/flutter/flutter/pull/75291) [Api docs] Dartpad demo for alert dialog. (cla: yes, f: material design, framework)
[75298](https://github.com/flutter/flutter/pull/75298) Catch VM Service disappearance from run/attach handler code (cla: yes, tool)
[75301](https://github.com/flutter/flutter/pull/75301) Return an empty FlutterViews list when the service disappears (cla: yes, tool, waiting for tree to go green)
[75303](https://github.com/flutter/flutter/pull/75303) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75306](https://github.com/flutter/flutter/pull/75306) Revert "[gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified" (cla: yes, tool)
[75308](https://github.com/flutter/flutter/pull/75308) Fix the NestedScrollView exception when rebuilding during scheduleWarmUpFrame (cla: yes, framework, waiting for tree to go green)
[75317](https://github.com/flutter/flutter/pull/75317) Revert "Add test for driver test organisation" (a: tests, cla: yes, framework)
[75331](https://github.com/flutter/flutter/pull/75331) Revert "Re-land "Migrate some benchmarks to NNBD (75023)" " (cla: yes, team)
[75335](https://github.com/flutter/flutter/pull/75335) [win] Suppress Powershell download/extraction visualization progress bar. (cla: yes)
[75336](https://github.com/flutter/flutter/pull/75336) [flutter_tools] handle null package (cla: yes, tool)
[75338](https://github.com/flutter/flutter/pull/75338) Revert "Reland "Update PopupMenuButton to match Material Design spec"" (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75340](https://github.com/flutter/flutter/pull/75340) Added BorderRadius.copyWith (cla: yes, framework, waiting for tree to go green)
[75343](https://github.com/flutter/flutter/pull/75343) More null-safety fixes for flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75346](https://github.com/flutter/flutter/pull/75346) Relands "[gen-l10n] Fixes named and positional parameter issue with NumberFormat when type is specified" (a: internationalization, cla: yes, tool)
[75350](https://github.com/flutter/flutter/pull/75350) [flutter_tools] move process manager into tool (cla: yes, team, tool)
[75351](https://github.com/flutter/flutter/pull/75351) Suggest precache instead of build when engine artifacts are missing (cla: yes, platform-ios, tool)
[75358](https://github.com/flutter/flutter/pull/75358) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75359](https://github.com/flutter/flutter/pull/75359) Remove "unnecessary" imports in test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[75360](https://github.com/flutter/flutter/pull/75360) Fix BottomNavigationBar MediaQuery padding (cla: yes, f: material design, framework, waiting for tree to go green)
[75361](https://github.com/flutter/flutter/pull/75361) [flutter_tools] remove web defines workaround (cla: yes, tool, waiting for tree to go green)
[75370](https://github.com/flutter/flutter/pull/75370) roll packages (cla: yes, cp: 1.26, cp: 1.26 completed, team, waiting for tree to go green)
[75374](https://github.com/flutter/flutter/pull/75374) Added memory benchmark for flutter engine groups. (cla: yes, team, waiting for tree to go green)
[75383](https://github.com/flutter/flutter/pull/75383) Revert "add a benchmark test for stack size" (cla: yes, team)
[75387](https://github.com/flutter/flutter/pull/75387) Install prebuilt iOS app only once (cla: yes, platform-ios, tool)
[75389](https://github.com/flutter/flutter/pull/75389) Update prepare_package to upload artifacts to old and new buckets. (cla: yes, team)
[75393](https://github.com/flutter/flutter/pull/75393) Add onLongPress property to DataCell: #72609 (cla: yes, f: material design, framework, waiting for tree to go green)
[75394](https://github.com/flutter/flutter/pull/75394) flutter_tool: DeferredComponent and LoadingUnit classes, Manifest deferred-components parsing (cla: yes, tool, waiting for tree to go green)
[75431](https://github.com/flutter/flutter/pull/75431) Reland "Migrate some benchmarks to NNBD (#75023)" (cla: yes, team, waiting for tree to go green)
[75434](https://github.com/flutter/flutter/pull/75434) Reland "add a benchmark test for stack size (#75039)" (cla: yes, team)
[75441](https://github.com/flutter/flutter/pull/75441) Revert "Reland "Update PopupMenuButton to match Material Design spec"β¦ (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75444](https://github.com/flutter/flutter/pull/75444) [flutter_tools] refactor devtools handler into its own class (cla: yes, tool)
[75454](https://github.com/flutter/flutter/pull/75454) ToggleButtons focus,highlight,hoverElevation = 0 (cla: yes, f: material design, framework, waiting for tree to go green)
[75458](https://github.com/flutter/flutter/pull/75458) Revert "Roll Engine from 8076607c3ea3 to 6a2df7f1c9f6 (4 revisions)" (cla: yes, engine)
[75471](https://github.com/flutter/flutter/pull/75471) [flutter_tools] use a single fake implementation of HttpClient (cla: yes, tool)
[75475](https://github.com/flutter/flutter/pull/75475) Revert tool change (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[75513](https://github.com/flutter/flutter/pull/75513) Modified the computeMinIntrinsicHeight method to calculate the height properly (cla: yes, f: material design, framework, waiting for tree to go green)
[75515](https://github.com/flutter/flutter/pull/75515) Manually close the tree for issue/75514 (cla: yes, team)
[75519](https://github.com/flutter/flutter/pull/75519) Added TextButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[75522](https://github.com/flutter/flutter/pull/75522) Fix for issue #75518 - ListTile.divideTiles throws error if empty list is passed when null-safety enabled (cla: yes, f: material design, framework, waiting for tree to go green)
[75530](https://github.com/flutter/flutter/pull/75530) Add flutter update packages to some tests. (cla: yes, team)
[75532](https://github.com/flutter/flutter/pull/75532) Revert "TextField and last input character should visible on the screen when the cursor is not shown (#74722)" (cla: yes, f: material design, framework)
[75533](https://github.com/flutter/flutter/pull/75533) add prod builder for android stack size test (cla: yes, team)
[75535](https://github.com/flutter/flutter/pull/75535) [web] new service worker loading mechanism (cla: yes, team, tool)
[75541](https://github.com/flutter/flutter/pull/75541) fixes TextInputFormatter gets wrong old value of a selection (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75542](https://github.com/flutter/flutter/pull/75542) Refresh Flutter infra README (cla: yes, team, waiting for tree to go green)
[75543](https://github.com/flutter/flutter/pull/75543) Move FakeBotDetector to fakes (cla: yes, team, tool, waiting for tree to go green)
[75544](https://github.com/flutter/flutter/pull/75544) MockProcessManager -> FakeProcessManager (cla: yes, team, tool)
[75545](https://github.com/flutter/flutter/pull/75545) Add exception to FakeCommand (cla: yes, team, tool, waiting for tree to go green)
[75546](https://github.com/flutter/flutter/pull/75546) Cherrypick #75532 (a: accessibility, a: internationalization, cla: yes, f: material design, framework, team)
[75549](https://github.com/flutter/flutter/pull/75549) Document that a CupertinoApp isn't necessary for an iOS app (cla: yes, f: cupertino, framework, waiting for tree to go green)
[75554](https://github.com/flutter/flutter/pull/75554) Fixed grammatical typo (cla: yes, framework)
[75576](https://github.com/flutter/flutter/pull/75576) Allow callers to pump a root widget with no child (cla: yes, framework)
[75603](https://github.com/flutter/flutter/pull/75603) Widen getText support for RichText with multiple text spans in driver (a: tests, cla: yes, framework, waiting for tree to go green)
[75604](https://github.com/flutter/flutter/pull/75604) Reland #74722 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75612](https://github.com/flutter/flutter/pull/75612) Fix Android Studio detection and plugins on Linux (cla: yes, tool, waiting for tree to go green)
[75614](https://github.com/flutter/flutter/pull/75614) Add RenderEditable keys listener back in attach() (cla: yes, framework, waiting for tree to go green)
[75624](https://github.com/flutter/flutter/pull/75624) Add more checks when use Navigator 2.0 (cla: yes, framework, waiting for tree to go green)
[75637](https://github.com/flutter/flutter/pull/75637) Remove "unnecessary" imports in test/rendering (cla: yes, framework, waiting for tree to go green)
[75639](https://github.com/flutter/flutter/pull/75639) Revert "[flutter_tools] move process manager into tool" (cla: yes, team, tool)
[75649](https://github.com/flutter/flutter/pull/75649) Fix for VelocityTracker deprecation (cla: yes, framework, team, waiting for tree to go green)
[75660](https://github.com/flutter/flutter/pull/75660) fuchsia_remote_debug_protocol: never published (cla: yes, team, waiting for tree to go green)
[75665](https://github.com/flutter/flutter/pull/75665) ios_platform_view tests pass when device rotated (cla: yes, team, waiting for tree to go green)
[75666](https://github.com/flutter/flutter/pull/75666) Create an InlineSpanSemanticsInformation only if the TextSpan has text (cla: yes, framework)
[75669](https://github.com/flutter/flutter/pull/75669) Revert "Fix/ValueListenableBuilder rebuilds" (cla: yes, framework, waiting for tree to go green)
[75670](https://github.com/flutter/flutter/pull/75670) CupertinoPageTransition Optimizations (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[75672](https://github.com/flutter/flutter/pull/75672) Gallery transition tests pass when device rotated (cla: yes, team, waiting for tree to go green)
[75676](https://github.com/flutter/flutter/pull/75676) Removed ButtonBar from AlertDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[75678](https://github.com/flutter/flutter/pull/75678) Loosen ui.TextStyle toString tests (cla: yes, framework, waiting for tree to go green)
[75679](https://github.com/flutter/flutter/pull/75679) Consolidate ascii spinner stop in devtools activation (cla: yes, tool)
[75682](https://github.com/flutter/flutter/pull/75682) Revert "Manually close the tree for issue/75514" (cla: yes, team)
[75705](https://github.com/flutter/flutter/pull/75705) Remove "unnecessary" imports in tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75707](https://github.com/flutter/flutter/pull/75707) Remove "unnecessary" imports in test/services (cla: yes, framework, waiting for tree to go green)
[75717](https://github.com/flutter/flutter/pull/75717) Fix analyzer warning, remove import (cla: yes, tool)
[75718](https://github.com/flutter/flutter/pull/75718) [flutter_tools] do not crash if shared profile restoration fails (cla: yes, tool)
[75719](https://github.com/flutter/flutter/pull/75719) [flutter_tools] catch error 32 in cache (cla: yes, tool, waiting for tree to go green)
[75733](https://github.com/flutter/flutter/pull/75733) [flutter_releases] Roll pub for flutter-1.26-candidate.17 (cla: yes, team, tool)
[75734](https://github.com/flutter/flutter/pull/75734) Revert "Remove deprecated TypeMatcher class" (cla: yes, framework, waiting for tree to go green)
[75736](https://github.com/flutter/flutter/pull/75736) Compress module_test_ios xcresult (cla: yes, team, team: infra)
[75738](https://github.com/flutter/flutter/pull/75738) adding freeze parameter to Texture and TextureBox (cla: yes, framework, waiting for tree to go green)
[75739](https://github.com/flutter/flutter/pull/75739) [flutter_tools] Deferred components setup validator (cla: yes, tool, waiting for tree to go green)
[75743](https://github.com/flutter/flutter/pull/75743) added missing gradle files to the test harness for multiple_flutters (cla: yes, team, waiting for tree to go green)
[75748](https://github.com/flutter/flutter/pull/75748) Fix constraints of popupmenu (cla: yes, f: material design, framework, waiting for tree to go green)
[75757](https://github.com/flutter/flutter/pull/75757) Remove dead mock classes (cla: yes, team, tool, waiting for tree to go green)
[75759](https://github.com/flutter/flutter/pull/75759) MockPub -> FakePub (cla: yes, team, tool, waiting for tree to go green)
[75761](https://github.com/flutter/flutter/pull/75761) Added scrollbar example (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)
[75764](https://github.com/flutter/flutter/pull/75764) ScrollController.jumpTo zero should not trigger the refresh indicator (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[75769](https://github.com/flutter/flutter/pull/75769) fix(flutter_driver): Properly declare socket as nullable (a: tests, cla: yes, framework, waiting for tree to go green)
[75772](https://github.com/flutter/flutter/pull/75772) Update Flutter SDK constraint in integration test to match templates (cla: yes, team)
[75773](https://github.com/flutter/flutter/pull/75773) Update Flutter SDK constraint in plugin test to match template (cla: yes, team)
[75793](https://github.com/flutter/flutter/pull/75793) FlutterEngineGroup memory test: added precache before executing gradle. (cla: yes, team, waiting for tree to go green)
[75794](https://github.com/flutter/flutter/pull/75794) Fix for #75792 - allow use of Animator<Color?> with LinearProgressIndicator (cla: yes, f: material design, framework, waiting for tree to go green)
[75796](https://github.com/flutter/flutter/pull/75796) Remove "unnecessary" imports in test/widgets (cla: yes, framework, waiting for tree to go green)
[75797](https://github.com/flutter/flutter/pull/75797) [flutter_releases] Update additional pub packages to stable for 1.26.0-17.4.pre (cla: yes, team, tool)
[75798](https://github.com/flutter/flutter/pull/75798) Add mac/android smoke catalina test to dashboard (cla: yes, team, waiting for tree to go green)
[75804](https://github.com/flutter/flutter/pull/75804) [flutter_releases] Flutter Framework 1.26.0-17.5.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75807](https://github.com/flutter/flutter/pull/75807) [flutter_tools] refactor devtools handler to expose single method for run/attach and restart (cla: yes, tool, waiting for tree to go green)
[75809](https://github.com/flutter/flutter/pull/75809) Apply bottom margin to FABs that have been boosted into the Safe Area (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[75811](https://github.com/flutter/flutter/pull/75811) Move ensureVisualUpdate call to call sites in WidgetsBinding.attachRootWidget() (cla: yes, framework)
[75813](https://github.com/flutter/flutter/pull/75813) Audit and update deprecation warnings (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[75814](https://github.com/flutter/flutter/pull/75814) change stack size test to test arm device (cla: yes, team, waiting for tree to go green)
[75820](https://github.com/flutter/flutter/pull/75820) Remove some `dynamic's. (cla: yes, framework, waiting for tree to go green)
[75822](https://github.com/flutter/flutter/pull/75822) Avoid duplicating Pods-Runner xcconfig #includes (cla: yes, t: xcode, tool, waiting for tree to go green)
[75863](https://github.com/flutter/flutter/pull/75863) Clean up some documentation around shader warm-up. (cla: yes, framework, waiting for tree to go green)
[75866](https://github.com/flutter/flutter/pull/75866) added flutter_engine_group_performance to the prod_builders (cla: yes, team, waiting for tree to go green)
[75871](https://github.com/flutter/flutter/pull/75871) [flutter_tools] remove package HTTP and add pub.dev head check tests (cla: yes, tool, waiting for tree to go green)
[75873](https://github.com/flutter/flutter/pull/75873) Revert "Removed ButtonBar from AlertDialog" (cla: yes, f: material design, framework)
[75888](https://github.com/flutter/flutter/pull/75888) All arguments must be documented. (cla: yes, team, tool, waiting for tree to go green)
[75892](https://github.com/flutter/flutter/pull/75892) Mark flutter_engine_group_performance not flaky (cla: yes, team)
[75893](https://github.com/flutter/flutter/pull/75893) Replace Gitter with Discord badge (cla: yes)
[75894](https://github.com/flutter/flutter/pull/75894) Fix FocusManager constructor (a: tests, cla: yes, framework)
[75895](https://github.com/flutter/flutter/pull/75895) Refactor Hero example (cla: yes, framework, waiting for tree to go green)
[75899](https://github.com/flutter/flutter/pull/75899) Adding checkbox demo (cla: yes, f: material design, framework)
[75903](https://github.com/flutter/flutter/pull/75903) deprecated consistency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[75920](https://github.com/flutter/flutter/pull/75920) Mark mac_android_smoke_catalina_start_up test as unflaky (cla: yes, team, waiting for tree to go green)
[75922](https://github.com/flutter/flutter/pull/75922) [flutter_tools] use temp dir for tester dill, use desktop log reader (cla: yes, tool)
[75925](https://github.com/flutter/flutter/pull/75925) [flutter_tools] add package:http to forbidden imports test (cla: yes, tool, waiting for tree to go green)
[75927](https://github.com/flutter/flutter/pull/75927) [flutter_tools] Send flutter_immediately_exit_test to the elemental plane to be reforged anew (cla: yes, tool)
[75930](https://github.com/flutter/flutter/pull/75930) [flutter_tools] use less path manipulation in the Android SDK (cla: yes, tool)
[75931](https://github.com/flutter/flutter/pull/75931) [flutter_tools] gradle cleanup 1 of 99999 (cla: yes, tool)
[75933](https://github.com/flutter/flutter/pull/75933) Fix dart_docs. (cla: yes, team)
[75937](https://github.com/flutter/flutter/pull/75937) [flutter_releases] Flutter Framework 1.26.0-17.6.pre Beta Cherrypicks (cla: yes, engine, f: material design, framework, tool)
[75940](https://github.com/flutter/flutter/pull/75940) [flutter_tools] do not use context logger in gradle (cla: yes, tool, waiting for tree to go green)
[75943](https://github.com/flutter/flutter/pull/75943) Reject unaccepted pointers in Drag recognizer (cla: yes, framework, waiting for tree to go green)
[75945](https://github.com/flutter/flutter/pull/75945) [web] Treeshake keymaps for web (4% code size reduction in hello world) (a: tests, cla: yes, framework, waiting for tree to go green)
[75949](https://github.com/flutter/flutter/pull/75949) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75950](https://github.com/flutter/flutter/pull/75950) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75952](https://github.com/flutter/flutter/pull/75952) Remove "unnecessary" imports in test/widgets (a: accessibility, cla: yes, framework, waiting for tree to go green)
[75954](https://github.com/flutter/flutter/pull/75954) Remove "unnecessary" imports in test/general.shard (cla: yes, tool)
[75967](https://github.com/flutter/flutter/pull/75967) [TextSelectionTheme] improve docs (cla: yes, f: material design, framework, waiting for tree to go green)
[75981](https://github.com/flutter/flutter/pull/75981) [fuchsia] - update getting local host address logic (cla: yes, tool, waiting for tree to go green)
[76013](https://github.com/flutter/flutter/pull/76013) Added OutlinedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76019](https://github.com/flutter/flutter/pull/76019) Fix package CHANGELOG template (cla: yes, tool)
[76020](https://github.com/flutter/flutter/pull/76020) [flutter_tools] Remove globals/mocks from GradleUtils (cla: yes, tool)
[76021](https://github.com/flutter/flutter/pull/76021) Improve lifecycle docs (cla: yes, framework, waiting for tree to go green)
[76022](https://github.com/flutter/flutter/pull/76022) [flutter_tools] stop using throttled print for service extensions (cla: yes, framework, tool)
[76028](https://github.com/flutter/flutter/pull/76028) Fix problem causing tasks to timeout. (cla: yes, team)
[76033](https://github.com/flutter/flutter/pull/76033) Correct the unit of file size from "kb" (maybe "kilo bits") to "KB" (cla: yes, framework, waiting for tree to go green)
[76066](https://github.com/flutter/flutter/pull/76066) [flutter_tools] Avoid duplicated calls to l10n generation (a: internationalization, cla: yes, tool, waiting for tree to go green)
[76102](https://github.com/flutter/flutter/pull/76102) improve the scrollbar behavior when viewport size changed (a: desktop, a: quality, cla: yes, f: scrolling, framework, platform-web, waiting for tree to go green)
[76107](https://github.com/flutter/flutter/pull/76107) Flutter tool - Don't check for updates when run on a bot (cla: yes, tool, waiting for tree to go green)
[76123](https://github.com/flutter/flutter/pull/76123) Update link for missing desktop projects (cla: yes, tool, waiting for tree to go green)
[76133](https://github.com/flutter/flutter/pull/76133) Support --run-skipped in "flutter test" and pass through to package:test (cla: yes, tool, waiting for tree to go green)
[76134](https://github.com/flutter/flutter/pull/76134) Revert "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76143](https://github.com/flutter/flutter/pull/76143) Update all packages (cla: yes, team, tool)
[76146](https://github.com/flutter/flutter/pull/76146) Added clearSnackBars method to ScaffoldMessengerState (cla: yes, f: material design, framework, waiting for tree to go green)
[76153](https://github.com/flutter/flutter/pull/76153) Do not fail if 9xth_percentile_memory_usage is not recorded (cla: yes, team, team: flakes, waiting for tree to go green)
[76157](https://github.com/flutter/flutter/pull/76157) Remove "unnecessary" imports in flutter_test (a: tests, cla: yes, framework, waiting for tree to go green)
[76158](https://github.com/flutter/flutter/pull/76158) Remove "unnecessary" imports in flutter_driver (a: tests, cla: yes, framework, waiting for tree to go green)
[76159](https://github.com/flutter/flutter/pull/76159) Remove "unnecessary" imports. (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[76162](https://github.com/flutter/flutter/pull/76162) Const constructor audit. (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[76167](https://github.com/flutter/flutter/pull/76167) Reland: Removed ButtonBar from AlertDialog #75676 (cla: yes, f: material design, framework)
[76173](https://github.com/flutter/flutter/pull/76173) Scrollbar updates for native Android behavior (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[76174](https://github.com/flutter/flutter/pull/76174) Use a null default skip value in testWidgets so it can inherit the group's skip flag (a: tests, cla: yes, framework, waiting for tree to go green)
[76179](https://github.com/flutter/flutter/pull/76179) Revert "Timer based pointer event resampling" (cla: yes, framework)
[76181](https://github.com/flutter/flutter/pull/76181) Minor ui.TextStyle toString test improvement (cla: yes, framework, waiting for tree to go green)
[76192](https://github.com/flutter/flutter/pull/76192) [flutter_tools] Deferred components build system (cla: yes, severe: new feature, tool, waiting for tree to go green)
[76195](https://github.com/flutter/flutter/pull/76195) Reland: Timer based pointer event resampling (cla: yes, framework)
[76200](https://github.com/flutter/flutter/pull/76200) [flutter_tools] Support Integration Tests (cla: yes, team, tool, waiting for tree to go green)
[76217](https://github.com/flutter/flutter/pull/76217) Revert "Roll Engine from 6993cb229b99 to 9bcb3bfb0ecb (6 revisions)" (cla: yes, engine)
[76221](https://github.com/flutter/flutter/pull/76221) Added ElevatedButton code sample (cla: yes, f: material design, framework, waiting for tree to go green)
[76223](https://github.com/flutter/flutter/pull/76223) Output unexpected Podfile.lock contents on test failure (cla: yes, team, waiting for tree to go green)
[76232](https://github.com/flutter/flutter/pull/76232) Revert "Remove some `dynamic's." (cla: yes, framework)
[76238](https://github.com/flutter/flutter/pull/76238) Reland: Removed ButtonBar from AlertDialog #75676 (#76167) (cla: yes, f: material design, framework)
[76239](https://github.com/flutter/flutter/pull/76239) Remove some `dynamic`s (mark II) (cla: yes, framework, waiting for tree to go green)
[76241](https://github.com/flutter/flutter/pull/76241) [fuchsia] - migrate device discovery workflows to use ffx (cla: yes, team, tool, waiting for tree to go green)
[76246](https://github.com/flutter/flutter/pull/76246) Removed ButtonBar from the Scaffold and About widgets (cla: yes, f: material design, framework)
[76251](https://github.com/flutter/flutter/pull/76251) Add missing widget of the week video links to API docs (cla: yes, f: material design, framework, waiting for tree to go green)
[76252](https://github.com/flutter/flutter/pull/76252) [flutter_tools] remove mock process manager from gradle tests (cla: yes, tool)
[76254](https://github.com/flutter/flutter/pull/76254) update all packages (cla: yes, team, waiting for tree to go green)
[76258](https://github.com/flutter/flutter/pull/76258) [flutter_tools] allow bypassing context for FlutterProject creation, remove fromPath (cla: yes, tool, waiting for tree to go green)
[76260](https://github.com/flutter/flutter/pull/76260) Remove mocks from visual_studio_test (cla: yes, team, tool)
[76264](https://github.com/flutter/flutter/pull/76264) MockProcessManager -> FakeProcessManager in os_test (cla: yes, team, tool, waiting for tree to go green)
[76266](https://github.com/flutter/flutter/pull/76266) Swap Mocks to Fakes in build_fuchsia_test (cla: yes, team, tool, waiting for tree to go green)
[76268](https://github.com/flutter/flutter/pull/76268) [flutter_tools] replace some mock file/directories with new op handle (cla: yes, tool, waiting for tree to go green)
[76272](https://github.com/flutter/flutter/pull/76272) Add assertion of recordable list (cla: yes, f: material design, framework, waiting for tree to go green)
[76274](https://github.com/flutter/flutter/pull/76274) Swap Mocks to Fakes in config_test and other tests (cla: yes, team, tool, waiting for tree to go green)
[76275](https://github.com/flutter/flutter/pull/76275) Remove one TODO (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[76276](https://github.com/flutter/flutter/pull/76276) Adopt FakeProcess, remove MockProcess (cla: yes, team, tool, waiting for tree to go green)
[76277](https://github.com/flutter/flutter/pull/76277) [flutter_tools] remove Artifacts dependency from globals in gradle, remove MockArtifacts from test (cla: yes, tool)
[76278](https://github.com/flutter/flutter/pull/76278) Remove a14n todos (cla: yes, f: cupertino, framework)
[76279](https://github.com/flutter/flutter/pull/76279) Adopt FileExceptionHandler in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76280](https://github.com/flutter/flutter/pull/76280) Delete MockResidentCompiler (cla: yes, team, tool, waiting for tree to go green)
[76282](https://github.com/flutter/flutter/pull/76282) Adopt TestUsage in flutter_command_test (cla: yes, team, tool)
[76312](https://github.com/flutter/flutter/pull/76312) add keyboardDismissBehavior into SingleChildScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)
[76327](https://github.com/flutter/flutter/pull/76327) Keep the selection after 'Copy' pressed on iOS. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[76330](https://github.com/flutter/flutter/pull/76330) [flutter_tools] remove global usage of flutterUsage from gradle (cla: yes, tool, waiting for tree to go green)
[76331](https://github.com/flutter/flutter/pull/76331) Remove deprecated TypeMatcher (cla: yes, framework, severe: API break, team, waiting for tree to go green)
[76339](https://github.com/flutter/flutter/pull/76339) Add fix for BottomNavigationBarItem.title -> label (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[76341](https://github.com/flutter/flutter/pull/76341) Upload logs before failing module_test_ios (cla: yes, team)
[76342](https://github.com/flutter/flutter/pull/76342) [flutter_tools] unify gradle/android sdk reinitialize checks in cache.dart (cla: yes, tool)
[76343](https://github.com/flutter/flutter/pull/76343) Added the ability to bring up the date picker dialogs in calendar or text input only mode. (cla: yes, f: material design, framework)
[76345](https://github.com/flutter/flutter/pull/76345) Update PULL_REQUEST_TEMPLATE.md checkbox order (cla: yes, waiting for tree to go green)
[76354](https://github.com/flutter/flutter/pull/76354) Adopt Artifacts.test(localEngine:) in a few tests (cla: yes, team, tool, waiting for tree to go green)
[76355](https://github.com/flutter/flutter/pull/76355) Remove mockito from windows_device_test (cla: yes, team, tool, waiting for tree to go green)
[76358](https://github.com/flutter/flutter/pull/76358) Add mac_ios luci tests. (cla: yes, team)
[76381](https://github.com/flutter/flutter/pull/76381) Cherrypick engine to c53a160d7092ce4ec77f773d439a46881bc4b76d (cla: yes, engine)
[76382](https://github.com/flutter/flutter/pull/76382) Add sharding options to test command line (cla: yes, tool, waiting for tree to go green)
[76385](https://github.com/flutter/flutter/pull/76385) Revert "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions)" (cla: yes, engine)
[76387](https://github.com/flutter/flutter/pull/76387) Refactor tabbar code sample (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[76392](https://github.com/flutter/flutter/pull/76392) [Fonts] Make it possible to run update_icons in google3 (cla: yes, team)
[76394](https://github.com/flutter/flutter/pull/76394) Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)" (cla: yes, engine, team)
[76400](https://github.com/flutter/flutter/pull/76400) [flutter_tools] Refactor DeferredComponents validator and add build target (cla: yes, tool, waiting for tree to go green)
[76403](https://github.com/flutter/flutter/pull/76403) Revert "Reland "Roll Engine from 6993cb229b99 to c217d9d06e4f (60 revisions) (#76352)"" (cla: yes, engine, team)
[76406](https://github.com/flutter/flutter/pull/76406) Do not show embedding warning for plugins when example app is missing (cla: yes, platform-android, tool, waiting for tree to go green)
[76409](https://github.com/flutter/flutter/pull/76409) Roll Gallery (required by the latest engine update and Dart SDK) (cla: yes, team)
[76414](https://github.com/flutter/flutter/pull/76414) Skip assemble version check in tool backend scripts (cla: yes, tool)
[76415](https://github.com/flutter/flutter/pull/76415) [devicelab] Separate build and test from Flutter gallery tests (a: accessibility, cla: yes, team, waiting for tree to go green)
[76416](https://github.com/flutter/flutter/pull/76416) [flutter_tools] remove globals and mocks from android gradle builder and test (cla: yes, tool)
[76420](https://github.com/flutter/flutter/pull/76420) Update all packages and upgrade to path_provider 2.0.0-nullsafety (cla: yes, team, tool)
[76425](https://github.com/flutter/flutter/pull/76425) Remove unused flutter_driver_screenshot integration test (cla: yes, team, waiting for tree to go green)
[76426](https://github.com/flutter/flutter/pull/76426) Remove unused ios_add2app integration test (cla: yes, team)
[76429](https://github.com/flutter/flutter/pull/76429) Remove unused android_splash_screens integration test (cla: yes, team, waiting for tree to go green)
[76430](https://github.com/flutter/flutter/pull/76430) Remove unused image_loading integration test (cla: yes, team)
[76433](https://github.com/flutter/flutter/pull/76433) Turn on desktop and web integration tests for beta and stable (a: desktop, cla: yes, team, waiting for tree to go green)
[76436](https://github.com/flutter/flutter/pull/76436) Remove unused imports of system libraries. (cla: yes, tool, waiting for tree to go green)
[76477](https://github.com/flutter/flutter/pull/76477) Remove deprecated author field in pubspec.yml templates (cla: yes, tool)
[76493](https://github.com/flutter/flutter/pull/76493) Add menuMaxHeight for DropdownButton (cla: yes, f: material design, framework, waiting for tree to go green)
[76511](https://github.com/flutter/flutter/pull/76511) Upgrade packages to pick up vm_snapshot_analysis fixes (cla: yes, team)
[76532](https://github.com/flutter/flutter/pull/76532) [Fonts] Improve update_icons script (cla: yes, f: material design, framework, team)
[76542](https://github.com/flutter/flutter/pull/76542) Add a EdgeInsetsDirectional.all constructor similar to EdgeInsets.all (cla: yes, framework, waiting for tree to go green)
[76552](https://github.com/flutter/flutter/pull/76552) Mark linux_android_stack_size_test not flaky (cla: yes, team, waiting for tree to go green)
[76554](https://github.com/flutter/flutter/pull/76554) Build more integration tests during pre-submit (cla: yes, d: examples, team)
[76561](https://github.com/flutter/flutter/pull/76561) Disable warnings for the dart plugin registrant (cla: yes, tool)
[76572](https://github.com/flutter/flutter/pull/76572) Revert "Remove unused flutter_driver_screenshot integration test" (cla: yes, team)
[76575](https://github.com/flutter/flutter/pull/76575) Remove unused flutter_driver_screenshot integration test (cla: yes, team, waiting for tree to go green)
[76576](https://github.com/flutter/flutter/pull/76576) Remove mac/ios agents and remove flaky flag from mac/ios on LUCI. (cla: yes, team)
[76579](https://github.com/flutter/flutter/pull/76579) [flutter_tools] Don't stringify null values in EventPrinter (cla: yes, tool, waiting for tree to go green)
[76600](https://github.com/flutter/flutter/pull/76600) Dispose image when cache clear (cla: yes, framework, waiting for tree to go green)
[76607](https://github.com/flutter/flutter/pull/76607) [Fonts] Update material icons (cla: yes, f: material design, framework)
[76618](https://github.com/flutter/flutter/pull/76618) [flutter_tools] enable experimental invalidation everywhere (cla: yes, tool, waiting for tree to go green)
[76627](https://github.com/flutter/flutter/pull/76627) Revert "fixes TextInputFormatter gets wrong old value of a selection β¦ (cla: yes, f: cupertino, f: material design, framework)
[76633](https://github.com/flutter/flutter/pull/76633) Check for a closed output stream in the devicelab ADB log reader (cla: yes, team, waiting for tree to go green)
[76637](https://github.com/flutter/flutter/pull/76637) [flutter_releases] Flutter 1.26.0-17.7.pre Beta Framework Cherrypicks (cla: yes, engine)
[76641](https://github.com/flutter/flutter/pull/76641) Hide selection handles from semantics (cla: yes, f: material design, framework)
[76642](https://github.com/flutter/flutter/pull/76642) [devicelab] Add expectation test for upload metrics (cla: yes, team, waiting for tree to go green)
[76645](https://github.com/flutter/flutter/pull/76645) Enable dart_plugin_registry_test (cla: yes, team, waiting for tree to go green)
[76650](https://github.com/flutter/flutter/pull/76650) [flutter_tools] cache adb path (cla: yes, tool, waiting for tree to go green)
[76653](https://github.com/flutter/flutter/pull/76653) Reland "fixes TextInputFormatter gets wrong old value of a selection" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[76656](https://github.com/flutter/flutter/pull/76656) [web] Arrow keys change selected item in dropdown (cla: yes, f: focus, f: material design, framework, platform-web, waiting for tree to go green)
[76658](https://github.com/flutter/flutter/pull/76658) Add gallery integration iOS UI integration test (cla: yes, team, waiting for tree to go green)
[76662](https://github.com/flutter/flutter/pull/76662) Disable clang format in the plugin registrants (cla: yes, tool, waiting for tree to go green)
[76665](https://github.com/flutter/flutter/pull/76665) Move iOS framework thinning into the tool as assemble target (cla: yes, platform-ios, t: xcode, tool)
[76673](https://github.com/flutter/flutter/pull/76673) Update all packages (cla: yes, team, waiting for tree to go green)
[76679](https://github.com/flutter/flutter/pull/76679) [flutter_tools] Fail fast when test dependencies are missing (cla: yes, tool, waiting for tree to go green)
[76691](https://github.com/flutter/flutter/pull/76691) [Fonts] Sort material icons (cla: yes, f: material design, framework, team)
[76714](https://github.com/flutter/flutter/pull/76714) [flutter_tools] add unit test for error 32 in cache deletion (cla: yes, tool, waiting for tree to go green)
[76720](https://github.com/flutter/flutter/pull/76720) [flutter_releases] Flutter 1.26.0-17.8.pre Beta Framework Cherrypicks (cla: yes, engine)
[76721](https://github.com/flutter/flutter/pull/76721) [flutter_tools] replace vm_service extension methods with wrapper class (cla: yes, tool)
[76724](https://github.com/flutter/flutter/pull/76724) [flutter_tools] fix comment in resident web runner (cla: yes, tool, waiting for tree to go green)
[76725](https://github.com/flutter/flutter/pull/76725) [flutter_tools] remove process manager mocks from error_handling_io tests (cla: yes, tool, waiting for tree to go green)
[76731](https://github.com/flutter/flutter/pull/76731) Fix codesign test: ios-deploy does not need entitlements (cla: yes, team, waiting for tree to go green)
[76732](https://github.com/flutter/flutter/pull/76732) Move a second batch of mac/ios tests to prod. (cla: yes, team)
[76739](https://github.com/flutter/flutter/pull/76739) Exposing ScrollBehaviors for app-wide settings (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[76743](https://github.com/flutter/flutter/pull/76743) [flutter_tools] remove remaining extensions (cla: yes, tool, waiting for tree to go green)
[76745](https://github.com/flutter/flutter/pull/76745) Toggleable Refactor (cla: yes, f: material design, framework, waiting for tree to go green)
[76747](https://github.com/flutter/flutter/pull/76747) [flutter_tools] remove mockito from mdns client test (cla: yes, tool, waiting for tree to go green)
[76748](https://github.com/flutter/flutter/pull/76748) [flutter_tools] migrate async guard to null safety (cla: yes, tool)
[76752](https://github.com/flutter/flutter/pull/76752) Clarify what AndroidMotionEvent is for. (cla: yes, framework, waiting for tree to go green)
[76764](https://github.com/flutter/flutter/pull/76764) Fix DropdownButton crash when viewport size is too small for the entirety of the menu's height (cla: yes, f: material design, framework, waiting for tree to go green)
[76793](https://github.com/flutter/flutter/pull/76793) Revert "Roll Engine from 93cb5dbbc700 to 867e51b76256 (3 revisions)" (cla: yes, engine)
[76800](https://github.com/flutter/flutter/pull/76800) Remove failing 32-bit iOS benchmarks (cla: yes, team, waiting for tree to go green)
[76802](https://github.com/flutter/flutter/pull/76802) [flutter_tools] switch FakeCache to cache.test and NoopUsage to TestUsage (cla: yes, tool)
[76803](https://github.com/flutter/flutter/pull/76803) Mark smoke_catalina_hot_mode_dev_cycle_ios__benchmark flaky (cla: yes, team)
[76806](https://github.com/flutter/flutter/pull/76806) [flutter_tools] simplify packages pass-through testing (cla: yes, tool, waiting for tree to go green)
[76810](https://github.com/flutter/flutter/pull/76810) Removed BottomNavigationBar accentColor dependency (cla: yes, f: material design, framework)
[76812](https://github.com/flutter/flutter/pull/76812) [flutter_tools] remove mock from terminal test (cla: yes, tool)
[76813](https://github.com/flutter/flutter/pull/76813) [flutter_tools] remove mock from cmake project migrator (cla: yes, tool, waiting for tree to go green)
[76820](https://github.com/flutter/flutter/pull/76820) Update dartdoc to 0.40.0. (cla: yes, team, waiting for tree to go green)
[76821](https://github.com/flutter/flutter/pull/76821) [flutter_tools] replace most MockBuildSystem instances with TestBuildSystem (cla: yes, tool, waiting for tree to go green)
[76829](https://github.com/flutter/flutter/pull/76829) Remove dead ensureDirectoryExists (cla: yes, team, tool, waiting for tree to go green)
[76830](https://github.com/flutter/flutter/pull/76830) Add ephemeral iOS directory to put future generated files (cla: yes, platform-ios, tool, waiting for tree to go green)
[76831](https://github.com/flutter/flutter/pull/76831) [customer_testing] Refactor runner to be testable (cla: yes, team, waiting for tree to go green)
[76833](https://github.com/flutter/flutter/pull/76833) Opt into CocoaPods parallel codesigning (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[76834](https://github.com/flutter/flutter/pull/76834) Stop trying to thin iOS App.framework (cla: yes, t: xcode, tool, waiting for tree to go green)
[76838](https://github.com/flutter/flutter/pull/76838) Remove dart_plugin_registry_test timeouts (cla: yes, team, team: flakes, waiting for tree to go green)
[76842](https://github.com/flutter/flutter/pull/76842) Declare DragTarget onMove event as taking a generic parameter (cla: yes, framework, waiting for tree to go green)
[76847](https://github.com/flutter/flutter/pull/76847) Add system channel to access the localization plugin. (cla: yes, framework)
[76877](https://github.com/flutter/flutter/pull/76877) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework)
[76884](https://github.com/flutter/flutter/pull/76884) [flutter_tools] remove all mock artifacts usage (cla: yes, tool)
[76887](https://github.com/flutter/flutter/pull/76887) [flutter_tools] remove mocks from android SDK tests (cla: yes, tool, waiting for tree to go green)
[76892](https://github.com/flutter/flutter/pull/76892) Reland "ListTile Material Ripple and Shape Patch (#74373)" (cla: yes, f: material design, framework)
[76898](https://github.com/flutter/flutter/pull/76898) Fix prepare package (cla: yes, team)
[76904](https://github.com/flutter/flutter/pull/76904) Revert "Removed CheckboxListTile accentColor dependency" (cla: yes, f: material design, framework)
[76906](https://github.com/flutter/flutter/pull/76906) Removed RadioListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76908](https://github.com/flutter/flutter/pull/76908) Removed CheckboxListTile accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[76909](https://github.com/flutter/flutter/pull/76909) Removed SwitchListTile accentColor dependency (cla: yes, f: material design, framework)
[76960](https://github.com/flutter/flutter/pull/76960) Move flaky flag from the remainin mac/ios tests. (cla: yes, team)
[76963](https://github.com/flutter/flutter/pull/76963) changed 'constrains' to 'constraints' in ChildLayoutHelper.dryLayoutC⦠(cla: yes, framework, waiting for tree to go green)
[76992](https://github.com/flutter/flutter/pull/76992) Sort icon last (cla: yes, f: material design, framework)
[76999](https://github.com/flutter/flutter/pull/76999) conditionally set --verbose flag to curl when LUCI_CI is set (cla: yes)
[77001](https://github.com/flutter/flutter/pull/77001) Add TextLeadingDistribution to TextStyle (cla: yes, f: material design, framework, waiting for tree to go green)
[77004](https://github.com/flutter/flutter/pull/77004) Removed ListTile accentColor dependency (cla: yes, f: material design, framework, team, waiting for tree to go green)
[77007](https://github.com/flutter/flutter/pull/77007) Move iOS Flutter.framework thinning into copy assemble build target (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77010](https://github.com/flutter/flutter/pull/77010) Remove flaky flag from ios32 builders. (cla: yes, team)
[77011](https://github.com/flutter/flutter/pull/77011) Fix typo in web template (cla: yes, tool, waiting for tree to go green)
[77012](https://github.com/flutter/flutter/pull/77012) Sync lints (cla: yes, waiting for tree to go green)
[77013](https://github.com/flutter/flutter/pull/77013) Enable avoid_type_to_string lint (cla: yes, waiting for tree to go green)
[77014](https://github.com/flutter/flutter/pull/77014) Expose the diff from ComparisonResult (a: tests, cla: yes, framework, waiting for tree to go green)
[77022](https://github.com/flutter/flutter/pull/77022) SliverAppBar default backwards compatibility fix (cla: yes, f: material design, framework, waiting for tree to go green)
[77024](https://github.com/flutter/flutter/pull/77024) Adds set text semantics action to render editable (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77025](https://github.com/flutter/flutter/pull/77025) Update minimum required version to Xcode 12 (cla: yes, t: xcode, tool, waiting for tree to go green)
[77026](https://github.com/flutter/flutter/pull/77026) Change some dynamics to Object? and document slot better (cla: yes, f: cupertino, framework, waiting for tree to go green)
[77027](https://github.com/flutter/flutter/pull/77027) Enable missing_whitespace_between_adjacent_strings (cla: yes, f: material design, framework, team, tool)
[77028](https://github.com/flutter/flutter/pull/77028) Turn on iOS podspec linting in test (a: tests, cla: yes, t: xcode, team)
[77032](https://github.com/flutter/flutter/pull/77032) enable use_key_in_widget_constructors lint (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77039](https://github.com/flutter/flutter/pull/77039) RawKeyboardWindows: Filter out IME events (cla: yes, framework, waiting for tree to go green)
[77064](https://github.com/flutter/flutter/pull/77064) [flutter_tools] remove mock from logger tests (cla: yes, tool)
[77066](https://github.com/flutter/flutter/pull/77066) [flutter_tools] remove chrome launcher, analytics mock from web unit tests (cla: yes, tool, waiting for tree to go green)
[77068](https://github.com/flutter/flutter/pull/77068) Revert "Toggable Refactor" (cla: yes, f: material design, framework)
[77086](https://github.com/flutter/flutter/pull/77086) Revert "[devicelab] Separate build and test from Flutter gallery tests" (a: accessibility, cla: yes, team)
[77087](https://github.com/flutter/flutter/pull/77087) Enable file_names and package_names lints (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[77090](https://github.com/flutter/flutter/pull/77090) Add instructions to integration_test example README (a: tests, cla: yes, framework, waiting for tree to go green)
[77093](https://github.com/flutter/flutter/pull/77093) Apply changes caused by https://github.com/flutter/flutter/pull/76662 (cla: yes, d: examples, team, waiting for tree to go green)
[77095](https://github.com/flutter/flutter/pull/77095) Enable null_closures (cla: yes, team, waiting for tree to go green)
[77098](https://github.com/flutter/flutter/pull/77098) Clean-up analysis_options files (a: internationalization, a: tests, cla: yes, d: examples, framework, team, waiting for tree to go green)
[77099](https://github.com/flutter/flutter/pull/77099) Turn on sized_box_for_whitespace lint, fix instances and tests. (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77105](https://github.com/flutter/flutter/pull/77105) Enable prefer_null_aware_operators lint (cla: yes, team, waiting for tree to go green)
[77106](https://github.com/flutter/flutter/pull/77106) enable provide_deprecation_message (cla: yes, team, waiting for tree to go green)
[77107](https://github.com/flutter/flutter/pull/77107) Improve error messaging and documentation for Scrollbar.isAlwaysShown (a: error message, cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)
[77110](https://github.com/flutter/flutter/pull/77110) [devicelab] Create test command to pass task args (cla: yes, team, waiting for tree to go green)
[77113](https://github.com/flutter/flutter/pull/77113) Enable deprecation consistency (cla: yes, team, waiting for tree to go green)
[77118](https://github.com/flutter/flutter/pull/77118) Align more closely with package:test (a: accessibility, a: tests, cla: yes, d: examples, f: material design, framework, team, tool, waiting for tree to go green)
[77153](https://github.com/flutter/flutter/pull/77153) Update all versions! (cla: yes, team)
[77154](https://github.com/flutter/flutter/pull/77154) enable build test, roll engine (cla: yes, engine, team, tool)
[77158](https://github.com/flutter/flutter/pull/77158) [flutter_tools] remove mock from android studio test (cla: yes, tool, waiting for tree to go green)
[77163](https://github.com/flutter/flutter/pull/77163) Enable use_function_type_syntax_for_parameters lint (a: tests, cla: yes, f: material design, framework, team, tool)
[77170](https://github.com/flutter/flutter/pull/77170) [flutter_tools] remove mocks from build_aar_test (cla: yes, tool, waiting for tree to go green)
[77172](https://github.com/flutter/flutter/pull/77172) Support block delete with word and line modifiers (a: text input, cla: yes, framework, waiting for tree to go green)
[77184](https://github.com/flutter/flutter/pull/77184) Store symlinks in package archive (cla: yes, team, waiting for tree to go green)
[77186](https://github.com/flutter/flutter/pull/77186) use textdirection for gradient of ShapeDecoration (cla: yes, framework, waiting for tree to go green)
[77192](https://github.com/flutter/flutter/pull/77192) Increase dart migrate integration test timeout (cla: yes, team, team: flakes, tool, waiting for tree to go green)
[77194](https://github.com/flutter/flutter/pull/77194) [flutter_releases] Fix symlinks in prepare_packages script (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77202](https://github.com/flutter/flutter/pull/77202) [template] removes unused import from Kotlin and Android pluign template (cla: yes, tool, waiting for tree to go green)
[77204](https://github.com/flutter/flutter/pull/77204) Roll Engine from cd0e54348b61 to 72bbc5d92ce1 (cla: yes, engine)
[77220](https://github.com/flutter/flutter/pull/77220) [flutter_tools] Generalize waitForExtension (cla: yes, tool)
[77228](https://github.com/flutter/flutter/pull/77228) Add Windows desktop files for manual tests (a: desktop, cla: yes, platform-windows, team)
[77230](https://github.com/flutter/flutter/pull/77230) Add supported custom font formats in official docs (cla: yes, framework, waiting for tree to go green)
[77261](https://github.com/flutter/flutter/pull/77261) [flutter_tools] dont crash when looking for AS4.1 on windows with no LOCALAPPDATA (cla: yes, tool, waiting for tree to go green)
[77263](https://github.com/flutter/flutter/pull/77263) Re-land "Toggable Refactor (#76745)" (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77264](https://github.com/flutter/flutter/pull/77264) [flutter_tools] remove several AndroidSdk Mocks (cla: yes, tool, waiting for tree to go green)
[77286](https://github.com/flutter/flutter/pull/77286) Revert "[showModalBottomSheet] fix: showModalBottomSheet does not mov⦠(cla: yes, f: material design, framework, waiting for tree to go green)
[77287](https://github.com/flutter/flutter/pull/77287) Fix semantics node id overflow issue (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77288](https://github.com/flutter/flutter/pull/77288) FocusableActionDetector now exposes descendantsAreFocusable property (cla: yes, framework, waiting for tree to go green)
[77294](https://github.com/flutter/flutter/pull/77294) Enable avoid_unnecessary_containers lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77295](https://github.com/flutter/flutter/pull/77295) disable semantics test for adding Set Text action in engine (a: accessibility, cla: yes, framework, waiting for tree to go green)
[77307](https://github.com/flutter/flutter/pull/77307) [devicelab] Create BuildTestTask (cla: yes, team, waiting for tree to go green)
[77316](https://github.com/flutter/flutter/pull/77316) Delete unzipped FlutterMacOS.framework before replacing artifact (cla: yes, platform-mac, tool, waiting for tree to go green)
[77327](https://github.com/flutter/flutter/pull/77327) Fix typo (cla: yes, d: examples, team)
[77329](https://github.com/flutter/flutter/pull/77329) Bitcode strip Flutter.framework in assemble build target (cla: yes, platform-ios, team, tool)
[77386](https://github.com/flutter/flutter/pull/77386) Roll Engine from 299eb3e710c1 to 67abe7f9a9e4 (13 revisions) (a: tests, cla: yes, engine, framework)
[77390](https://github.com/flutter/flutter/pull/77390) [flutter_tools] replace MockFlutterVersion usage with fake where possible, move from context (cla: yes, tool, waiting for tree to go green)
[77398](https://github.com/flutter/flutter/pull/77398) enable prefer_function_declarations_over_variables lint (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[77399](https://github.com/flutter/flutter/pull/77399) [flutter_tools] add tool feature/scaffold for UWP (cla: yes, tool, waiting for tree to go green)
[77400](https://github.com/flutter/flutter/pull/77400) [flutter_tools] migrate to null safe mustache (cla: yes, team, waiting for tree to go green)
[77405](https://github.com/flutter/flutter/pull/77405) Fix typo in Windows template (cla: yes, team, tool, waiting for tree to go green)
[77410](https://github.com/flutter/flutter/pull/77410) Fix missing root Scaffold check in ScaffoldMessenger (cla: yes, f: material design, f: routes, framework, severe: crash, waiting for tree to go green)
[77414](https://github.com/flutter/flutter/pull/77414) InteractiveViewer.builder (cla: yes, framework, waiting for tree to go green)
[77419](https://github.com/flutter/flutter/pull/77419) fix Autovalidate enum references in fix data (cla: yes, cp: 2.0, cp: 2.0 completed, f: cupertino, f: material design, framework, waiting for tree to go green)
[77420](https://github.com/flutter/flutter/pull/77420) Add debug_second_compile_millis benchmark metric (cla: yes, platform-android, platform-ios, team, team: benchmark, waiting for tree to go green)
[77424](https://github.com/flutter/flutter/pull/77424) archiveing -> archiving (cla: yes, tool, waiting for tree to go green)
[77427](https://github.com/flutter/flutter/pull/77427) Declare NavigationRailDestination.label as non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[77428](https://github.com/flutter/flutter/pull/77428) Add iOS archive codesign test (cla: yes, platform-ios, team, waiting for tree to go green)
[77432](https://github.com/flutter/flutter/pull/77432) [flutter_tools] remove most globals from resident web runner (cla: yes, tool, waiting for tree to go green)
[77434](https://github.com/flutter/flutter/pull/77434) Enable unnecessary_await_in_return lint (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[77454](https://github.com/flutter/flutter/pull/77454) Fix a legacy TODO (a: tests, cla: yes, framework, team, waiting for tree to go green)
[77463](https://github.com/flutter/flutter/pull/77463) [docs] added flutter-fix and dart-fix public links (cla: yes, framework, waiting for tree to go green)
[77497](https://github.com/flutter/flutter/pull/77497) Update ClampingScrollSimulation to better match Android (cla: yes, framework, waiting for tree to go green)
[77559](https://github.com/flutter/flutter/pull/77559) Remove "unnecessary" import in build_appbundle_test (cla: yes, tool)
[77566](https://github.com/flutter/flutter/pull/77566) Increase timeouts to fix build integration timeout flakes (cla: yes, tool)
[77606](https://github.com/flutter/flutter/pull/77606) [Docs] RouteObserver<PageRoute> cannot subscribe ModalRoute (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77608](https://github.com/flutter/flutter/pull/77608) Provide caret rect to text input plugin (cla: yes, framework, waiting for tree to go green)
[77612](https://github.com/flutter/flutter/pull/77612) Fixed Action code sample in the documentation had a bug issue #77591 (cla: yes, framework, waiting for tree to go green)
[77625](https://github.com/flutter/flutter/pull/77625) Manual plugins roll to 3acc0cf03051a2888b06753ebe7c4cc22ced191a (cla: yes)
[77637](https://github.com/flutter/flutter/pull/77637) Increase activated devtools version to 2.0 (cla: yes, team)
[77648](https://github.com/flutter/flutter/pull/77648) Fix package declarations for add-to-app integration tests (cla: yes, team, waiting for tree to go green)
[77651](https://github.com/flutter/flutter/pull/77651) [fuchsia] remove no devices found from ffx parsing (cla: yes, team, tool, waiting for tree to go green)
[77652](https://github.com/flutter/flutter/pull/77652) Removed MaterialApp accentColor dependency. (cla: yes, f: material design, framework)
[77653](https://github.com/flutter/flutter/pull/77653) [Analyze] Make deprecation note analyzer clearer on quote misuse (cla: yes, team)
[77657](https://github.com/flutter/flutter/pull/77657) Explain why devtools in pinned (cla: yes, team, waiting for tree to go green)
[77664](https://github.com/flutter/flutter/pull/77664) Move iOS codesigning into assemble build target (cla: yes, platform-ios, t: xcode, tool)
[77666](https://github.com/flutter/flutter/pull/77666) DropdownItems with a null value should still display its child (cla: yes, f: material design, framework, waiting for tree to go green)
[77689](https://github.com/flutter/flutter/pull/77689) add final keywork (cla: yes, framework, waiting for tree to go green)
[77719](https://github.com/flutter/flutter/pull/77719) Remove unnecessary question marks (cla: yes, framework, waiting for tree to go green)
[77727](https://github.com/flutter/flutter/pull/77727) [flutter_tools] simplify platform null safety (cla: yes, tool)
[77730](https://github.com/flutter/flutter/pull/77730) Fix gesture recognizer in selectable rich text should be focusable in⦠(cla: yes, framework, waiting for tree to go green)
[77731](https://github.com/flutter/flutter/pull/77731) [flutter_tools] remove mock processes from batch compile_test (cla: yes, tool)
[77732](https://github.com/flutter/flutter/pull/77732) Removed Stepper accentColor dependency (cla: yes, f: material design, framework, waiting for tree to go green)
[77733](https://github.com/flutter/flutter/pull/77733) [Hero] toHero flightShuttleBuilder overrides fromHero flightShuttleBuilder (cla: yes, framework, waiting for tree to go green)
[77738](https://github.com/flutter/flutter/pull/77738) [flutter_tools] migrate some base libraries to null safety (cla: yes, tool, waiting for tree to go green)
[77739](https://github.com/flutter/flutter/pull/77739) [DatePicker] Don't jump to the current month (cla: yes, f: material design, framework, waiting for tree to go green)
[77744](https://github.com/flutter/flutter/pull/77744) Removed PaginatedDataTable accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77748](https://github.com/flutter/flutter/pull/77748) [flutter_tools] simplify fake imports for FakeProcessManager (cla: yes, tool, waiting for tree to go green)
[77749](https://github.com/flutter/flutter/pull/77749) Remove mockito deps from dev (cla: yes, team, tool, waiting for tree to go green)
[77751](https://github.com/flutter/flutter/pull/77751) Refactor: Move mouse cursor classes to "services" package (cla: yes, f: material design, framework, waiting for tree to go green)
[77753](https://github.com/flutter/flutter/pull/77753) Fix UNNECESSARY_TYPE_CHECK_TRUE hints. (cla: yes, framework, waiting for tree to go green)
[77754](https://github.com/flutter/flutter/pull/77754) Add mouseCursor, onEnter, and onExit to TextSpan (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[77755](https://github.com/flutter/flutter/pull/77755) Fix scrollbar hit testing based on pointer device kind (a: desktop, a: quality, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[77756](https://github.com/flutter/flutter/pull/77756) Implement iOS app install deltas (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[77757](https://github.com/flutter/flutter/pull/77757) Remove mock from event_printer_test (cla: yes, tool, waiting for tree to go green)
[77760](https://github.com/flutter/flutter/pull/77760) [flutter_tools] remove mocks from features test (cla: yes, tool, waiting for tree to go green)
[77769](https://github.com/flutter/flutter/pull/77769) [FloatingActionButtonLocation] Avoid docked FAB to be clipped by the software keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[77789](https://github.com/flutter/flutter/pull/77789) Rename 'moduleName' to 'componentName' (cla: yes, framework, waiting for tree to go green)
[77793](https://github.com/flutter/flutter/pull/77793) [FloatingActionButtonLocation] Add spacing between placement entries in documentation (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[77825](https://github.com/flutter/flutter/pull/77825) Make LocalFileComparator.compare easier to override (a: tests, cla: yes, framework, waiting for tree to go green)
[77837](https://github.com/flutter/flutter/pull/77837) non-breaking changes recommended by prefer_mixin lint (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[77840](https://github.com/flutter/flutter/pull/77840) Cherrypick engine to 711ab3fda05004ee5f6035f2a0bf099fca39a129 (cla: yes, engine)
[77844](https://github.com/flutter/flutter/pull/77844) Fix some issues flagged by unawaited_futures lint (cla: yes, f: material design, framework, waiting for tree to go green)
[77850](https://github.com/flutter/flutter/pull/77850) [flutter_releases] Flutter 2.0.2 Stable Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[77859](https://github.com/flutter/flutter/pull/77859) Do not replace text with semantics labels in selectable text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[77861](https://github.com/flutter/flutter/pull/77861) Spelling standardization: implementer (cla: yes, d: api docs, waiting for tree to go green)
[77863](https://github.com/flutter/flutter/pull/77863) Autocomplete dartpad examples fix (cla: yes, f: material design, framework)
[77864](https://github.com/flutter/flutter/pull/77864) ShaderMask on web for CupertinoContextMenu (cla: yes, f: cupertino, framework)
[77867](https://github.com/flutter/flutter/pull/77867) [flutter_tools] read expression compilation results before starting next compilation (cla: yes, tool)
[77868](https://github.com/flutter/flutter/pull/77868) Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[77879](https://github.com/flutter/flutter/pull/77879) [State Restoration] Material Date Picker (a: state restoration, cla: yes, f: date/time picker, f: material design, framework, waiting for tree to go green)
[77881](https://github.com/flutter/flutter/pull/77881) Add minWidth constraint to RawChip when materialTapTargetSize is padded (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[77884](https://github.com/flutter/flutter/pull/77884) Removed RefreshIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77926](https://github.com/flutter/flutter/pull/77926) Add libgcrypt as an explicit dependancy on Linux (cla: yes, tool, waiting for tree to go green)
[77933](https://github.com/flutter/flutter/pull/77933) Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
[77942](https://github.com/flutter/flutter/pull/77942) Refactor: use one subprojects property (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)
[77945](https://github.com/flutter/flutter/pull/77945) Update mockito dep and remove usage in manual tests and localizations (cla: yes, team, tool, waiting for tree to go green)
[77951](https://github.com/flutter/flutter/pull/77951) Update composing rect documentation (cla: yes, framework)
[77953](https://github.com/flutter/flutter/pull/77953) [flutter_tools] remove globals from terminal (cla: yes, tool, waiting for tree to go green)
[77955](https://github.com/flutter/flutter/pull/77955) [flutter_tools] io cleanups to simplify null safety migration (cla: yes, tool, waiting for tree to go green)
[77956](https://github.com/flutter/flutter/pull/77956) [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[77961](https://github.com/flutter/flutter/pull/77961) [flutter_tools] provide more context for invalidation (cla: yes, tool, waiting for tree to go green)
[77962](https://github.com/flutter/flutter/pull/77962) Remove MockFlutterVersions (cla: yes, team, tool, waiting for tree to go green)
[77968](https://github.com/flutter/flutter/pull/77968) Remove mocks from web devices test (cla: yes, team, tool, waiting for tree to go green)
[77969](https://github.com/flutter/flutter/pull/77969) [flutter_tools] simplify shutdown hooks (cla: yes, tool, waiting for tree to go green)
[77976](https://github.com/flutter/flutter/pull/77976) Removed ProgressIndicator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77980](https://github.com/flutter/flutter/pull/77980) Fix sample lint warnings (cla: yes, framework)
[77982](https://github.com/flutter/flutter/pull/77982) Use flutter-cirrus gke cluster for framework tasks. (cla: yes, team, waiting for tree to go green)
[77983](https://github.com/flutter/flutter/pull/77983) Remove MockBuildSystem from generate_synthetic_packages_test (cla: yes, team, tool, waiting for tree to go green)
[77985](https://github.com/flutter/flutter/pull/77985) MockProcessUtils->FakeProcessManager in version_test (cla: yes, team, tool, waiting for tree to go green)
[77986](https://github.com/flutter/flutter/pull/77986) Remove mocks from build_windows_test (cla: yes, team, tool, waiting for tree to go green)
[77988](https://github.com/flutter/flutter/pull/77988) MockOperatingSystemUtils -> FakeOperatingSystemUtils (cla: yes, team, tool, waiting for tree to go green)
[77991](https://github.com/flutter/flutter/pull/77991) Remove mock from cocoapods_validator_test (cla: yes, team, tool)
[77994](https://github.com/flutter/flutter/pull/77994) ConstraintsTransformBox (cla: yes, framework, waiting for tree to go green)
[77997](https://github.com/flutter/flutter/pull/77997) Removed TabPageSelector accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[77999](https://github.com/flutter/flutter/pull/77999) Removed InputDecorator accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78004](https://github.com/flutter/flutter/pull/78004) Fix documentation for Scrollbar.radius (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[78018](https://github.com/flutter/flutter/pull/78018) Fixed Buttons with icon RenderFlex overflow (cla: yes, f: material design, framework)
[78037](https://github.com/flutter/flutter/pull/78037) [flutter_tools] check for cygwin uname in entrypoint scripts (cla: yes, tool, waiting for tree to go green)
[78051](https://github.com/flutter/flutter/pull/78051) Fix bug in ButtonStyle.lerp(), in _LerpSides (cla: yes, f: material design, framework, waiting for tree to go green)
[78055](https://github.com/flutter/flutter/pull/78055) [integration_test] delay for at least one frame timing. (a: tests, cla: yes, framework, waiting for tree to go green)
[78058](https://github.com/flutter/flutter/pull/78058) Fix CupertinoTextField incorrect background color when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[78065](https://github.com/flutter/flutter/pull/78065) Revert "f4c513eb8 Fix missing declaration of windows' default_package (flutter/plugins#3705) (#78025)" (cla: yes)
[78067](https://github.com/flutter/flutter/pull/78067) [flutter_tools] scaffolding for Windows UWP template (cla: yes, tool, waiting for tree to go green)
[78078](https://github.com/flutter/flutter/pull/78078) Enable subshard builders for pre-submit (cla: yes, team, waiting for tree to go green)
[78079](https://github.com/flutter/flutter/pull/78079) [flutter_tools] Deferred components: Encode base module loading units in manifest metadata (cla: yes, tool, waiting for tree to go green)
[78081](https://github.com/flutter/flutter/pull/78081) Table widget rendering bug (cla: yes, framework, waiting for tree to go green)
[78085](https://github.com/flutter/flutter/pull/78085) Allow local networking Info.plist insertion to fail (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[78089](https://github.com/flutter/flutter/pull/78089) Remove MockFlutterVersion from mocks (cla: yes, team, tool)
[78092](https://github.com/flutter/flutter/pull/78092) Remove mocks from compile_expression_test (cla: yes, team, tool)
[78113](https://github.com/flutter/flutter/pull/78113) [flutter_tools] Add support for custom devices (cla: yes, tool, waiting for tree to go green)
[78140](https://github.com/flutter/flutter/pull/78140) CupertinoTextField to show disabled background color when decoration is null (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78143](https://github.com/flutter/flutter/pull/78143) Update docs to reflect Null Safety (cla: yes, d: api docs, d: examples, documentation, framework)
[78161](https://github.com/flutter/flutter/pull/78161) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[78166](https://github.com/flutter/flutter/pull/78166) [flutter_tools] Fix avdmanager path detection (cla: yes, tool, waiting for tree to go green)
[78202](https://github.com/flutter/flutter/pull/78202) Dedup CupertinoAlertDialog and CupertinoActionSheet source code (cla: yes, f: cupertino, framework, waiting for tree to go green)
[78218](https://github.com/flutter/flutter/pull/78218) Make KeySet.hashCode a late final (cla: yes, framework, waiting for tree to go green)
[78253](https://github.com/flutter/flutter/pull/78253) [flutter_tools] Add support for versioned Android cmdline tools (cla: yes, tool)
[78259](https://github.com/flutter/flutter/pull/78259) Point "flutter build ipa --analyze-size" to archive app output (a: existing-apps, cla: yes, tool, waiting for tree to go green)
[78263](https://github.com/flutter/flutter/pull/78263) Remove keyLabel and debugName from Logical/PhysicalKeyboardKey (a: tests, cla: yes, framework, team)
[78269](https://github.com/flutter/flutter/pull/78269) Inline some element methods for better stack overflow affinity (cla: yes, framework, waiting for tree to go green)
[78272](https://github.com/flutter/flutter/pull/78272) Download platform artifacts from assemble if needed (cla: yes, t: gradle, t: xcode, tool, waiting for tree to go green)
[78276](https://github.com/flutter/flutter/pull/78276) Remove MockStdIn and MockStream (cla: yes, team, tool, waiting for tree to go green)
[78279](https://github.com/flutter/flutter/pull/78279) Remove mocks from cocoapods_test (cla: yes, team, tool, waiting for tree to go green)
[78281](https://github.com/flutter/flutter/pull/78281) Added iconColor and textColor properties to ExpansionTile (cla: yes, f: material design, framework)
[78296](https://github.com/flutter/flutter/pull/78296) Removed FloatingActionButton accentColor dependency. (cla: yes, f: material design, framework)
[78302](https://github.com/flutter/flutter/pull/78302) Change the material docs link (cla: yes, f: material design, framework, waiting for tree to go green)
[78311](https://github.com/flutter/flutter/pull/78311) [Fonts] Update material icons (cla: yes, f: material design, framework)
[78317](https://github.com/flutter/flutter/pull/78317) [Fonts] Fix update_icons double newline bug (cla: yes, team, waiting for tree to go green)
[78329](https://github.com/flutter/flutter/pull/78329) Revert "Align more closely with package:test" (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[78343](https://github.com/flutter/flutter/pull/78343) Align more closely with package:test (#77118) (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[78353](https://github.com/flutter/flutter/pull/78353) [flutter_tools] remove globals from logger (cla: yes, tool)
[78355](https://github.com/flutter/flutter/pull/78355) Revert "[devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
[78357](https://github.com/flutter/flutter/pull/78357) [flutter_tools] remove globals from process, fs (cla: yes, tool)
[78359](https://github.com/flutter/flutter/pull/78359) [flutter_tools] migrate context to null safety (cla: yes, tool)
[78361](https://github.com/flutter/flutter/pull/78361) Reland [devicelab] Migrate Gallery to BuildTestTask (a: accessibility, cla: yes, team, waiting for tree to go green)
[78371](https://github.com/flutter/flutter/pull/78371) Removed accentTextTheme references from Typography API doc (cla: yes, f: material design, framework)
[78375](https://github.com/flutter/flutter/pull/78375) Removed accentColor refs from API docs (cla: yes, f: material design, framework)
[78378](https://github.com/flutter/flutter/pull/78378) Removed accentColor and accentTextTheme dependencies from flutter_gallery (cla: yes, f: material design, team, waiting for tree to go green)
[78380](https://github.com/flutter/flutter/pull/78380) [flutter_tools] handle OSError 2 from current working directory (cla: yes, tool)
[78381](https://github.com/flutter/flutter/pull/78381) Add test for dart compilation error build output (cla: yes, team, tool, waiting for tree to go green)
[78386](https://github.com/flutter/flutter/pull/78386) Try fixing web tool tests on windows (cla: yes, tool)
[78388](https://github.com/flutter/flutter/pull/78388) Spell check for analysis_options.yaml (cla: yes, waiting for tree to go green)
[78395](https://github.com/flutter/flutter/pull/78395) fix the position of popup menu when have unsafe area (cla: yes, f: material design, framework, waiting for tree to go green)
[78406](https://github.com/flutter/flutter/pull/78406) Command `flutter create` respects disabled iOS and Android (cla: yes, tool)
[78415](https://github.com/flutter/flutter/pull/78415) Revert "Add libblkid / liblzma / libgcrypt as an explicit dependancy on Linux" (cla: yes, team, tool)
[78428](https://github.com/flutter/flutter/pull/78428) Include validation for DatePicker and DateRangePicker inputOnly mode (cla: yes, f: date/time picker, f: material design, framework)
[78430](https://github.com/flutter/flutter/pull/78430) Add Linux shard builders to Flutter build dashboard (cla: yes, team, waiting for tree to go green)
[78449](https://github.com/flutter/flutter/pull/78449) Remove accentColor et al. from tests (cla: yes, f: material design, framework, team)
[78450](https://github.com/flutter/flutter/pull/78450) Add restorationId to Material/CupertinoPage (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78459](https://github.com/flutter/flutter/pull/78459) add mac/windows shard builders as flaky (cla: yes, team)
[78464](https://github.com/flutter/flutter/pull/78464) Fix typos in keyboard code (cla: yes, framework, waiting for tree to go green)
[78474](https://github.com/flutter/flutter/pull/78474) [flutter_releases] Flutter Beta 2.1.0-12.2.pre Framework Cherrypicks (cla: yes, engine, tool)
[78478](https://github.com/flutter/flutter/pull/78478) Fix error when choose noon on time picker (cla: yes, f: material design, framework, waiting for tree to go green)
[78482](https://github.com/flutter/flutter/pull/78482) Add trace logging to local engine path autodetection (cla: yes, tool)
[78483](https://github.com/flutter/flutter/pull/78483) Remove flaky flag for Linux shard builders (cla: yes, team, waiting for tree to go green)
[78484](https://github.com/flutter/flutter/pull/78484) Clean up ignores that are not ignoring anything (a: accessibility, cla: yes, f: cupertino, f: material design, framework)
[78489](https://github.com/flutter/flutter/pull/78489) [flutter_releases] Flutter Stable 2.0.3 Framework Cherrypicks (cla: yes, f: cupertino, f: material design, framework, team, tool)
[78490](https://github.com/flutter/flutter/pull/78490) Clean-up ignores that are not ignoring anything (dev/ edition) (cla: yes, team, waiting for tree to go green)
[78493](https://github.com/flutter/flutter/pull/78493) Clean up ignores that are not ignoring anything (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[78496](https://github.com/flutter/flutter/pull/78496) Parse engine src path from an absolute --local-engine (cla: yes, team, tool)
[78497](https://github.com/flutter/flutter/pull/78497) Migrate our custom ignore syntax to flutter_ignore (cla: yes, framework, team, tool, waiting for tree to go green)
[78501](https://github.com/flutter/flutter/pull/78501) Remove whitespace directionality formatter (cla: yes, f: material design, framework, waiting for tree to go green)
[78505](https://github.com/flutter/flutter/pull/78505) Remove flaky flag for Mac and Windows shard builders (cla: yes, team)
[78506](https://github.com/flutter/flutter/pull/78506) [State Restoration] Material DateRangePicker, adds some general state restoration tests (a: state restoration, cla: yes, f: date/time picker, f: material design, framework)
[78508](https://github.com/flutter/flutter/pull/78508) Move web tool test per-test timeout to shard (cla: yes, team, tool)
[78523](https://github.com/flutter/flutter/pull/78523) Custom PopupMenuItem padding (cla: yes, f: material design, framework)
[78557](https://github.com/flutter/flutter/pull/78557) Update all versions and remove vm_service_client dependency (cla: yes, team, tool)
[78559](https://github.com/flutter/flutter/pull/78559) [devicelab] remove vm_service_client from devicelab (cla: yes, team)
[78568](https://github.com/flutter/flutter/pull/78568) Manually close the tree for https://github.com/flutter/flutter/issues/78567 (cla: yes, team)
[78573](https://github.com/flutter/flutter/pull/78573) Mac word modifier TextEditingActions (cla: yes, framework, waiting for tree to go green)
[78574](https://github.com/flutter/flutter/pull/78574) Removed GridTileBar accentColor dependency. (cla: yes, f: material design, framework, waiting for tree to go green)
[78576](https://github.com/flutter/flutter/pull/78576) Removed DayPicker dependence on accentColor. (cla: yes, f: material design, framework, waiting for tree to go green)
[78581](https://github.com/flutter/flutter/pull/78581) leading distribution docs (cla: yes, framework, waiting for tree to go green)
[78584](https://github.com/flutter/flutter/pull/78584) Revert "Fix a legacy TODO" (a: tests, cla: yes, framework, team)
[78588](https://github.com/flutter/flutter/pull/78588) Automatically applying Scrollbars on desktop platforms with configurable ScrollBehaviors (a: desktop, cla: yes, customer: crowd, f: cupertino, f: material design, framework, platform-web, severe: API break, severe: new feature, waiting for tree to go green)
[78592](https://github.com/flutter/flutter/pull/78592) Skip linking against Flutter for CocoaPods transitive dependencies (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[78619](https://github.com/flutter/flutter/pull/78619) Enable null safety by default in templates (cla: yes, tool)
[78623](https://github.com/flutter/flutter/pull/78623) Reverts "Implement dartPluginClass support for plugins #74469" (cla: yes, d: examples, team, tool)
[78624](https://github.com/flutter/flutter/pull/78624) [flutter_tools] add skeleton for build uwp (cla: yes, tool)
[78630](https://github.com/flutter/flutter/pull/78630) Revert "Fix a legacy TODO (#77454)" (#78584) (a: tests, cla: yes, framework, team)
[78633](https://github.com/flutter/flutter/pull/78633) Fixes AlertDialog and SimpleDialog to not merge their content semantics (cla: yes, f: material design, framework, waiting for tree to go green)
[78636](https://github.com/flutter/flutter/pull/78636) Standardize tool test subshard selection (cla: yes, team, waiting for tree to go green)
[78647](https://github.com/flutter/flutter/pull/78647) Revert "Manually close the tree for https://github.com/flutter/flutter/issues/78567" (cla: yes, team)
[78654](https://github.com/flutter/flutter/pull/78654) roll more versions (cla: yes, team, waiting for tree to go green)
[78658](https://github.com/flutter/flutter/pull/78658) Add fix for RectangularSliderTrackShape (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78661](https://github.com/flutter/flutter/pull/78661) Revert "ConstraintsTransformBox" (cla: yes, framework)
[78663](https://github.com/flutter/flutter/pull/78663) Remove "unnecessary" imports in packages/flutter/lib. (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78664](https://github.com/flutter/flutter/pull/78664) Remove "unnecessary" imports in test/general.shards. (cla: yes, tool, waiting for tree to go green)
[78665](https://github.com/flutter/flutter/pull/78665) Remove "unnecessary" imports in test/commands.shard. (cla: yes, tool, waiting for tree to go green)
[78666](https://github.com/flutter/flutter/pull/78666) Remove "unnecessary" imports. (cla: yes, tool, waiting for tree to go green)
[78669](https://github.com/flutter/flutter/pull/78669) Remove ignores that are not ignoring anything (cla: yes, team, tool, waiting for tree to go green)
[78672](https://github.com/flutter/flutter/pull/78672) Add fixes for [InputDecoration, InputDecorationTheme] hasFloatingPlaceholder -> floatingLabelBehavior (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78673](https://github.com/flutter/flutter/pull/78673) Reland "ConstraintsTransformBox (#77994)" reverted in (#78661) (cla: yes, framework, waiting for tree to go green)
[78674](https://github.com/flutter/flutter/pull/78674) Add '--protocol-traffic-log' option to 'analyze' command. (cla: yes, tool, waiting for tree to go green)
[78678](https://github.com/flutter/flutter/pull/78678) Update cluster. (cla: yes, team, team: infra)
[78707](https://github.com/flutter/flutter/pull/78707) Don't call onChanged callbacks when formatter rejects the change & handle text input formatter exceptions. (cla: yes, framework, waiting for tree to go green)
[78731](https://github.com/flutter/flutter/pull/78731) Add MaterialStateBorderSide.resolveWith (cla: yes, f: material design, framework)
[78738](https://github.com/flutter/flutter/pull/78738) Improve documentation for PointerSignalResolver class (cla: yes, framework)
[78755](https://github.com/flutter/flutter/pull/78755) Typo fixes (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[78757](https://github.com/flutter/flutter/pull/78757) [State Restoration] Code sample templates, migrate existing code samples (a: state restoration, cla: yes, d: api docs, f: cupertino, f: material design, framework, team)
[78764](https://github.com/flutter/flutter/pull/78764) remove codesign.dart (cla: yes, team)
[78771](https://github.com/flutter/flutter/pull/78771) Removed TimePicker dependence on accentTextTheme. (cla: yes, f: material design, framework)
[78778](https://github.com/flutter/flutter/pull/78778) [gen-l10n] Remove need for ignoring two lints in generated code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[78806](https://github.com/flutter/flutter/pull/78806) Pass the --disable-dds flag through to dwds (cla: yes, tool, waiting for tree to go green)
[78808](https://github.com/flutter/flutter/pull/78808) Add dismiss action to modal barrier (cla: yes, framework)
[78812](https://github.com/flutter/flutter/pull/78812) Migrate Gradle repo from jcenter to mavenCentral in dev projects (a: accessibility, cla: yes, t: gradle, team, team: flakes, tool)
[78815](https://github.com/flutter/flutter/pull/78815) Automatically activate testfield in macOS when receives accessibility⦠(cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[78816](https://github.com/flutter/flutter/pull/78816) [flutter_tools] migrate io, process, logger, terminal (cla: yes, tool)
[78817](https://github.com/flutter/flutter/pull/78817) Slight cleanup in PointerSignalResolver docs (cla: yes, framework)
[78822](https://github.com/flutter/flutter/pull/78822) Take screenshot when drive fails (a: accessibility, cla: yes, team, team: flakes, tool)
[78823](https://github.com/flutter/flutter/pull/78823) Update Podfile.lock modified timestamp when pod install is run (cla: yes, platform-ios, tool, waiting for tree to go green)
[78824](https://github.com/flutter/flutter/pull/78824) Record deferred components assets in AssetManifest.json (cla: yes, tool, waiting for tree to go green)
[78825](https://github.com/flutter/flutter/pull/78825) Revert "Fixed Buttons with icon RenderFlex overflow" (cla: yes, f: material design, framework, waiting for tree to go green)
[78836](https://github.com/flutter/flutter/pull/78836) Make version and time in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78843](https://github.com/flutter/flutter/pull/78843) Make language_version in flutter_tool null safe (a: null-safety, cla: yes, team, tool)
[78845](https://github.com/flutter/flutter/pull/78845) Migrate flutter_tool tool helper files to null safety (a: null-safety, cla: yes, team, tool)
[78854](https://github.com/flutter/flutter/pull/78854) Check if `MultiChildRenderObjectElement` has an associated RO (cla: yes, framework, waiting for tree to go green)
[78867](https://github.com/flutter/flutter/pull/78867) Revert "InteractiveViewer.builder" (cla: yes, framework)
[78885](https://github.com/flutter/flutter/pull/78885) Exclude CI from tool root check (cla: yes, team, tool)
[78888](https://github.com/flutter/flutter/pull/78888) Add split Linux docs jobs to prod builder json (cla: yes, team, waiting for tree to go green)
[78890](https://github.com/flutter/flutter/pull/78890) Resolved contradictory documentation of showGeneralDialog and default value of 'barrierLabel' argument (cla: yes, framework, waiting for tree to go green)
[78892](https://github.com/flutter/flutter/pull/78892) Migrate command_help to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78893](https://github.com/flutter/flutter/pull/78893) Migrate signals.dart to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[78896](https://github.com/flutter/flutter/pull/78896) Migrate flutter_tools file_system to null safety (a: null-safety, cla: yes, team, tool)
[78897](https://github.com/flutter/flutter/pull/78897) Add dart Fix for TextSelectionThemeData (cla: yes, f: material design, framework, team, waiting for tree to go green)
[78901](https://github.com/flutter/flutter/pull/78901) Migrate flutter_tools os.dart to null safety (a: null-safety, cla: yes, team, tool)
[78910](https://github.com/flutter/flutter/pull/78910) Update packages to pick up new process version (cla: yes, team)
[78911](https://github.com/flutter/flutter/pull/78911) [flutter_tools] fix deletion of gradle wrapper artifacts in cache (cla: yes, tool, waiting for tree to go green)
[78913](https://github.com/flutter/flutter/pull/78913) [flutter_tools] handle concurrent modification in signal callback (cla: yes, tool)
[78915](https://github.com/flutter/flutter/pull/78915) [flutter_tools] remove suite channel access from web tests (cla: yes, tool, waiting for tree to go green)
[78919](https://github.com/flutter/flutter/pull/78919) Fix rendereditable to check the latest text before setting the selection (cla: yes, f: material design, framework, waiting for tree to go green)
[78922](https://github.com/flutter/flutter/pull/78922) Migrate flutter_tool net.dart to null safety (a: null-safety, cla: yes, team, tool)
[78923](https://github.com/flutter/flutter/pull/78923) Migrate android_console to null safety (a: null-safety, cla: yes, team, tool)
[78928](https://github.com/flutter/flutter/pull/78928) change all dynamic slot to Object type (cla: yes, f: cupertino, f: material design, framework)
[78932](https://github.com/flutter/flutter/pull/78932) Migrate error_handling_io to null safety (a: null-safety, cla: yes, team, tool)
[78933](https://github.com/flutter/flutter/pull/78933) Fix hit testing in PointerSignalResolver sample (cla: yes, framework)
[78934](https://github.com/flutter/flutter/pull/78934) Migrate deferred_components_validator to null safety (a: null-safety, cla: yes, team, tool)
[78939](https://github.com/flutter/flutter/pull/78939) Migrate localizations_utils to null safety (a: null-safety, cla: yes, team, tool)
[78942](https://github.com/flutter/flutter/pull/78942) Migrate visual_studio to null safety (a: null-safety, cla: yes, team, tool)
[78943](https://github.com/flutter/flutter/pull/78943) Migrate platform_plugins to null safety (a: null-safety, cla: yes, team, tool)
[78944](https://github.com/flutter/flutter/pull/78944) Migrate flutter_project_metadata to null safety (a: null-safety, cla: yes, team, tool)
[78949](https://github.com/flutter/flutter/pull/78949) Migrate device_port_forwarder to null safety (a: null-safety, cla: yes, team, tool)
[78954](https://github.com/flutter/flutter/pull/78954) [flutter_tools] throwToolExit should return Never (cla: yes, tool, waiting for tree to go green)
[78961](https://github.com/flutter/flutter/pull/78961) Support WebSockets for dwds injected client (cla: yes, tool, waiting for tree to go green)
[78975](https://github.com/flutter/flutter/pull/78975) [gen-l10n] Remove more ignores, conditionally generate some code (a: internationalization, cla: yes, tool, waiting for tree to go green)
[78984](https://github.com/flutter/flutter/pull/78984) [SliverAppBar] Improve dartpad sample in documentation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[78988](https://github.com/flutter/flutter/pull/78988) [flutter_tools] migrate tool_backend.dart to null safety and add testing of exit conditions (cla: yes, tool, waiting for tree to go green)
[78990](https://github.com/flutter/flutter/pull/78990) InteractiveViewer should call onInteractionUpdate even when gesture is disabled (cla: yes, framework, waiting for tree to go green)
[78991](https://github.com/flutter/flutter/pull/78991) Manually close the tree (cla: yes, team)
[78992](https://github.com/flutter/flutter/pull/78992) Revert "Roll Plugins from d7125cdb91c0 to ce1cf17352f1 (17 revisions)" (cla: yes)
[78995](https://github.com/flutter/flutter/pull/78995) [flutter_tools] use existing service implementations for web (cla: yes, tool, waiting for tree to go green)
[79002](https://github.com/flutter/flutter/pull/79002) Manual roll engine to d59a01d to b5e15d0 (15 commits) (cla: yes, engine, waiting for tree to go green, will affect goldens)
[79003](https://github.com/flutter/flutter/pull/79003) [flutter] use null aware operators for function invocations (cla: yes, f: material design, framework, waiting for tree to go green)
[79005](https://github.com/flutter/flutter/pull/79005) Revert "Remove keyLabel and debugName from Logical/PhysicalKeyboardKey" (a: tests, cla: yes, framework, team)
[79006](https://github.com/flutter/flutter/pull/79006) Revert "Manually close the tree" (cla: yes, team)
[79008](https://github.com/flutter/flutter/pull/79008) [ci] Run same script to analyze plugins as flutter/plugins. (cla: yes, team, waiting for tree to go green)
[79009](https://github.com/flutter/flutter/pull/79009) Updated TimePickerThemeData API doc (cla: yes, f: material design, framework, waiting for tree to go green)
[79010](https://github.com/flutter/flutter/pull/79010) Removed unnecessary ! in net.dart (cla: yes, tool)
[79014](https://github.com/flutter/flutter/pull/79014) Revert "Remove whitespace directionality formatter" (cla: yes, framework)
[79015](https://github.com/flutter/flutter/pull/79015) Reland "Remove whitespace directionality formatter (#78501)" reverted in #79014 (cla: yes, framework, waiting for tree to go green)
[79016](https://github.com/flutter/flutter/pull/79016) Split globals.dart into null safe and unsafe libraries (a: null-safety, cla: yes, team, tool)
[79024](https://github.com/flutter/flutter/pull/79024) Removed the built-in overlay from ReorderableListView. (cla: yes, f: material design, framework, will affect goldens)
[79027](https://github.com/flutter/flutter/pull/79027) [Fonts] Remove update_icons TODO (cla: yes, f: material design, framework, team, waiting for tree to go green)
[79034](https://github.com/flutter/flutter/pull/79034) [flutter_test] make showKeyboard respect finder's skipOffstage value (a: tests, cla: yes, framework, waiting for tree to go green)
[79047](https://github.com/flutter/flutter/pull/79047) [flutter_tools] Remove reference to Fuchsia pm genkey and -k (cla: yes, tool)
[79049](https://github.com/flutter/flutter/pull/79049) use null aware operators for function invocations (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79051](https://github.com/flutter/flutter/pull/79051) [web] Fix text field shortcuts when inside a scroll area (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-web, waiting for tree to go green)
[79052](https://github.com/flutter/flutter/pull/79052) [flutter_tools] separate concept of null safe language version from current language version (cla: yes, tool)
[79053](https://github.com/flutter/flutter/pull/79053) Revert "Removed accentColor dependency from ExpansionTile" (cla: yes, f: material design, framework, waiting for tree to go green)
[79056](https://github.com/flutter/flutter/pull/79056) Fix web text field shortcuts (cla: yes, framework, waiting for tree to go green)
[79058](https://github.com/flutter/flutter/pull/79058) Revert "[Fonts] Update material icons (#78311)" (cla: yes, f: material design, framework)
[79061](https://github.com/flutter/flutter/pull/79061) Refactor text editing test APIs (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79071](https://github.com/flutter/flutter/pull/79071) Fix missed ignores (cla: yes, framework, tool)
[79085](https://github.com/flutter/flutter/pull/79085) Redo fix for button.icon layout overflow (cla: yes, f: material design, framework)
[79088](https://github.com/flutter/flutter/pull/79088) [versions] roll many versions (cla: yes, team, tool)
[79090](https://github.com/flutter/flutter/pull/79090) Add timeline summary entries to capture vsync frame lag (a: tests, cla: yes, framework, waiting for tree to go green)
[79099](https://github.com/flutter/flutter/pull/79099) [versions] roll to latest test (a: tests, cla: yes, framework, team)
[79100](https://github.com/flutter/flutter/pull/79100) Make LogicalKeyboardKey.keyLabel a getter and better (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79108](https://github.com/flutter/flutter/pull/79108) Migrate gen_l10n_types to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79111](https://github.com/flutter/flutter/pull/79111) Migrate file_store to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79119](https://github.com/flutter/flutter/pull/79119) Revert "Roll Engine from b5e15d055d13 to 6f27f892d95e (27 revisions)" (cla: yes, engine)
[79160](https://github.com/flutter/flutter/pull/79160) Clarify documentation for DragAnchorStrategy. (cla: yes, framework, team, waiting for tree to go green)
[79163](https://github.com/flutter/flutter/pull/79163) Add a test to exercise multiple async microtasks in frame workload (cla: yes, team, waiting for tree to go green)
[79167](https://github.com/flutter/flutter/pull/79167) [flutter_tools] make flutter.gradle compatible with 7 rc1 (cla: yes, tool, waiting for tree to go green)
[79173](https://github.com/flutter/flutter/pull/79173) [flutter_tools] guard L service extension in debug mode (cla: yes, tool, waiting for tree to go green)
[79193](https://github.com/flutter/flutter/pull/79193) docs: add an example to ReorderableListView.builder (cla: yes, f: material design, framework)
[79217](https://github.com/flutter/flutter/pull/79217) Revert "Make LogicalKeyboardKey.keyLabel a getter and better" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79239](https://github.com/flutter/flutter/pull/79239) Remove references to @required in favor of the `required` keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[79258](https://github.com/flutter/flutter/pull/79258) Add tests for integration tests to devicelab (cla: yes, team, waiting for tree to go green)
[79263](https://github.com/flutter/flutter/pull/79263) [gen-l10n] Add `nullable-getter` flag (a: internationalization, cla: yes, tool, waiting for tree to go green)
[79289](https://github.com/flutter/flutter/pull/79289) Drain socket before throwing (a: images, cla: yes, framework, waiting for tree to go green)
[79295](https://github.com/flutter/flutter/pull/79295) Enable android semantics integration test (a: accessibility, cla: yes, team, waiting for tree to go green)
[79296](https://github.com/flutter/flutter/pull/79296) skip android semantics integration test to enable engine roll (a: accessibility, cla: yes, team, waiting for tree to go green)
[79297](https://github.com/flutter/flutter/pull/79297) Add scrollbar tests for simultaneous scroll/drag (a: tests, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[79299](https://github.com/flutter/flutter/pull/79299) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79300](https://github.com/flutter/flutter/pull/79300) Revert "Let InkWell/Ink/ancestor support GlobalKey so that splash doe⦠(cla: yes, f: material design, framework)
[79302](https://github.com/flutter/flutter/pull/79302) Reland Make LogicalKeyboardKey.keyLabel a getter and better #79100 (a: tests, cla: yes, framework, team, waiting for tree to go green)
[79304](https://github.com/flutter/flutter/pull/79304) Update dartdoc to 0.41.0 (cla: yes, team, waiting for tree to go green)
[79308](https://github.com/flutter/flutter/pull/79308) Makes text selection match the native behavior (cla: yes, framework, waiting for tree to go green)
[79310](https://github.com/flutter/flutter/pull/79310) Always write full timeline before summary (a: tests, cla: yes, framework, team)
[79317](https://github.com/flutter/flutter/pull/79317) Mark flutter_gallery__transition_perf_e2e_ios32 flaky (cla: yes, team)
[79321](https://github.com/flutter/flutter/pull/79321) Empty commit to trigger rerun of tests after a recipe change (cla: yes)
[79322](https://github.com/flutter/flutter/pull/79322) Avoid hard coding "build" for test output files (cla: yes, team)
[79323](https://github.com/flutter/flutter/pull/79323) Revert "Mark flutter_gallery__transition_perf_e2e_ios32 flaky" (cla: yes, team)
[79324](https://github.com/flutter/flutter/pull/79324) Mark docs tests unflaky (cla: yes, team, waiting for tree to go green)
[79325](https://github.com/flutter/flutter/pull/79325) only cache release manifest files for 60 seconds (cla: yes, team)
[79329](https://github.com/flutter/flutter/pull/79329) fix tree (cla: yes, team)
[79332](https://github.com/flutter/flutter/pull/79332) Point gallery test data to FLUTTER_TEST_OUTPUTS_DIR (cla: yes, team, team: infra, waiting for tree to go green)
[79338](https://github.com/flutter/flutter/pull/79338) Allow writing startup_info.json to somewhere other than the build dir (cla: yes, tool, waiting for tree to go green)
[79342](https://github.com/flutter/flutter/pull/79342) Migrate code_signing to null safety (a: null-safety, cla: yes, team, tool)
[79343](https://github.com/flutter/flutter/pull/79343) Check for outdated Podfile before running pod install (cla: yes, tool)
[79346](https://github.com/flutter/flutter/pull/79346) Migrate event_printer and test_config to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79352](https://github.com/flutter/flutter/pull/79352) add missing trailing commas (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)
[79364](https://github.com/flutter/flutter/pull/79364) [Reland][Fonts] Update material icons (cla: yes, f: material design, framework)
[79379](https://github.com/flutter/flutter/pull/79379) [flutter_tools] do not make drive require pub if --no-pub is requested (cla: yes, tool, waiting for tree to go green)
[79382](https://github.com/flutter/flutter/pull/79382) Apply carriedVelocity unless substantially different (cla: yes, framework, waiting for tree to go green)
[79394](https://github.com/flutter/flutter/pull/79394) Remove animation_with_microtasks_perf_ios__timeline_summary from prod⦠(cla: yes, team, waiting for tree to go green)
[79396](https://github.com/flutter/flutter/pull/79396) Create dev/ci.yaml (cla: yes, team, waiting for tree to go green)
[79407](https://github.com/flutter/flutter/pull/79407) Rolls isKeyboardKey engine change with fix (a: accessibility, a: tests, cla: yes, engine, framework, waiting for tree to go green)
[79411](https://github.com/flutter/flutter/pull/79411) Empty commit to trigger Build (cla: yes)
[79412](https://github.com/flutter/flutter/pull/79412) add a link to the data driven file format docs (cla: yes, framework, waiting for tree to go green)
[79418](https://github.com/flutter/flutter/pull/79418) Do not run version check if generating shell completion and stdout isn't terminal (cla: yes, tool, waiting for tree to go green)
[79419](https://github.com/flutter/flutter/pull/79419) one more path (a: accessibility, cla: yes, team)
[79421](https://github.com/flutter/flutter/pull/79421) Add missing io import to complex_layout_semantics_perf (a: accessibility, cla: yes, team)
[79422](https://github.com/flutter/flutter/pull/79422) Remove some globals from the tool (cla: yes, tool)
[79434](https://github.com/flutter/flutter/pull/79434) add missing trailing commas (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[79454](https://github.com/flutter/flutter/pull/79454) [flutter_tools] remove globals from Device and separate FlutterDeviceManager (cla: yes, tool)
[79455](https://github.com/flutter/flutter/pull/79455) [flutter_tools] Move sksl writing out of vm_service (cla: yes, tool)
[79456](https://github.com/flutter/flutter/pull/79456) roll gallery version to fix build (team)
[79459](https://github.com/flutter/flutter/pull/79459) [flutter_tools] remove unused testbed method (cla: yes, tool)
[79460](https://github.com/flutter/flutter/pull/79460) [Stocks App] NNBD migration, refresh gen-l10n (a: internationalization, a: null-safety, cla: yes, team, waiting for tree to go green)
[79461](https://github.com/flutter/flutter/pull/79461) [flutter_tools] split application package factory dependencies (cla: yes, tool)
[79469](https://github.com/flutter/flutter/pull/79469) Migrate build_info to null safety (a: null-safety, cla: yes, team, tool)
[79470](https://github.com/flutter/flutter/pull/79470) Mark new_gallery__crane_perf flaky (cla: yes, team)
[79477](https://github.com/flutter/flutter/pull/79477) Revert "Mark new_gallery__crane_perf flaky" (cla: yes, team)
[79479](https://github.com/flutter/flutter/pull/79479) [ Web ] Register service extensions with DDS, not DWDS (cla: yes, tool, waiting for tree to go green)
[79481](https://github.com/flutter/flutter/pull/79481) Fix device_port_forwarder file name typo (cla: yes, team, tool, waiting for tree to go green)
[79484](https://github.com/flutter/flutter/pull/79484) Properly position the built-in drag handles on horizontal ReorderableListViews. (cla: yes, f: material design, framework, waiting for tree to go green)
[79486](https://github.com/flutter/flutter/pull/79486) [flutter_releases] Flutter Stable 2.0.4 Framework Cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[79489](https://github.com/flutter/flutter/pull/79489) Fix length formatter typo (cla: yes, f: material design, framework, waiting for tree to go green)
[79496](https://github.com/flutter/flutter/pull/79496) Mark ios32 device tests flaky to reopen build. (cla: yes, team)
[79500](https://github.com/flutter/flutter/pull/79500) Correct misspellings throughout the codebase (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[79501](https://github.com/flutter/flutter/pull/79501) [flutter_tools] Fix breakage when test main is tagged with @doNotStore (cla: yes, tool, waiting for tree to go green)
[79504](https://github.com/flutter/flutter/pull/79504) Migrate android_studio to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79506](https://github.com/flutter/flutter/pull/79506) `enterText` to move the caret to the end (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[79507](https://github.com/flutter/flutter/pull/79507) Fix import device_port_forwarder typo (cla: yes, tool)
[79514](https://github.com/flutter/flutter/pull/79514) Take screenshot when startup perf test fails to run (cla: yes, team, team: infra, waiting for tree to go green)
[79520](https://github.com/flutter/flutter/pull/79520) Remove the warning about the Integration Test plugin (cla: yes, team, tool, waiting for tree to go green)
[79521](https://github.com/flutter/flutter/pull/79521) [flutter_tools] Normalize test file paths before using them (cla: yes, tool, waiting for tree to go green)
[79525](https://github.com/flutter/flutter/pull/79525) Migrate analysis to null safety (a: null-safety, cla: yes, team, tool)
[79560](https://github.com/flutter/flutter/pull/79560) Revert "Mark ios32 device tests flaky to reopen build." (cla: yes, team)
[79561](https://github.com/flutter/flutter/pull/79561) Mark integration_test_test as flaky (cla: yes, team, waiting for tree to go green)
[79562](https://github.com/flutter/flutter/pull/79562) remove unnecessary trailing commas (cla: yes, f: cupertino, f: material design, framework)
[79566](https://github.com/flutter/flutter/pull/79566) [flutter_tools] use Url path.Context for joining URI (cla: yes, tool, waiting for tree to go green)
[79580](https://github.com/flutter/flutter/pull/79580) [flutter_tools] split cache into API and implementation (cla: yes, tool)
[79583](https://github.com/flutter/flutter/pull/79583) Restore support for the --local-engine flag in devicelab/bin/run.dart (cla: yes, team, waiting for tree to go green)
[79587](https://github.com/flutter/flutter/pull/79587) Migrate fingerprint to null safety (a: null-safety, cla: yes, team, tool)
[79590](https://github.com/flutter/flutter/pull/79590) Revert "Don't call onChanged callbacks when formatter rejects the change & handle text input formatter exceptions. (#78707)" (cla: yes, framework, waiting for tree to go green)
[79603](https://github.com/flutter/flutter/pull/79603) [flutter_tools] split features into 2 libraries, migrate to null safety (cla: yes, tool)
[79608](https://github.com/flutter/flutter/pull/79608) Remove "unnecessary" imports in test/widgets (cla: yes, framework, tool, waiting for tree to go green)
[79611](https://github.com/flutter/flutter/pull/79611) Migrate android_sdk and application_package to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79618](https://github.com/flutter/flutter/pull/79618) [flutter_tools] Remove special cased --no-chain-stack-traces (cla: yes, team, tool, waiting for tree to go green)
[79620](https://github.com/flutter/flutter/pull/79620) update CupertinoPicker.selectionOverlay to nullable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[79642](https://github.com/flutter/flutter/pull/79642) Add back button listener widget (cla: yes, framework, waiting for tree to go green)
[79650](https://github.com/flutter/flutter/pull/79650) add trailing comma when argList is splitted (cla: yes, d: examples, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[79654](https://github.com/flutter/flutter/pull/79654) Revert "`enterText` to move the caret to the end" (a: tests, cla: yes, f: material design, framework)
[79656](https://github.com/flutter/flutter/pull/79656) Reland 79654 (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[79657](https://github.com/flutter/flutter/pull/79657) [flutter_tools] consume package:process exceptions (cla: yes, tool, waiting for tree to go green)
[79665](https://github.com/flutter/flutter/pull/79665) [web] Enable material text field tests on web (a: tests, a: text input, cla: yes, f: material design, framework, platform-web, tech-debt, waiting for tree to go green, will affect goldens)
[79668](https://github.com/flutter/flutter/pull/79668) Fix typo: edition -> editing (a: text input, cla: yes, framework)
[79674](https://github.com/flutter/flutter/pull/79674) Revert "Support block delete with word and line modifiers (#77172)" (cla: yes, framework)
[79676](https://github.com/flutter/flutter/pull/79676) [flutter_tools] allow winuwp build to setup generated cmake file (cla: yes, tool, waiting for tree to go green)
[79682](https://github.com/flutter/flutter/pull/79682) Migrate doctor_validator to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79695](https://github.com/flutter/flutter/pull/79695) Support block delete with word and line modifiers (cla: yes, framework)
[79743](https://github.com/flutter/flutter/pull/79743) Update the `Dismissible` code sample (cla: yes, d: examples, framework, waiting for tree to go green)
[79771](https://github.com/flutter/flutter/pull/79771) Fix typo in scroll_activity.dart (cla: yes, framework, waiting for tree to go green)
[79795](https://github.com/flutter/flutter/pull/79795) Update dartdoc to 0.42.0 (cla: yes, team, waiting for tree to go green)
[79801](https://github.com/flutter/flutter/pull/79801) Migrate tools chrome.dart to null safety (a: null-safety, cla: yes, team, tool)
[79804](https://github.com/flutter/flutter/pull/79804) Migrate linux_doctor to null safety (a: null-safety, cla: yes, team, tool)
[79805](https://github.com/flutter/flutter/pull/79805) Migrate vscode to null safety (a: null-safety, cla: yes, team, tool)
[79806](https://github.com/flutter/flutter/pull/79806) Migrate android_workflow to null safety (a: null-safety, cla: yes, team, tool)
[79807](https://github.com/flutter/flutter/pull/79807) Migrate some workflows and doctor validators to null safety (a: null-safety, cla: yes, team, tool)
[79813](https://github.com/flutter/flutter/pull/79813) Migrate intellij_validator to null safety (a: null-safety, cla: yes, team, tool)
[79816](https://github.com/flutter/flutter/pull/79816) Fix an NNBD error in the Gallery text form field demo (cla: yes, f: material design, team, waiting for tree to go green)
[79817](https://github.com/flutter/flutter/pull/79817) [web] Enable Cupertino text field tests on web (a: tests, a: text input, cla: yes, f: cupertino, framework, platform-web, tech-debt, waiting for tree to go green)
[79827](https://github.com/flutter/flutter/pull/79827) [flutter_tools] generate empty plugin registrants for winuwp and fix local engine for winuwp_ (cla: yes, tool)
[79828](https://github.com/flutter/flutter/pull/79828) Revert "Fix error when choose noon on time picker (#78478)" (cla: yes, f: material design, framework)
[79829](https://github.com/flutter/flutter/pull/79829) Redo Removed accentColor dependency from ExpansionTile (cla: yes, f: material design, framework, waiting for tree to go green)
[79842](https://github.com/flutter/flutter/pull/79842) fix cupertino refresh control style (cla: yes, f: cupertino, framework, waiting for tree to go green)
[79864](https://github.com/flutter/flutter/pull/79864) [flutter_tools] migrate cache to null safety (cla: yes, tool, waiting for tree to go green)
[79877](https://github.com/flutter/flutter/pull/79877) Fix RenderEditable register the raw keyboard listener twice (cla: yes, framework)
[79888](https://github.com/flutter/flutter/pull/79888) [web] Fix url strategy null safety (a: null-safety, cla: yes, f: routes, platform-web, waiting for tree to go green)
[79898](https://github.com/flutter/flutter/pull/79898) migrate empty exceptions to tool exit with error message (cla: yes, tool, waiting for tree to go green)
[79900](https://github.com/flutter/flutter/pull/79900) Move cache from globals to globals_null_migrated (a: null-safety, cla: yes, team, tool)
[79903](https://github.com/flutter/flutter/pull/79903) Revert "Reland [devicelab] Migrate Gallery to BuildTestTask" (a: accessibility, cla: yes, team)
[79907](https://github.com/flutter/flutter/pull/79907) Migrate flutter_tool test/src/common to null safety (a: null-safety, cla: yes, team, tool)
[79908](https://github.com/flutter/flutter/pull/79908) Start migrating flutter_tools test src to null safety (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[79913](https://github.com/flutter/flutter/pull/79913) add new try/prod builders for validate_ci_config (cla: yes, team, waiting for tree to go green)
[79917](https://github.com/flutter/flutter/pull/79917) Allow null Config.getValue() results (a: null-safety, cla: yes, team, tool)
[79919](https://github.com/flutter/flutter/pull/79919) update BorderTween nullable (cla: yes, framework)
[79953](https://github.com/flutter/flutter/pull/79953) Manually roll engine to 56b13559807bf4cb83d16c659757d6ae4f209490 (cla: yes, engine)
[79959](https://github.com/flutter/flutter/pull/79959) Unblock roll by reverting #79061 (a: tests, cla: yes, framework, team)
[79961](https://github.com/flutter/flutter/pull/79961) Mark integration_test_test as unflaky (cla: yes, team, waiting for tree to go green)
[79968](https://github.com/flutter/flutter/pull/79968) Revert "Support block delete with word and line modifiers" (cla: yes, framework)
[79973](https://github.com/flutter/flutter/pull/79973) Support block delete with word and line modifiers (cla: yes, framework)
## Merged PRs in `flutter/engine` from 2021-01-26T18:58:00.000Z to 2021-04-07T15:28:00.000
There were 985 pull requests.
[21824](https://github.com/flutter/engine/pull/21824) Add DiffContext (cla: yes, waiting for tree to go green)
[23465](https://github.com/flutter/engine/pull/23465) Hardware Keyboard: Windows (cla: yes)
[23466](https://github.com/flutter/engine/pull/23466) Hardware keyboard: Web, embedder, and dart:ui (cla: yes, platform-ios, platform-web, waiting for tree to go green)
[23469](https://github.com/flutter/engine/pull/23469) Hardware Keyboard: macOS (affects: desktop, affects: text input, cla: yes, platform-ios, platform-macos)
[23573](https://github.com/flutter/engine/pull/23573) Windows: Add CoreWindow implementation of FlutterWindowsView (Flutter#70205) (cla: yes, needs tests)
[23660](https://github.com/flutter/engine/pull/23660) Add a --linux shortcut to --target-os=linux (cla: yes)
[23674](https://github.com/flutter/engine/pull/23674) Fix argument specifier for g_warning() (cla: yes, waiting for tree to go green)
[23730](https://github.com/flutter/engine/pull/23730) Continue filling in the list of FontFeatures (cla: yes, waiting for tree to go green)
[23776](https://github.com/flutter/engine/pull/23776) unhide uitextinput when focused (cla: yes, platform-ios, waiting for tree to go green)
[23793](https://github.com/flutter/engine/pull/23793) fix video(texture) with opacity can not play issue (cla: yes, waiting for tree to go green)
[23800](https://github.com/flutter/engine/pull/23800) [canvaskit] fix text background, foreground, color; add text style tests (cla: yes)
[23870](https://github.com/flutter/engine/pull/23870) Wires up accessibility bridge in mac embedding (cla: yes)
[23906](https://github.com/flutter/engine/pull/23906) Increase logging in AngleSurfaceManager (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[23911](https://github.com/flutter/engine/pull/23911) Fix Android IO and Worker threads priority issue (cla: yes, platform-android, waiting for tree to go green)
[23931](https://github.com/flutter/engine/pull/23931) Ensures that hit testing only returns focusable nodes. (cla: yes, cp: 1.26, waiting for tree to go green)
[23934](https://github.com/flutter/engine/pull/23934) Remove libtxt styled runs benchmark (cla: yes, waiting for tree to go green)
[23948](https://github.com/flutter/engine/pull/23948) Grammatical mistake on pull request template (cla: yes, waiting for tree to go green)
[23955](https://github.com/flutter/engine/pull/23955) Fix "Buffer not large enough for pixels" by adding buffer.rewind() (cla: yes, platform-android, waiting for tree to go green)
[23961](https://github.com/flutter/engine/pull/23961) [web] Fix flake due to shadow rendering difference on webkit (cla: yes, platform-web, waiting for tree to go green)
[23963](https://github.com/flutter/engine/pull/23963) Pass sampling rather than rely on (deprecated) filter-quality (cla: yes, waiting for tree to go green)
[23965](https://github.com/flutter/engine/pull/23965) [web] Fix alignment issue in rich paragraphs (cla: yes, platform-web, waiting for tree to go green)
[23967](https://github.com/flutter/engine/pull/23967) [macos] Make metal the default rendering backend on macOS >= 10.14 (cla: yes, waiting for tree to go green)
[23969](https://github.com/flutter/engine/pull/23969) [web] Fix svg based stroke rendering. (cla: yes)
[23970](https://github.com/flutter/engine/pull/23970) Fix a null pointer dereference if dladdr is unable to find a symbol name (cla: yes, waiting for tree to go green)
[23980](https://github.com/flutter/engine/pull/23980) Load FlutterLoader when creating FlutterEngineGroup (cla: yes, platform-android, waiting for tree to go green)
[23986](https://github.com/flutter/engine/pull/23986) Roll buildroot to 33f05b6c (cla: yes)
[23990](https://github.com/flutter/engine/pull/23990) [windows] Honor only valid resize requests (cla: yes, waiting for tree to go green)
[23995](https://github.com/flutter/engine/pull/23995) [web] Fix drawVertices rendering when colors array is null and style is fill (cla: yes, platform-web)
[23999](https://github.com/flutter/engine/pull/23999) Roll ANGLE (cla: yes)
[24001](https://github.com/flutter/engine/pull/24001) [canvaskit] remove the DOM node of unrendered platform view (cla: yes, platform-web)
[24007](https://github.com/flutter/engine/pull/24007) Guard against Dart timeline API calls invoked during Dart_Cleanup (cla: yes)
[24009](https://github.com/flutter/engine/pull/24009) Revert "Roll buildroot to 33f05b6c" (cla: yes)
[24011](https://github.com/flutter/engine/pull/24011) Refactor FlRenderer to platform-independent implementation (cla: yes)
[24022](https://github.com/flutter/engine/pull/24022) Upgrade metrics_center to write into GCS buckets (cla: yes)
[24024](https://github.com/flutter/engine/pull/24024) Use `runes` to get code units in CanvasKit. (cla: yes, platform-web, waiting for tree to go green)
[24025](https://github.com/flutter/engine/pull/24025) TextStyle level leadingDistribution (cla: yes, waiting for tree to go green)
[24029](https://github.com/flutter/engine/pull/24029) Refactor gradient renderer to produce image. Implement gradient based Shadermask (cla: yes, platform-web)
[24036](https://github.com/flutter/engine/pull/24036) [web] Fix text alignment when transform + tight constraints + DOM rendering (cla: yes, platform-web, waiting for tree to go green)
[24037](https://github.com/flutter/engine/pull/24037) [web] Implement CanvasParagraph.getLineBoundary (cla: yes, platform-web, waiting for tree to go green)
[24101](https://github.com/flutter/engine/pull/24101) Use sampling instead of (deprecated) filter-quality (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[24109](https://github.com/flutter/engine/pull/24109) Cross-platform changes necessary for libax on Windows (cla: yes)
[24112](https://github.com/flutter/engine/pull/24112) Fixed plumbing of the spawning isolate for Shell::Spawn. (cla: yes)
[24125](https://github.com/flutter/engine/pull/24125) Update to sampling versions (cla: yes)
[24135](https://github.com/flutter/engine/pull/24135) drawBitmap is deprecated, use drawImage (cla: yes, platform-android)
[24140](https://github.com/flutter/engine/pull/24140) [web] Fix RRect scaleRadii for negative width/height (cla: yes)
[24142](https://github.com/flutter/engine/pull/24142) [flutter_releases] Flutter 1.26.0-17.2.pre Beta Engine Cherrypicks (cla: yes, platform-android)
[24146](https://github.com/flutter/engine/pull/24146) fixes android deeplink query paremeter null crashes (cla: yes, platform-android, waiting for tree to go green)
[24150](https://github.com/flutter/engine/pull/24150) [web] Fix exception when using a keyboard (cla: yes, platform-web, waiting for tree to go green)
[24152](https://github.com/flutter/engine/pull/24152) Fix use of multiple shells w/ different snapshots (affects: engine, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)
[24153](https://github.com/flutter/engine/pull/24153) [web] Fix svg stroke when style is not provided (cla: yes, platform-web)
[24157](https://github.com/flutter/engine/pull/24157) [metal] Darwin unified external metal textures (cla: yes, platform-ios, waiting for tree to go green)
[24159](https://github.com/flutter/engine/pull/24159) [web] Fix text rendering issue when paragraph style is ginormous (cla: yes, platform-web)
[24160](https://github.com/flutter/engine/pull/24160) [canvaskit] update CSS size of the canvas when device-pixel ratio changes (cla: yes)
[24163](https://github.com/flutter/engine/pull/24163) No longer redraw window every frame to reduce CPU consumption (cla: yes)
[24177](https://github.com/flutter/engine/pull/24177) Roll Clang Linux from 1Wa1KIWqF... to 6BYbqFtrH... (cla: yes)
[24181](https://github.com/flutter/engine/pull/24181) Make activity/fragment leftover from an attach/detach race slightly safer (cla: yes, platform-android)
[24185](https://github.com/flutter/engine/pull/24185) Upgrade metrics_center (cla: yes)
[24186](https://github.com/flutter/engine/pull/24186) Add API to force redraw of flutter view (affects: desktop, cla: yes, needs tests)
[24210](https://github.com/flutter/engine/pull/24210) Move shell/platform/common/cpp to shell/platform/common (cla: yes, waiting for tree to go green)
[24214](https://github.com/flutter/engine/pull/24214) [web] Fix text selection from right to left (affects: text input, cla: yes, platform-web, waiting for tree to go green)
[24216](https://github.com/flutter/engine/pull/24216) Roll buildroot to bc399c09 (cla: yes)
[24219](https://github.com/flutter/engine/pull/24219) libtxt: apply the justify offset to glyph positions instead of paint records (cla: yes, waiting for tree to go green)
[24223](https://github.com/flutter/engine/pull/24223) Revert "[metal] Darwin unified external metal textures" (cla: yes, platform-ios)
[24232](https://github.com/flutter/engine/pull/24232) Use hidden window to process flutter messages (affects: desktop, cla: yes, platform-windows)
[24236](https://github.com/flutter/engine/pull/24236) [windows] Surface will not update when restoring (cla: yes)
[24244](https://github.com/flutter/engine/pull/24244) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24246](https://github.com/flutter/engine/pull/24246) Pin the package_config package used by generate_package_config at version 1.9.3 (cla: yes)
[24249](https://github.com/flutter/engine/pull/24249) Roll CanvasKit to 0.23 (cla: yes, platform-web)
[24250](https://github.com/flutter/engine/pull/24250) [flutter_releases] clarify comment (cla: yes)
[24251](https://github.com/flutter/engine/pull/24251) [flutter_releases] Pin the package_config package (cla: yes)
[24252](https://github.com/flutter/engine/pull/24252) Roll buildroot to 739be241578e7f12773eedb713df7fe3b0ec917b (cla: yes)
[24253](https://github.com/flutter/engine/pull/24253) Define FLUTTER_ENABLE_SKSHAPER consistently when building txt_unittests and txt_benchmarks (cla: yes, waiting for tree to go green)
[24263](https://github.com/flutter/engine/pull/24263) Fix retain cycles in MacOS embedder (cla: yes)
[24264](https://github.com/flutter/engine/pull/24264) Unblock FlutterResizeSynchronizer on engine shutdown (cla: yes, waiting for tree to go green)
[24272](https://github.com/flutter/engine/pull/24272) Fix ImageReader may leak images when onDraw() not called (cla: yes, platform-android, waiting for tree to go green)
[24278](https://github.com/flutter/engine/pull/24278) Add support for arm64 simulator builds to create_ios_framework.py (cla: yes, waiting for tree to go green)
[24288](https://github.com/flutter/engine/pull/24288) [Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards (cla: yes, platform-android, waiting for tree to go green)
[24293](https://github.com/flutter/engine/pull/24293) [Windows] Fix crash of TextInputPlugin on empty model (cla: yes, waiting for tree to go green)
[24306](https://github.com/flutter/engine/pull/24306) [flutter_releases] Flutter Engine 1.26.0-17.5.pre Beta Cherrypicks (cla: yes)
[24308](https://github.com/flutter/engine/pull/24308) Fix FlutterPlatformViewSemanticsContainer retain cycle with SemanticsObject (cla: yes, platform-ios, waiting for tree to go green)
[24318](https://github.com/flutter/engine/pull/24318) Windows: linker compatibility with AppContainer for winuwp target (cla: yes)
[24327](https://github.com/flutter/engine/pull/24327) [embedder] [metal] Embedder API can support externally composited Metal textures (cla: yes)
[24331](https://github.com/flutter/engine/pull/24331) Revert "Reland "[metal] Darwin unified external metal textures (#2415β¦ (cla: yes, platform-ios, waiting for tree to go green)
[24333](https://github.com/flutter/engine/pull/24333) Always set change type to cancel with `touchesCancelled` on iOS platform view (cla: yes, platform-ios, waiting for tree to go green)
[24336](https://github.com/flutter/engine/pull/24336) Propagate image decode errors to the future returned by Codec.getNextFrame (cla: yes, waiting for tree to go green)
[24340](https://github.com/flutter/engine/pull/24340) Remove NonNull annotation on FlutterCallbackInformation.lookupCallbackInformation (cla: yes, platform-android)
[24347](https://github.com/flutter/engine/pull/24347) Remove unnecessary buffer collection image constraints. (cla: yes, waiting for tree to go green)
[24350](https://github.com/flutter/engine/pull/24350) Reland "[metal] Darwin unified external metal textures (#24157)" (cla: yes, platform-ios)
[24354](https://github.com/flutter/engine/pull/24354) [web] Fix origin for repeated linear gradients (cla: yes, platform-web, waiting for tree to go green)
[24355](https://github.com/flutter/engine/pull/24355) [felt] report failures after running all shards (cla: yes)
[24356](https://github.com/flutter/engine/pull/24356) Refactor GPU access switch (cla: yes, embedder, platform-android, platform-fuchsia, platform-ios)
[24357](https://github.com/flutter/engine/pull/24357) [canvaskit] support adding leaf layers w/o container layers (cla: yes)
[24358](https://github.com/flutter/engine/pull/24358) Revert "Roll buildroot to 739be241578e7f12773eedb713df7fe3b0ec917b" (cla: yes)
[24363](https://github.com/flutter/engine/pull/24363) Replace Flutter surface only after all platform views are destroyed (cla: yes, platform-android)
[24372](https://github.com/flutter/engine/pull/24372) Fix vulkan surface leaks. (cla: yes)
[24376](https://github.com/flutter/engine/pull/24376) Defer making skshader until we know quality (cla: yes, waiting for tree to go green)
[24377](https://github.com/flutter/engine/pull/24377) Fixes hot restart correctly reset the browser history (cla: yes, waiting for tree to go green)
[24379](https://github.com/flutter/engine/pull/24379) [flutter_releases] Flutter Engine 1.26.0-17.6.pre Beta Cherrypicks (cla: yes)
[24382](https://github.com/flutter/engine/pull/24382) [canvaskit] fix Path.from (cla: yes, platform-web)
[24384](https://github.com/flutter/engine/pull/24384) Set debug client info for sysmem allocator (cla: yes, waiting for tree to go green)
[24386](https://github.com/flutter/engine/pull/24386) Pin the package_config package used by generate_package_config at ver⦠(cla: yes)
[24387](https://github.com/flutter/engine/pull/24387) Reland "Remove pipeline in favor of layer tree holder (#18901)" (cla: yes)
[24389](https://github.com/flutter/engine/pull/24389) Ensures that hit testing only resturns focusable nodes. (#23931) #24385 (cla: yes)
[24392](https://github.com/flutter/engine/pull/24392) [ci] Remove null safety experiment flag (cla: yes)
[24399](https://github.com/flutter/engine/pull/24399) Roll buildroot to e7857d269381e23d1a89a3cbf017854992bda15a (cla: yes)
[24422](https://github.com/flutter/engine/pull/24422) Windows: Fix fml::GetFullHandlePath for WINUWP target (cla: yes)
[24423](https://github.com/flutter/engine/pull/24423) Add missing header guard, namespace (affects: desktop, affects: engine, affects: text input, cla: yes)
[24424](https://github.com/flutter/engine/pull/24424) Adjust header guards for updated paths (cla: yes)
[24428](https://github.com/flutter/engine/pull/24428) Windows: Improve window resizing (cla: yes, waiting for tree to go green)
[24436](https://github.com/flutter/engine/pull/24436) Revert Dart SDK to 1e0fec6e48cf89f46973af38a5c2de4bc760a135 (cla: yes)
[24438](https://github.com/flutter/engine/pull/24438) Roll buildroot to 47043991a50e1cfda66766009885197a05bb29f1 (affects: desktop, cla: yes, platform-windows)
[24441](https://github.com/flutter/engine/pull/24441) fix infinite loop in findMinimumFontsForCodeunits (cla: yes)
[24443](https://github.com/flutter/engine/pull/24443) [shell][fuchsia] Update README.md (cla: yes)
[24447](https://github.com/flutter/engine/pull/24447) [web] Fix right click issue when dragging (cla: yes, platform-web, waiting for tree to go green)
[24456](https://github.com/flutter/engine/pull/24456) Revert "Reland "Remove pipeline in favor of layer tree holder (#18901β¦ (cla: yes, waiting for tree to go green)
[24461](https://github.com/flutter/engine/pull/24461) Revert "Roll CanvasKit to 0.23" (cla: yes)
[24463](https://github.com/flutter/engine/pull/24463) [Android text input] fix android autofill on focused text field (cla: yes, platform-android, waiting for tree to go green)
[24465](https://github.com/flutter/engine/pull/24465) Update goldens to 578ecb91ea33004cd0ba0af513884cc28ba88cf4 (cla: yes)
[24470](https://github.com/flutter/engine/pull/24470) fix missing CJK and symbol glyphs, font precedence, fallback reset (cla: yes)
[24479](https://github.com/flutter/engine/pull/24479) Let FlutterEngine to turn off automaticallyRegisterPlugins from AndroidManifest.xml. (cla: yes, platform-android, waiting for tree to go green)
[24485](https://github.com/flutter/engine/pull/24485) Roll back Dart SDK to fc5e80cbdc6f695bedd4fd5f77f9ee511386b4ca (cla: yes)
[24486](https://github.com/flutter/engine/pull/24486) Revert "[Android Text Input] Remove Samsung restart input workaround for newer Samsung keyboards" (cla: yes, platform-android, waiting for tree to go green)
[24489](https://github.com/flutter/engine/pull/24489) backdrop filter layer should report cull_rect as its paint bounds (cla: yes)
[24494](https://github.com/flutter/engine/pull/24494) Defer making skshader until we know quality (#24376) (cla: yes)
[24498](https://github.com/flutter/engine/pull/24498) Roll CanvasKit to 0.24. (cla: yes)
[24502](https://github.com/flutter/engine/pull/24502) Roll back Dart SDK to fc5e80cbdc6f695bedd4fd5f77f9ee511386b4ca (cla: yes)
[24503](https://github.com/flutter/engine/pull/24503) iOS: Started initializing the gpu disable sync switch based on the app state. (cla: yes, platform-ios)
[24507](https://github.com/flutter/engine/pull/24507) Fix flutter_frontend_server test - name parameter is required now. (cla: yes)
[24518](https://github.com/flutter/engine/pull/24518) Roll Dart SDK to f78bd85cda0c (cla: yes)
[24519](https://github.com/flutter/engine/pull/24519) Default to bilerp for layers (cla: yes, waiting for tree to go green)
[24523](https://github.com/flutter/engine/pull/24523) External Texture support for macOS Metal (cla: yes, waiting for tree to go green)
[24526](https://github.com/flutter/engine/pull/24526) Fix input flow event logic (cla: yes, waiting for tree to go green)
[24529](https://github.com/flutter/engine/pull/24529) NNBD cleanup (cla: yes)
[24533](https://github.com/flutter/engine/pull/24533) Use common desktop TextInputModel on macOS (cla: yes)
[24542](https://github.com/flutter/engine/pull/24542) Restore call to setFilterQuality (cla: yes, waiting for tree to go green)
[24543](https://github.com/flutter/engine/pull/24543) Delete multi set args parameter from intent (cla: yes, platform-android, waiting for tree to go green)
[24546](https://github.com/flutter/engine/pull/24546) remove useless code in lib/ui/compositing/scene_builder.cc (cla: yes, waiting for tree to go green)
[24556](https://github.com/flutter/engine/pull/24556) [web] Add xcode-symlinks flag to felt tool (cla: yes)
[24557](https://github.com/flutter/engine/pull/24557) [flutter_releases] Flutter 1.26.0-17.7.pre Beta Engine Cherrypicks (cla: yes)
[24572](https://github.com/flutter/engine/pull/24572) [web] Fix placeholder-only paragraphs (cla: yes, platform-web, waiting for tree to go green)
[24574](https://github.com/flutter/engine/pull/24574) [web] Implement Canvas.drawPicture (cla: yes)
[24575](https://github.com/flutter/engine/pull/24575) Add method to obtain native string resource in localization plugin. (cla: yes, platform-android)
[24581](https://github.com/flutter/engine/pull/24581) [Android Input] Passthrough movement keys when there's no selection (cla: yes, platform-android, waiting for tree to go green)
[24582](https://github.com/flutter/engine/pull/24582) Expand FilterQuality API docs (cla: yes, waiting for tree to go green)
[24583](https://github.com/flutter/engine/pull/24583) Signal an error if an Isolate.spwanUri call uses an unsupported URI (cla: yes, waiting for tree to go green)
[24588](https://github.com/flutter/engine/pull/24588) [flutter_releases] Flutter 1.26.0-17.8.pre Beta Engine Cherrypicks (cla: yes)
[24600](https://github.com/flutter/engine/pull/24600) Revert "[macos] Make metal the default rendering backend on macOS >= β¦ (cla: yes)
[24601](https://github.com/flutter/engine/pull/24601) [macos] Reland default metal and also check if the system supports metal before defaulting to it (cla: yes)
[24602](https://github.com/flutter/engine/pull/24602) Skip flaky webkit shadermask test (cla: yes)
[24612](https://github.com/flutter/engine/pull/24612) Allow calls to legacyMakeTypeface in the AssetFontManager (cla: yes, waiting for tree to go green)
[24616](https://github.com/flutter/engine/pull/24616) Add third_party/libpng repository and roll buildroot (cla: yes)
[24623](https://github.com/flutter/engine/pull/24623) [linux] Fix text selection via Shift+Home/End (cla: yes)
[24635](https://github.com/flutter/engine/pull/24635) [flutter_releases] Flutter Engine Cherrypicks (cla: yes, platform-android)
[24640](https://github.com/flutter/engine/pull/24640) Enables semantics when voice control is turned on (cla: yes, platform-ios, waiting for tree to go green)
[24644](https://github.com/flutter/engine/pull/24644) Fixed problem where AndroidShellHolder was trashing the ThreadHost in its deconstructor (cla: yes, cp: 1.26, platform-android, platform-ios)
[24645](https://github.com/flutter/engine/pull/24645) fuchsia: Correct PlatformView scale/transform (cla: yes, platform-fuchsia)
[24651](https://github.com/flutter/engine/pull/24651) Fix exactCullRect computation (cla: yes, platform-web)
[24660](https://github.com/flutter/engine/pull/24660) Update shell_fuchsia_unittests.cc (cla: yes)
[24662](https://github.com/flutter/engine/pull/24662) SkParagraph: support multiple default font families (cla: yes, waiting for tree to go green)
[24665](https://github.com/flutter/engine/pull/24665) Revert "TextStyle level leadingDistribution" (cla: yes, waiting for tree to go green)
[24668](https://github.com/flutter/engine/pull/24668) Reland "TextStyle level leadingDistribution (#24025)" reverted in #24665 (cla: yes, waiting for tree to go green)
[24672](https://github.com/flutter/engine/pull/24672) Convert cursor rect to device coordinates on Win32 (affects: desktop, cla: yes, platform-windows)
[24673](https://github.com/flutter/engine/pull/24673) Roll ICU to match the latest version used by Chromium (cla: yes)
[24675](https://github.com/flutter/engine/pull/24675) Declare a constant for the bit index of the force_strut_height flag value (cla: yes, waiting for tree to go green)
[24677](https://github.com/flutter/engine/pull/24677) [Windows] Hide Win32 API of the keyboard system behind ifdef (cla: yes)
[24678](https://github.com/flutter/engine/pull/24678) Reverts Dart to aa0fea71185b6c3a763ff3875ea0973a6729a04d (cla: yes)
[24679](https://github.com/flutter/engine/pull/24679) Switch to correct OpenGL context before deleting framebuffers. (cla: yes)
[24682](https://github.com/flutter/engine/pull/24682) Do not use eglQuerySurface to query surface dimensions (cla: yes, waiting for tree to go green)
[24686](https://github.com/flutter/engine/pull/24686) Consistent naming for Win32 emebedder (cla: yes)
[24688](https://github.com/flutter/engine/pull/24688) remove _getRRect: fixes assertion error (cla: yes)
[24690](https://github.com/flutter/engine/pull/24690) Fix memory leak and bug in the RunsOnCreationTaskRunner check (cla: yes, platform-android, waiting for tree to go green)
[24697](https://github.com/flutter/engine/pull/24697) Fix UWP build for UpdateCursorRect rename (cla: yes)
[24698](https://github.com/flutter/engine/pull/24698) Windows UWP: Add support for emulated mouse cursor for targets such as XBOX (cla: yes, needs tests)
[24699](https://github.com/flutter/engine/pull/24699) Add RAII wrapper for Win32 IMM context (affects: desktop, affects: engine, cla: yes, platform-windows)
[24713](https://github.com/flutter/engine/pull/24713) Win32: Support Korean input (cla: yes)
[24716](https://github.com/flutter/engine/pull/24716) [web] Fix painting of last placeholder in paragraph (cla: yes, platform-web)
[24718](https://github.com/flutter/engine/pull/24718) Revert "remove _getRRect: fixes assertion error (#24688)" (cla: yes)
[24719](https://github.com/flutter/engine/pull/24719) [web] Fix pointer events for Wacom pen (cla: yes, platform-web)
[24727](https://github.com/flutter/engine/pull/24727) Guard metal rendering behind SHELL_ENABLE_METAL (cla: yes, waiting for tree to go green)
[24734](https://github.com/flutter/engine/pull/24734) Adds set text action for voice access (cla: yes, platform-android, waiting for tree to go green)
[24766](https://github.com/flutter/engine/pull/24766) Move CIPD package creation tools under tools/cipd (cla: yes)
[24768](https://github.com/flutter/engine/pull/24768) fixes reference retaining issue in flutter text input plugin (cla: yes, platform-ios, waiting for tree to go green)
[24770](https://github.com/flutter/engine/pull/24770) Added dependency on CppWinRT for UWP builds (affects: desktop, cla: yes, platform-windows)
[24773](https://github.com/flutter/engine/pull/24773) Revert "[web] Fix painting of last placeholder in paragraph (#24716)" (cla: yes)
[24797](https://github.com/flutter/engine/pull/24797) Avoid the deprecated SkFilterQuality in the Engine APIs (cla: yes, waiting for tree to go green)
[24798](https://github.com/flutter/engine/pull/24798) [web] Fix url updates when using Router (cla: yes, platform-web, waiting for tree to go green)
[24800](https://github.com/flutter/engine/pull/24800) Revert "Replace Flutter surface only after all platform views are destroyed" (cla: yes, platform-android)
[24801](https://github.com/flutter/engine/pull/24801) Update cppwinrt to build 2.0.210304.5 (affects: desktop, cla: yes, platform-windows)
[24802](https://github.com/flutter/engine/pull/24802) Initialize max_ascent/descent from the strut only if the strut is valid (cla: yes, waiting for tree to go green)
[24818](https://github.com/flutter/engine/pull/24818) Update paths related to CIPD package creation (cla: yes, platform-android, waiting for tree to go green)
[24827](https://github.com/flutter/engine/pull/24827) Improve error message when CanvasKit is unable to parse a font (cla: yes, platform-web)
[24828](https://github.com/flutter/engine/pull/24828) [web] Don't set both color and foreground at the same time (cla: yes, platform-web, waiting for tree to go green)
[24829](https://github.com/flutter/engine/pull/24829) vulkan: Fix build issue due to missing VK_RESULT_RANGE_SIZE (cla: yes, waiting for tree to go green)
[24831](https://github.com/flutter/engine/pull/24831) fix voice control delete line command does not delete line correctly (cla: yes, platform-ios, waiting for tree to go green)
[24838](https://github.com/flutter/engine/pull/24838) Prevent race condition while switching surfaces (cla: yes, platform-android)
[24845](https://github.com/flutter/engine/pull/24845) Only call destruction_callback if non-null (cla: yes)
[24846](https://github.com/flutter/engine/pull/24846) Fix typo in assertion log message (cla: yes)
[24861](https://github.com/flutter/engine/pull/24861) Windows: Switch UWP build to using winrt generated headers (cla: yes)
[24864](https://github.com/flutter/engine/pull/24864) [Linux] Fix incorrect texture format with OpenGL ES (cla: yes)
[24865](https://github.com/flutter/engine/pull/24865) Send -1 for empty composition range (cla: yes, waiting for tree to go green)
[24866](https://github.com/flutter/engine/pull/24866) End composing when inserting text (cla: yes)
[24867](https://github.com/flutter/engine/pull/24867) Position accent popup window next to caret (cla: yes)
[24870](https://github.com/flutter/engine/pull/24870) Revert "[web] Fix url updates when using Router (#24798)" (cla: yes)
[24873](https://github.com/flutter/engine/pull/24873) Adds setText to web engine (cla: yes, waiting for tree to go green)
[24874](https://github.com/flutter/engine/pull/24874) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check" (cla: yes, platform-android, waiting for tree to go green)
[24876](https://github.com/flutter/engine/pull/24876) [web] Reland: Fix url updates when using Router (cla: yes, platform-web)
[24877](https://github.com/flutter/engine/pull/24877) Complete the Scene.toImage future with an error if rasterization fails (cla: yes)
[24880](https://github.com/flutter/engine/pull/24880) Respond to Skia.setResourceCacheMaxBytes (cla: yes, waiting for tree to go green)
[24893](https://github.com/flutter/engine/pull/24893) [iOS] Fixes platform view clipped when FlutterView has non-zero offset (cla: yes, platform-ios, waiting for tree to go green)
[24897](https://github.com/flutter/engine/pull/24897) Revert "Fix memory leak and bug in the RunsOnCreationTaskRunner check⦠(cla: yes, platform-android)
[24901](https://github.com/flutter/engine/pull/24901) Add framebuffer destruction_callback for Linux (cla: yes)
[24902](https://github.com/flutter/engine/pull/24902) fixed typographical error (cla: yes)
[24903](https://github.com/flutter/engine/pull/24903) [web:semantics] fix node positioning; expose debug tree (cla: yes)
[24905](https://github.com/flutter/engine/pull/24905) [web] Reland: Fix painting of last placeholder in paragraph (cla: yes, platform-web, waiting for tree to go green)
[24906](https://github.com/flutter/engine/pull/24906) Rename `moduleName` to `componentName` for consistency (cla: yes, platform-android, waiting for tree to go green)
[24908](https://github.com/flutter/engine/pull/24908) Detach the newly created EGL context from the main thread in the embedder unit tests (cla: yes)
[24917](https://github.com/flutter/engine/pull/24917) Cherrypick Skia roll #24914 (cla: yes, platform-android)
[24922](https://github.com/flutter/engine/pull/24922) [web] Make window.locale(s) non-null; upgrade to null safe deps (cla: yes)
[24924](https://github.com/flutter/engine/pull/24924) Remove an obsolete GN flag that had been used by SkParagraph (cla: yes)
[24928](https://github.com/flutter/engine/pull/24928) [flutter_releases] Flutter 2.0.2 Stable Engine Cherrypicks (cla: yes, platform-android)
[24933](https://github.com/flutter/engine/pull/24933) fix selectable text selections are not announced in voice over (cla: yes, waiting for tree to go green)
[24934](https://github.com/flutter/engine/pull/24934) [web] Add few awaits in history tests (affects: tests, cla: yes, platform-web, waiting for tree to go green)
[24944](https://github.com/flutter/engine/pull/24944) [Linux] Fix high CPU consumption (cla: yes)
[24947](https://github.com/flutter/engine/pull/24947) Reland "Remove pipeline in favor of layer tree holder" (cla: yes)
[24949](https://github.com/flutter/engine/pull/24949) [web] Silence flaky history test (affects: tests, cla: yes, platform-web)
[24951](https://github.com/flutter/engine/pull/24951) Do not return a Minikin font collection if the SkFontStyleSet is unable to create any typefaces (cla: yes, waiting for tree to go green)
[24957](https://github.com/flutter/engine/pull/24957) [web] Skip the history tests that introduced flakiness (cla: yes, platform-web)
[24958](https://github.com/flutter/engine/pull/24958) Fixed issue where the gpu disable syncswitch was being overridden after init (cla: yes, platform-ios)
[24964](https://github.com/flutter/engine/pull/24964) fix printing Failed to determine valid GL format (affects: desktop, cla: yes, platform-linux)
[24973](https://github.com/flutter/engine/pull/24973) Restore original value of the Dart advisory script URI (cla: yes)
[24978](https://github.com/flutter/engine/pull/24978) revert auto-enabling semantics (cla: yes)
[24980](https://github.com/flutter/engine/pull/24980) Fuchsia: filed crash reports are marked as non-fatal (cla: yes)
[24983](https://github.com/flutter/engine/pull/24983) [deferred components] Handle base module loading units (cla: yes, platform-android, waiting for tree to go green)
[24985](https://github.com/flutter/engine/pull/24985) Set automatic simulator rotation in scenario test (cla: yes)
[24986](https://github.com/flutter/engine/pull/24986) Fix attribute replace bug in TextAXNodeWrapper (cla: yes)
[24995](https://github.com/flutter/engine/pull/24995) [macos] [metal] Fix use after free in FlutterExternalTextureMetal (cla: yes)
[24999](https://github.com/flutter/engine/pull/24999) Implement AXPlatformNodeBase::GetInstanceCountForTesting (cla: yes, waiting for tree to go green)
[25000](https://github.com/flutter/engine/pull/25000) Initial import from upstream Chromium of various classes/files for Win32 a11y (cla: yes)
[25004](https://github.com/flutter/engine/pull/25004) Call `requestDartDeferredLibrary` on platform thread (cla: yes, waiting for tree to go green)
[25006](https://github.com/flutter/engine/pull/25006) [fuchsia][shader warmup] Avoid recursively iterating over assets directory when loading skp's due to high cost of openat() on pkgfs (cla: yes)
[25007](https://github.com/flutter/engine/pull/25007) Roll Angle to pick up UWP support (cla: yes)
[25009](https://github.com/flutter/engine/pull/25009) Update docker image to match the LUCI and Framework images (cla: yes)
[25020](https://github.com/flutter/engine/pull/25020) Fix const_finder to visit children of ConstructorInvocation (cla: yes)
[25022](https://github.com/flutter/engine/pull/25022) Roll to dart 91d7c69ed7ea (cla: yes)
[25027](https://github.com/flutter/engine/pull/25027) Revert "Reland "Remove pipeline in favor of layer tree holder" (#24947)" (cla: yes, waiting for tree to go green)
[25028](https://github.com/flutter/engine/pull/25028) Modifications to imported a11y base classes to build in Flutter (cla: yes)
[25036](https://github.com/flutter/engine/pull/25036) Sanitize textInRange inputs to prevent invalid argument exceptions (cla: yes, platform-ios, waiting for tree to go green)
[25043](https://github.com/flutter/engine/pull/25043) Add some APIs to StringUtils (cla: yes)
[25050](https://github.com/flutter/engine/pull/25050) Fixes android voice access delete text, redo, and undo actions. (cla: yes, platform-android)
[25053](https://github.com/flutter/engine/pull/25053) fix numeric dependencies (cla: yes)
[25055](https://github.com/flutter/engine/pull/25055) [flutter_releases] Flutter Stable 2.0.3 Engine Cherrypicks (cla: yes, platform-android)
[25057](https://github.com/flutter/engine/pull/25057) Import gtest_util.h and DispatchStub from upstream Chromium (cla: yes)
[25058](https://github.com/flutter/engine/pull/25058) Complete Picture.toImage futures with an exception if the image is null (cla: yes, waiting for tree to go green)
[25064](https://github.com/flutter/engine/pull/25064) Decode empty message to nil in standard codec (affects: desktop, cla: yes, crash, platform-ios, platform-macos)
[25077](https://github.com/flutter/engine/pull/25077) Add config for "Linux Fuchsia FEMU" try builder. (cla: yes)
[25078](https://github.com/flutter/engine/pull/25078) Convert format and lint scripts to null safety. (cla: yes, waiting for tree to go green)
[25080](https://github.com/flutter/engine/pull/25080) [web] Fix handling of ClipOp.none (cla: yes, platform-web)
[25088](https://github.com/flutter/engine/pull/25088) [web] Implement font features in the html renderer (cla: yes, platform-web)
[25090](https://github.com/flutter/engine/pull/25090) Use new cirrus secrets for engine. (cla: yes)
[25095](https://github.com/flutter/engine/pull/25095) Prefer C++ standard headers to their C counterpart (cla: yes)
[25096](https://github.com/flutter/engine/pull/25096) Make internal BSTR private in ScopedBstr (cla: yes)
[25110](https://github.com/flutter/engine/pull/25110) Add support for right-click in GLFW. (cla: yes)
[25115](https://github.com/flutter/engine/pull/25115) Fixes iOS accessibility can focus wrong content due to rapid animations (cla: yes, platform-ios, waiting for tree to go green)
[25121](https://github.com/flutter/engine/pull/25121) Add AXPlatformNodeWin and AXFragmentRootWin (cla: yes)
[25123](https://github.com/flutter/engine/pull/25123) Remove duplicate and inconsistent kInvalidAXID definition (cla: yes)
[25126](https://github.com/flutter/engine/pull/25126) [web] Fix few potential issues with DOM/Bitmap rendering (cla: yes, platform-web)
[25128](https://github.com/flutter/engine/pull/25128) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25129](https://github.com/flutter/engine/pull/25129) Sync analyzer_options.yaml (cla: yes, waiting for tree to go green)
[25131](https://github.com/flutter/engine/pull/25131) Remove ignores that are not ignoring anything (cla: yes, waiting for tree to go green)
[25165](https://github.com/flutter/engine/pull/25165) [web] Fix drawImage colorFilter with dstATop blend mode (cla: yes)
[25167](https://github.com/flutter/engine/pull/25167) [fuchsia][a11y] Adds isKeyboardKey semantics flag. (cla: yes, platform-android)
[25171](https://github.com/flutter/engine/pull/25171) Make DartExecutor.isExecutingDart account for spawned engines (cla: yes, platform-android)
[25174](https://github.com/flutter/engine/pull/25174) Switched assert(x > 0) to assert(x != 0) to handle tagged pointers in java (cla: yes, platform-android)
[25180](https://github.com/flutter/engine/pull/25180) [Android Text Input] restart when framework changes composing region (cla: yes, platform-android, waiting for tree to go green)
[25188](https://github.com/flutter/engine/pull/25188) Add missing include to string_utils.h (cla: yes)
[25193](https://github.com/flutter/engine/pull/25193) Fix Windows external texture interference (affects: desktop, cla: yes, platform-windows)
[25196](https://github.com/flutter/engine/pull/25196) Keep rendering to screen in iOS `inactive` state (cla: yes, platform-ios)
[25198](https://github.com/flutter/engine/pull/25198) [web] Add samsung browser detection (cla: yes)
[25205](https://github.com/flutter/engine/pull/25205) Support software rendering fallback on Win32 (cla: yes)
[25206](https://github.com/flutter/engine/pull/25206) [web] More meaningful test for font features (cla: yes, platform-web, waiting for tree to go green)
[25213](https://github.com/flutter/engine/pull/25213) When snapshotting a surface, upper-bound the render target size to the device limit (cla: yes, waiting for tree to go green)
[25221](https://github.com/flutter/engine/pull/25221) Revert "Call Dart plugin registrant if available" (cla: yes, waiting for tree to go green)
[25222](https://github.com/flutter/engine/pull/25222) started cleaning scenario tests before running them (cla: yes, waiting for tree to go green)
[25226](https://github.com/flutter/engine/pull/25226) Started waiting for the notifications locally before asserting side effects (cla: yes, platform-ios, waiting for tree to go green)
[25241](https://github.com/flutter/engine/pull/25241) [tracing] Add trace events for DartIsolate::HandleMessage (cla: yes)
[25247](https://github.com/flutter/engine/pull/25247) Highlight VSync support for embedders (cla: yes)
[25248](https://github.com/flutter/engine/pull/25248) Revert "Started waiting for the notifications locally before assertin⦠(cla: yes, platform-ios)
[25252](https://github.com/flutter/engine/pull/25252) Remove ignores that are not ignoring anything (cla: yes)
[25257](https://github.com/flutter/engine/pull/25257) Reland: Started waiting for the notifications locally before asserting side-effects (cla: yes, platform-ios)
[25267](https://github.com/flutter/engine/pull/25267) Fix WinUWP build (cla: yes, waiting for tree to go green)
[25270](https://github.com/flutter/engine/pull/25270) [libTxt] multi-codeunit glyph hit test minor fix (cla: yes, waiting for tree to go green)
[25280](https://github.com/flutter/engine/pull/25280) Add clear method in FlutterEngineCache to clear all cached Flutter engines #78420 (cla: yes, platform-android, waiting for tree to go green)
[25284](https://github.com/flutter/engine/pull/25284) [ios] [asan] Copy asan runtime dylib when built with "--asan" (cla: yes, platform-ios, waiting for tree to go green)
[25286](https://github.com/flutter/engine/pull/25286) Revert "Fixes android voice access delete text, redo, and undo action⦠(cla: yes, platform-android)
[25289](https://github.com/flutter/engine/pull/25289) Reland "Fixes android voice access delete text, redo, and undo action" (cla: yes, platform-android)
[25292](https://github.com/flutter/engine/pull/25292) Revert "Fix Windows external texture interference (#25193)" (cla: yes)
[25293](https://github.com/flutter/engine/pull/25293) Implement computeLineMetrics (cla: yes)
[25297](https://github.com/flutter/engine/pull/25297) Deduplicate plugin registration logic and make error logs visible (cla: yes, platform-android, waiting for tree to go green)
[25299](https://github.com/flutter/engine/pull/25299) Turn off insecure socket policy configuration in the engine (cla: yes, platform-android, platform-ios)
[25300](https://github.com/flutter/engine/pull/25300) Copy gtest_filters from femu_test.py. (cla: yes)
[25303](https://github.com/flutter/engine/pull/25303) fuchsia: Allow access to system services in tests. (cla: yes)
[25304](https://github.com/flutter/engine/pull/25304) Remove comment about null on not-null fields (cla: yes, waiting for tree to go green)
[25309](https://github.com/flutter/engine/pull/25309) Update gtest_filters. (cla: yes)
[25312](https://github.com/flutter/engine/pull/25312) build dart2js on linux arm host (cla: yes, waiting for tree to go green)
[25314](https://github.com/flutter/engine/pull/25314) Send a null response to signal that a message is not implemented on the web text input channel (cla: yes, waiting for tree to go green)
[25315](https://github.com/flutter/engine/pull/25315) Roll CanvasKit to 0.25.1 (cla: yes, platform-web)
[25317](https://github.com/flutter/engine/pull/25317) Reland: "Fix memory leak and bug in the RunsOnCreationTaskRun" (cla: yes, platform-android)
[25319](https://github.com/flutter/engine/pull/25319) Windows: Revert https://github.com/flutter/engine/pull/24428 (Work in progress (WIP), cla: yes, platform-windows)
[25324](https://github.com/flutter/engine/pull/25324) [iOS][Test] Update scenario test tutorial (cla: yes, waiting for tree to go green)
[25329](https://github.com/flutter/engine/pull/25329) [doc] EncodableValue: added dart type mapping in declaration comment (cla: yes)
[25334](https://github.com/flutter/engine/pull/25334) [fuchsia] Populates fuchsia node is_keyboard_key in accessibility bridge (cla: yes)
[25335](https://github.com/flutter/engine/pull/25335) Make EncodableValue::LongValue const (affects: desktop, cla: yes, waiting for tree to go green)
[25340](https://github.com/flutter/engine/pull/25340) Clean up small typos in EncodableValue docs (cla: yes)
[25341](https://github.com/flutter/engine/pull/25341) [flutter_releases] Flutter Stable 2.0.4 Engine Cherrypicks (cla: yes)
[25346](https://github.com/flutter/engine/pull/25346) Correct typos throughout the engine/embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[25349](https://github.com/flutter/engine/pull/25349) Fix texture corruption on Windows (bug, cla: yes, platform-windows)
[25350](https://github.com/flutter/engine/pull/25350) fix a HapticFeedback.vibrate NNBD bug (cla: yes, waiting for tree to go green)
[25362](https://github.com/flutter/engine/pull/25362) Rename EngineEmbedderApiModifier to EngineModifier (cla: yes)
[25367](https://github.com/flutter/engine/pull/25367) [web] Fix framework material text field tests (cla: yes, platform-web)
[25369](https://github.com/flutter/engine/pull/25369) Call CreateRenderSurface() after setting the Engine for a View on UWP (cla: yes, needs tests)
[25375](https://github.com/flutter/engine/pull/25375) Reland: Call Dart plugin registrant if available (#23813) (cla: yes)
[25379](https://github.com/flutter/engine/pull/25379) Add fallback for GetAbsoluteFilePath in UWP (affects: desktop, cla: yes, platform-windows, waiting for tree to go green)
[25387](https://github.com/flutter/engine/pull/25387) Fix windows debug builds (cla: yes)
[25393](https://github.com/flutter/engine/pull/25393) Revert "Deduplicate plugin registration logic and make error logs visible" (cla: yes, platform-android, waiting for tree to go green)
[25402](https://github.com/flutter/engine/pull/25402) Extract Dart logging to the embedders (affects: engine, cla: yes, embedder, platform-android, platform-fuchsia, platform-ios, tech-debt)
[25403](https://github.com/flutter/engine/pull/25403) Eliminate error message for missing CMAP table (cla: yes, tech-debt)
[25428](https://github.com/flutter/engine/pull/25428) Update FlutterFragment to implement ComponentCallbacks2. (cla: yes, platform-android)
[25433](https://github.com/flutter/engine/pull/25433) Remove the DartIsolate::PostMessage timeline event (cla: yes, waiting for tree to go green)
[25435](https://github.com/flutter/engine/pull/25435) Allow embedders to set a custom log tag (cla: yes, embedder)
[25437](https://github.com/flutter/engine/pull/25437) Add documentation to embedder locale callback (cla: yes, embedder)
[25439](https://github.com/flutter/engine/pull/25439) Fix parameter type in FlutterDesktopEngineCreate (affects: desktop, cla: yes, platform-windows)
[25456](https://github.com/flutter/engine/pull/25456) [web] Fix shadermask rendering using CanvasKit (cla: yes, platform-web)
[25462](https://github.com/flutter/engine/pull/25462) Revert "Reland: Call Dart plugin registrant if available (#23813)" (cla: yes, waiting for tree to go green)
## Merged PRs in `flutter/plugins` from 2021-01-26T18:58:00.000Z to 2021-04-07T15:28:00.000
There were 274 pull requests.
[2031](https://github.com/flutter/plugins/pull/2031) [url_launcher] Added a note to the README (cla: yes, in review, p: url_launcher)
[2151](https://github.com/flutter/plugins/pull/2151) [webview_flutter] Support for loading progress tracking (cla: yes, p: webview_flutter, platform-android, platform-ios, waiting for tree to go green)
[2480](https://github.com/flutter/plugins/pull/2480) [video_player] : Flutter's video plugin can cause crashes after a closing a flutter vi⦠(cla: yes, p: video_player)
[2606](https://github.com/flutter/plugins/pull/2606) Updated README.md typo (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2822](https://github.com/flutter/plugins/pull/2822) [in_app_purchase] Add support for InApp subscription upgrade/downgrade (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[2835](https://github.com/flutter/plugins/pull/2835) Fix typo in image_picker_for_web README.md (cla: yes, p: image_picker, platform-web)
[2846](https://github.com/flutter/plugins/pull/2846) [in_app_purchase] Typos in comments (cla: yes, p: in_app_purchase, waiting for tree to go green)
[2858](https://github.com/flutter/plugins/pull/2858) [url_launcher] Update description in pubspec.yaml (cla: yes, p: url_launcher)
[2983](https://github.com/flutter/plugins/pull/2983) [local_auth] Unnecessary reassignment in example removed (cla: yes, p: local_auth, waiting for tree to go green)
[2996](https://github.com/flutter/plugins/pull/2996) Standardize Copyrights: Chromium->Flutter (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3234](https://github.com/flutter/plugins/pull/3234) [wifi_info_flutter] Check Permissions in Android O or higher (cla: yes, p: wifi_info_flutter, platform-android)
[3252](https://github.com/flutter/plugins/pull/3252) [url_launcher] Update readme for URL schemes on iOS (cla: yes, p: url_launcher, waiting for tree to go green)
[3274](https://github.com/flutter/plugins/pull/3274) [in_app_purchase] presentCodeRedemptionSheet (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3281](https://github.com/flutter/plugins/pull/3281) Document how to use pigeon and update to the latest version. (cla: yes, p: video_player, platform-android, platform-ios, waiting for tree to go green)
[3300](https://github.com/flutter/plugins/pull/3300) [share] Update README.md (cla: yes, p: share, submit queue)
[3305](https://github.com/flutter/plugins/pull/3305) [quick_actions] Update "eponymous concept" link. (cla: yes, p: quick_actions)
[3330](https://github.com/flutter/plugins/pull/3330) [path_provider_linux] Migrate to null safety (cla: yes, nnbd, p: path_provider, platform-linux)
[3333](https://github.com/flutter/plugins/pull/3333) [url_launcher] Fix PlatformException introduced in nnbd release (cla: yes, nnbd, p: url_launcher)
[3381](https://github.com/flutter/plugins/pull/3381) [ios_platform_images] Migrate to null safety (cla: yes, nnbd, p: ios_platform_images)
[3398](https://github.com/flutter/plugins/pull/3398) [package_info] Migrate to null safety (cla: yes, nnbd, p: package_info)
[3421](https://github.com/flutter/plugins/pull/3421) [quick_actions] Migrate to null safety (cla: yes, nnbd, p: quick_actions)
[3423](https://github.com/flutter/plugins/pull/3423) [sensors] Migrate to null safety (cla: yes, nnbd, p: sensors)
[3424](https://github.com/flutter/plugins/pull/3424) [wifi_info_flutter] Migrate the platform interface to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3425](https://github.com/flutter/plugins/pull/3425) [wifi_info_flutter] Migrate to null safety (cla: yes, nnbd, p: wifi_info_flutter)
[3434](https://github.com/flutter/plugins/pull/3434) [google_maps_flutter] add tile overlays (cla: yes, p: google_maps_flutter, platform-android, platform-ios, waiting for tree to go green)
[3438](https://github.com/flutter/plugins/pull/3438) Clean up CODEOWNERS (cla: yes)
[3451](https://github.com/flutter/plugins/pull/3451) [file_selector_platform_interface]: Verify that extensions don't have leading dots. (cla: yes, p: file_selector, waiting for tree to go green)
[3452](https://github.com/flutter/plugins/pull/3452) [cross_file] Migrate to null-safety. (cla: yes, p: cross_file)
[3458](https://github.com/flutter/plugins/pull/3458) [camera] Clockwise rotation of focus point in android (cla: yes, p: camera, platform-android)
[3460](https://github.com/flutter/plugins/pull/3460) Migrate path_provider to null safety. (cla: yes, nnbd, p: path_provider)
[3461](https://github.com/flutter/plugins/pull/3461) [ci][image_picker][webviews_flutter] enable Xcode 12 (cla: yes, p: image_picker, p: webview_flutter, waiting for tree to go green)
[3466](https://github.com/flutter/plugins/pull/3466) Migrate shared_preferences_platform_interfaces to null safety (cla: yes, p: shared_preferences)
[3467](https://github.com/flutter/plugins/pull/3467) [image_picker_platform_interface] fix test asset file location (cla: yes, p: cross_file, p: image_picker)
[3468](https://github.com/flutter/plugins/pull/3468) Revert "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3469](https://github.com/flutter/plugins/pull/3469) Reland "[cross_file] Migrate to null-safety. (#3452)" (cla: yes, p: cross_file)
[3470](https://github.com/flutter/plugins/pull/3470) [ci] fix ci failure on ios builds (cla: yes)
[3472](https://github.com/flutter/plugins/pull/3472) [camera] Fix example reference in camera's doc (cla: yes, p: camera)
[3473](https://github.com/flutter/plugins/pull/3473) [local_auth] Fix incorrect switch fallthrough (cla: yes, p: local_auth)
[3475](https://github.com/flutter/plugins/pull/3475) [url_launcher] Update result to `True` when the url was loaded successfully. (cla: yes, p: url_launcher, platform-ios)
[3476](https://github.com/flutter/plugins/pull/3476) [url_launcher_web] Fix Link misalignment issue (cla: yes, p: url_launcher)
[3478](https://github.com/flutter/plugins/pull/3478) [package_info] Register IntegrationTestPlugin in the example app. (cla: yes, p: package_info)
[3480](https://github.com/flutter/plugins/pull/3480) [integration_test] Fix tests from changes to `flutter test` machine output (cla: yes, p: integration_test)
[3481](https://github.com/flutter/plugins/pull/3481) [shared_preferences] Removed deprecated AsyncTask API (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3484](https://github.com/flutter/plugins/pull/3484) Remove amirh from CODEOWNERS (cla: yes, waiting for tree to go green)
[3485](https://github.com/flutter/plugins/pull/3485) [path_provider_windows] Resolve FFI stabilization changes (cla: yes, p: path_provider)
[3487](https://github.com/flutter/plugins/pull/3487) Automatically add platform labels (cla: yes)
[3490](https://github.com/flutter/plugins/pull/3490) Remove iOS stubs (cla: yes, p: android_alarm_manager, p: android_intent, p: connectivity, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: integration_test, p: path_provider, p: shared_preferences, p: url_launcher, p: video_player, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3491](https://github.com/flutter/plugins/pull/3491) Remove Dart stubs from macOS plugins (cla: yes, p: connectivity, p: path_provider)
[3492](https://github.com/flutter/plugins/pull/3492) [image_picker_platform_interface] migrate to nnbd (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3493](https://github.com/flutter/plugins/pull/3493) Add plugin issue query to README (cla: yes, waiting for tree to go green)
[3494](https://github.com/flutter/plugins/pull/3494) [in_app_purchases] Remove TypeMatcher reference (cla: yes, p: in_app_purchase)
[3495](https://github.com/flutter/plugins/pull/3495) Remove cyanglaz from CODEOWNER: google_sign_in, connectivity, package_info, video_player (cla: yes, waiting for tree to go green)
[3496](https://github.com/flutter/plugins/pull/3496) [camera] Revert compileSdkVersion back to 29 (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3497](https://github.com/flutter/plugins/pull/3497) [camera_platform_interface] Migrate to null safety (cla: yes, nnbd, p: camera)
[3498](https://github.com/flutter/plugins/pull/3498) [path_provider] Update macOS for NNBD (cla: yes, nnbd, p: path_provider, platform-macos)
[3499](https://github.com/flutter/plugins/pull/3499) [android_alarm_manager] Migrated android_alarm_manager to support null safety #75233 (cla: yes, nnbd, p: android_alarm_manager)
[3500](https://github.com/flutter/plugins/pull/3500) [google_maps_flutter_platform_interface ]fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3501](https://github.com/flutter/plugins/pull/3501) Merge upcoming camera updates (cla: yes, p: camera)
[3502](https://github.com/flutter/plugins/pull/3502) Run pub global activate before pub global run (cla: yes)
[3503](https://github.com/flutter/plugins/pull/3503) [camera] Removed obsolete example folder from camera root (cla: yes, p: camera, platform-android)
[3505](https://github.com/flutter/plugins/pull/3505) [shared_preferences] Update macOS for NNBD (cla: yes, nnbd, p: shared_preferences, platform-macos)
[3506](https://github.com/flutter/plugins/pull/3506) Run activate before run (cla: yes)
[3507](https://github.com/flutter/plugins/pull/3507) [video_player] Update video_player_platform_interface to latest pigeon (cla: yes, p: video_player)
[3509](https://github.com/flutter/plugins/pull/3509) [file_selector_platform_interface] File selector nnbd (cla: yes, nnbd, p: file_selector, platform-web)
[3511](https://github.com/flutter/plugins/pull/3511) Add a note about Plus plugins to CONTRIBUTING.md (cla: yes)
[3512](https://github.com/flutter/plugins/pull/3512) [google_maps_flutter] fix version (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3513](https://github.com/flutter/plugins/pull/3513) Update to ffi 0.3.0-nullsafety.1 (cla: yes, p: path_provider, platform-windows)
[3515](https://github.com/flutter/plugins/pull/3515) Remove stray dependency (cla: yes, p: shared_preferences, platform-windows)
[3516](https://github.com/flutter/plugins/pull/3516) [shared_preferences_windows]-Migrate to null safety (cla: yes, nnbd, p: shared_preferences, platform-windows)
[3518](https://github.com/flutter/plugins/pull/3518) [camera_platform_interface] Added stopRecordingVideo (cla: yes, p: camera)
[3521](https://github.com/flutter/plugins/pull/3521) Add section about how to use Material components in an app using WebView (cla: yes, p: webview_flutter)
[3522](https://github.com/flutter/plugins/pull/3522) [url_launcher_web] Migrate to null-safety (cla: yes, nnbd, p: url_launcher, platform-web)
[3523](https://github.com/flutter/plugins/pull/3523) [shared_preferences] Migrate platform plugins to null-safety (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-web)
[3524](https://github.com/flutter/plugins/pull/3524) [image_picker] Migrate to null-safety (cla: yes, nnbd, p: image_picker)
[3526](https://github.com/flutter/plugins/pull/3526) [shared_preferences] Migrate main package to null-safety (cla: yes, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web)
[3527](https://github.com/flutter/plugins/pull/3527) Add plugin tools as a git submodule and depend on it directly (cla: yes)
[3528](https://github.com/flutter/plugins/pull/3528) [file_selector_web] Fix typo in pubspec. (cla: yes, p: file_selector, platform-web)
[3530](https://github.com/flutter/plugins/pull/3530) [camera_platform_interface] Migrate to null safety (cla: yes, p: camera)
[3532](https://github.com/flutter/plugins/pull/3532) Add post merge labeler (cla: yes)
[3533](https://github.com/flutter/plugins/pull/3533) [camera] NNBD migration of the camera plugin (cla: yes, p: camera, platform-ios)
[3534](https://github.com/flutter/plugins/pull/3534) Update example pubspecs to match templates (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-windows)
[3535](https://github.com/flutter/plugins/pull/3535) [image_picker] Migrate image_picker_web to null-safety (cla: yes, p: image_picker, platform-web)
[3536](https://github.com/flutter/plugins/pull/3536) [video_player] Update video_player_web to point to new video_player_interface (cla: yes, p: video_player, platform-web)
[3537](https://github.com/flutter/plugins/pull/3537) [camera] Fixes crash on takePicture() (cla: yes, p: camera, platform-android)
[3538](https://github.com/flutter/plugins/pull/3538) Enable CI tests on beta (cla: yes)
[3539](https://github.com/flutter/plugins/pull/3539) [google_maps_flutter] Migrate platform interface to null safety (cla: yes, p: google_maps_flutter)
[3540](https://github.com/flutter/plugins/pull/3540) Bump ffi dependencies (cla: yes, p: path_provider, platform-windows)
[3541](https://github.com/flutter/plugins/pull/3541) [path_provider] Update Windows implementation version (cla: yes, p: path_provider)
[3542](https://github.com/flutter/plugins/pull/3542) Added comment about path depenendencies (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows, waiting for tree to go green)
[3543](https://github.com/flutter/plugins/pull/3543) [plugin_platform_interface] Migrate to v2 stable, null-safe (cla: yes, nnbd, p: plugin_platform_interface)
[3544](https://github.com/flutter/plugins/pull/3544) Move plugin tools code (cla: yes)
[3545](https://github.com/flutter/plugins/pull/3545) Honor, and scrub, the 1.0 compatibility promise (cla: yes, p: android_intent, p: connectivity, p: device_info, p: package_info, p: path_provider, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, platform-linux, platform-macos, platform-web, platform-windows)
[3546](https://github.com/flutter/plugins/pull/3546) [video_player] Update video_player readme to change sample video to https (cla: yes, documentation, p: video_player)
[3547](https://github.com/flutter/plugins/pull/3547) [google_maps_flutter] Fix CameraPosition regression (cla: yes, p: google_maps_flutter)
[3548](https://github.com/flutter/plugins/pull/3548) [google_maps_flutter] Migrate to NNBD (cla: yes, nnbd, p: google_maps_flutter)
[3550](https://github.com/flutter/plugins/pull/3550) [file_selector_web] Migrated to null-safety (cla: yes, nnbd, p: file_selector, platform-web)
[3552](https://github.com/flutter/plugins/pull/3552) Fix the build-all exclusion list (cla: yes)
[3554](https://github.com/flutter/plugins/pull/3554) [file_selector_web] update documentation #76067 (cla: yes, p: file_selector, platform-web)
[3555](https://github.com/flutter/plugins/pull/3555) [in_app_purchase] Migrate to NNBD (cla: yes, nnbd, p: in_app_purchase, platform-ios)
[3556](https://github.com/flutter/plugins/pull/3556) Publish check (cla: yes)
[3557](https://github.com/flutter/plugins/pull/3557) [url_launcher] Re-endorse null-safe web implementation. (cla: yes, nnbd, p: url_launcher)
[3558](https://github.com/flutter/plugins/pull/3558) [camera] Added timeout to Android pre-capture sequence (cla: yes, p: camera, platform-android)
[3559](https://github.com/flutter/plugins/pull/3559) [path_provider] Migrate examples to null-safety (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3560](https://github.com/flutter/plugins/pull/3560) Publish check ignores prerelease sdk (cla: yes)
[3561](https://github.com/flutter/plugins/pull/3561) [video_player] Ignore setting mixWithOthers in web (cla: yes, p: video_player, platform-web)
[3562](https://github.com/flutter/plugins/pull/3562) [camera] Solves delay when using the zoom feature on iOS. (cla: yes, p: camera, platform-ios)
[3564](https://github.com/flutter/plugins/pull/3564) [shared_preferences] Migrate examples to NNBD (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-windows)
[3565](https://github.com/flutter/plugins/pull/3565) [shared_preferences] fix crash when list type is dynaimc (cla: yes, nnbd, p: shared_preferences, waiting for tree to go green)
[3566](https://github.com/flutter/plugins/pull/3566) [image_picker_for_web] Add doc comments to point out that some arguments aren't supported on the web (cla: yes, p: image_picker, platform-web)
[3568](https://github.com/flutter/plugins/pull/3568) [path_provider] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: path_provider)
[3569](https://github.com/flutter/plugins/pull/3569) [flutter_plugin_android_lifecycle] Bump version for NNBD stable (cla: yes, nnbd, p: flutter_plugin_android_lifecycle)
[3570](https://github.com/flutter/plugins/pull/3570) [url_launcher] Bump platform interface package to stable NNBD (cla: yes, nnbd, p: url_launcher)
[3571](https://github.com/flutter/plugins/pull/3571) [package_info] Bump version for NNBD stable (cla: yes, nnbd, p: package_info, platform-macos)
[3573](https://github.com/flutter/plugins/pull/3573) [image_picker_platform_interface] Bump NNBD version to stable (cla: yes, nnbd, p: image_picker)
[3574](https://github.com/flutter/plugins/pull/3574) [video_player_web] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, platform-web)
[3575](https://github.com/flutter/plugins/pull/3575) [path_provider] Bump platform packages to NNBD stable (cla: yes, nnbd, p: path_provider, platform-linux, platform-macos, platform-windows)
[3576](https://github.com/flutter/plugins/pull/3576) [flutter_plugin_android_lifecycle-sdk] Update Flutter SDK constraint (cla: yes, p: flutter_plugin_android_lifecycle, waiting for tree to go green)
[3578](https://github.com/flutter/plugins/pull/3578) [video_player_platform_interface] Bump version for NNBD stable (cla: yes, nnbd, p: video_player, waiting for tree to go green)
[3579](https://github.com/flutter/plugins/pull/3579) [image_picker] NNBD stable (cla: yes, nnbd, p: image_picker, waiting for tree to go green)
[3580](https://github.com/flutter/plugins/pull/3580) [image_picker] use nnbd version of deps to resolve ci failure (cla: yes, nnbd, p: image_picker)
[3582](https://github.com/flutter/plugins/pull/3582) [path_provider] Update to stable NNBD (cla: yes, nnbd, p: path_provider)
[3583](https://github.com/flutter/plugins/pull/3583) [url_launcher] Fix SDK copypasta in platform interface (cla: yes, nnbd, p: url_launcher)
[3584](https://github.com/flutter/plugins/pull/3584) [url_launcher] Update platforms to NNBD stable (cla: yes, nnbd, p: url_launcher, platform-linux, platform-macos, platform-web, platform-windows)
[3585](https://github.com/flutter/plugins/pull/3585) [connectivity_platform_interface] nnbd stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3586](https://github.com/flutter/plugins/pull/3586) [shared_preferences] Bump version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3587](https://github.com/flutter/plugins/pull/3587) [battery] Bump platform version to NNBD stable (cla: yes, nnbd, p: battery)
[3588](https://github.com/flutter/plugins/pull/3588) [connectivity_macos] move NNBD to stable (cla: yes, nnbd, p: connectivity, platform-macos, waiting for tree to go green)
[3589](https://github.com/flutter/plugins/pull/3589) [sensors] Update to NNBD stable (cla: yes, nnbd, p: sensors)
[3590](https://github.com/flutter/plugins/pull/3590) [google_maps_flutter] fixed a small bug in example app. (cla: yes, p: google_maps_flutter)
[3591](https://github.com/flutter/plugins/pull/3591) [camera] Fix iOS rotation issue (cla: yes, p: camera, platform-ios, waiting for tree to go green)
[3592](https://github.com/flutter/plugins/pull/3592) [camera] Fix example from README.md (cla: yes, p: camera, waiting for tree to go green)
[3593](https://github.com/flutter/plugins/pull/3593) [cross_file] Stable null safety release (cla: yes, nnbd, p: cross_file)
[3594](https://github.com/flutter/plugins/pull/3594) [battery] Bump version for NNBD stable (cla: yes, nnbd, p: battery)
[3595](https://github.com/flutter/plugins/pull/3595) [shared_preferences] Bump platform versions to NNBD stable (cla: yes, nnbd, p: shared_preferences, platform-linux, platform-macos, platform-web, platform-windows)
[3596](https://github.com/flutter/plugins/pull/3596) [connectivity] null safety stable release (cla: yes, nnbd, p: connectivity, waiting for tree to go green)
[3597](https://github.com/flutter/plugins/pull/3597) [device_info_platform_interface] null safety stable release (cla: yes, nnbd, p: device_info)
[3598](https://github.com/flutter/plugins/pull/3598) [google_maps_flutter] Bump platform interface version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter)
[3599](https://github.com/flutter/plugins/pull/3599) [connectivity_macos] fix version (cla: yes, nnbd, p: connectivity, platform-macos)
[3600](https://github.com/flutter/plugins/pull/3600) [share] Bump version for NNBD stable (cla: yes, nnbd, p: share)
[3601](https://github.com/flutter/plugins/pull/3601) [android_intent] Bump version for NNBD stable (cla: yes, nnbd, p: android_intent)
[3602](https://github.com/flutter/plugins/pull/3602) [shared_preferences] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: shared_preferences)
[3603](https://github.com/flutter/plugins/pull/3603) [url_launcher] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: url_launcher)
[3604](https://github.com/flutter/plugins/pull/3604) [connectivity_macos] fix flutter version constraint (cla: yes, p: connectivity, platform-macos)
[3605](https://github.com/flutter/plugins/pull/3605) [file_selector_platform_interface] null safety stable release (cla: yes, nnbd, p: file_selector)
[3606](https://github.com/flutter/plugins/pull/3606) Move plugin tool tests over (cla: yes)
[3607](https://github.com/flutter/plugins/pull/3607) [android_intent] Fix Flutter SDK version (cla: yes, nnbd, p: android_intent)
[3608](https://github.com/flutter/plugins/pull/3608) [android_alarm_manager] Bump version for NNBD stable (cla: yes, nnbd, p: android_alarm_manager)
[3609](https://github.com/flutter/plugins/pull/3609) [device_info_platform_interface] handle null value from method channel (cla: yes, nnbd, p: device_info)
[3610](https://github.com/flutter/plugins/pull/3610) [camera_platform_interface] Stable null safety release. (cla: yes, nnbd, p: camera)
[3614](https://github.com/flutter/plugins/pull/3614) [espresso] Update SDK requirement for null-safety (cla: yes, nnbd, p: espresso, waiting for tree to go green)
[3615](https://github.com/flutter/plugins/pull/3615) [local_auth] Bump version for NNBD stable (cla: yes, nnbd, p: local_auth)
[3616](https://github.com/flutter/plugins/pull/3616) [ios_platform_images] Bump version for stable NNBD (cla: yes, nnbd, p: ios_platform_images, platform-ios, waiting for tree to go green)
[3617](https://github.com/flutter/plugins/pull/3617) [google_sign_in] Bump platform interface version for NNBD stable (cla: yes, p: google_sign_in)
[3618](https://github.com/flutter/plugins/pull/3618) [quick_action] null safety stable release (cla: yes, p: quick_actions, waiting for tree to go green)
[3619](https://github.com/flutter/plugins/pull/3619) [webview_flutter] null safety stable release (cla: yes, p: webview_flutter)
[3620](https://github.com/flutter/plugins/pull/3620) [wifi_info_flutter_platform_interface] null safety stable release (cla: yes, nnbd, p: wifi_info_flutter)
[3621](https://github.com/flutter/plugins/pull/3621) [quick_action] fix delegate methods not called on iOS (cla: yes, p: quick_actions, platform-ios, waiting for tree to go green)
[3622](https://github.com/flutter/plugins/pull/3622) [google_sign_in_web] Ignore analyzer checks in generated files. (cla: yes, p: google_sign_in, platform-web)
[3623](https://github.com/flutter/plugins/pull/3623) [google_maps_flutter] Bump app-facing version for NNBD stable (cla: yes, nnbd, p: google_maps_flutter, waiting for tree to go green)
[3624](https://github.com/flutter/plugins/pull/3624) [video_player] Bump app-facing version for NNBD stable (cla: yes, p: video_player)
[3625](https://github.com/flutter/plugins/pull/3625) [google_maps_flutter] embedded_views_preview not required since v1.0.0 (cla: yes, p: google_maps_flutter, platform-ios)
[3626](https://github.com/flutter/plugins/pull/3626) [device_info] null safety stable (cla: yes, nnbd, p: device_info)
[3627](https://github.com/flutter/plugins/pull/3627) [wifi_info_flutter] null safety stable (cla: yes, nnbd, p: wifi_info_flutter)
[3628](https://github.com/flutter/plugins/pull/3628) [google_sign_in_web] Migrate to null-safety (cla: yes, nnbd, p: google_sign_in, platform-web, waiting for tree to go green)
[3629](https://github.com/flutter/plugins/pull/3629) [cross_file] Fix base class nullability (cla: yes, p: cross_file)
[3630](https://github.com/flutter/plugins/pull/3630) [file_selector] Return a non-null value from getSavePath on web (cla: yes, p: file_selector, platform-web, waiting for tree to go green)
[3631](https://github.com/flutter/plugins/pull/3631) [file_selector] Migrate to null safety (cla: yes, nnbd, p: file_selector)
[3632](https://github.com/flutter/plugins/pull/3632) set ci runs on master and enable integration test on android alarm manager (cla: yes, p: android_alarm_manager)
[3633](https://github.com/flutter/plugins/pull/3633) Make executor an instance property (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3634](https://github.com/flutter/plugins/pull/3634) Fix Cirrus script for firebase testlab tests (cla: yes)
[3635](https://github.com/flutter/plugins/pull/3635) [image_picker_for_web] Bump version for NNBD stable (cla: yes, p: image_picker, platform-web, waiting for tree to go green)
[3636](https://github.com/flutter/plugins/pull/3636) [in_app_purchase] migrate playing billing library to v3 (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3637](https://github.com/flutter/plugins/pull/3637) [google_sign_in] Bump app-facing version for NNBD stable (cla: yes, p: google_sign_in)
[3639](https://github.com/flutter/plugins/pull/3639) [shared_preferences] Don't create additional Handler when method channel is called. (cla: yes, p: shared_preferences, platform-android, waiting for tree to go green)
[3640](https://github.com/flutter/plugins/pull/3640) [google_sign_in] Adds support to send `clientId` as a parameter (cla: yes, p: google_sign_in, platform-android, platform-ios, waiting for tree to go green)
[3641](https://github.com/flutter/plugins/pull/3641) [camera] Stable release for null safety. (cla: yes, nnbd, p: camera)
[3642](https://github.com/flutter/plugins/pull/3642) [extension_google_sign_in_as_googleapis_auth] Migrate to null safety (cla: yes, p: google_sign_in)
[3643](https://github.com/flutter/plugins/pull/3643) [file_selector] Endorse web (cla: yes, p: file_selector)
[3644](https://github.com/flutter/plugins/pull/3644) [path_provider] Migrate all integration tests to NNBD (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3645](https://github.com/flutter/plugins/pull/3645) [connectivity] migrate unit tests to null safety (cla: yes, nnbd, p: connectivity)
[3646](https://github.com/flutter/plugins/pull/3646) move integration test to null safety for multiple plugins. (cla: yes, nnbd, p: connectivity, p: device_info, p: image_picker, p: in_app_purchase, p: quick_actions, p: webview_flutter, p: wifi_info_flutter)
[3647](https://github.com/flutter/plugins/pull/3647) Update pull_request_label.yml to make actions pointing to refs (cla: yes)
[3650](https://github.com/flutter/plugins/pull/3650) Update plugin_platform_interface min version (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: file_selector, p: google_maps_flutter, p: image_picker, p: path_provider, p: url_launcher, p: wifi_info_flutter)
[3652](https://github.com/flutter/plugins/pull/3652) [connectivity_for_web] Migration to null-safety. (cla: yes, p: connectivity, platform-web, waiting for tree to go green)
[3653](https://github.com/flutter/plugins/pull/3653) Adopt Xcode 12 for podspec lints (cla: yes)
[3654](https://github.com/flutter/plugins/pull/3654) [in_app_purchase] fix plugin version (cla: yes, p: in_app_purchase)
[3655](https://github.com/flutter/plugins/pull/3655) Bring HTML inputs into view automatically (cla: yes, p: webview_flutter, platform-android)
[3657](https://github.com/flutter/plugins/pull/3657) [url_launcher] Migrate unit tests to NNBD (cla: yes, p: url_launcher)
[3658](https://github.com/flutter/plugins/pull/3658) [device_info] Enable NNBD for unit test (cla: yes, p: device_info)
[3659](https://github.com/flutter/plugins/pull/3659) [android_intent] move unit test to nullsafety (cla: yes, p: android_intent, waiting for tree to go green)
[3660](https://github.com/flutter/plugins/pull/3660) [share] Migrate unit tests to null-safety. (cla: yes, p: share, waiting for tree to go green)
[3661](https://github.com/flutter/plugins/pull/3661) Remove unused plugin (integration_test_macos) (cla: yes, p: integration_test, platform-macos, waiting for tree to go green)
[3662](https://github.com/flutter/plugins/pull/3662) [google_maps_flutter_web] update min flutter sdk version to 1.20.0 (cla: yes, p: google_maps_flutter, platform-web, waiting for tree to go green)
[3663](https://github.com/flutter/plugins/pull/3663) [image_picker] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: image_picker, platform-ios)
[3664](https://github.com/flutter/plugins/pull/3664) [webview_flutter] Run CocoaPods iOS tests in RunnerUITests target (cla: yes, p: webview_flutter, platform-ios)
[3665](https://github.com/flutter/plugins/pull/3665) [various] Import flutter_test for future compatibility (cla: yes, p: camera, p: in_app_purchase, p: sensors, waiting for tree to go green)
[3666](https://github.com/flutter/plugins/pull/3666) Reorder the checkboxes in the PR template (cla: yes)
[3667](https://github.com/flutter/plugins/pull/3667) Run static analyzer during xctest (cla: yes)
[3668](https://github.com/flutter/plugins/pull/3668) [video_player] fixed misleading size and aspect ratio documentation (cla: yes, p: video_player, waiting for tree to go green)
[3669](https://github.com/flutter/plugins/pull/3669) [Video_Player] Remove the deprecated API reference. (cla: yes, p: video_player, platform-android, waiting for tree to go green)
[3671](https://github.com/flutter/plugins/pull/3671) [video_player] add http headers (cla: yes, p: video_player, platform-android, platform-ios)
[3672](https://github.com/flutter/plugins/pull/3672) [path_provider] Make a 0.0.5 for Dart 2.12 compat (cla: yes, p: path_provider, platform-windows)
[3673](https://github.com/flutter/plugins/pull/3673) [google_maps_flutter_web] Make google_maps_flutter_web work with latest plugins (cla: yes, p: google_maps_flutter, platform-web)
[3674](https://github.com/flutter/plugins/pull/3674) Update CI config for Flutter 2 (cla: yes, p: wifi_info_flutter, platform-ios)
[3675](https://github.com/flutter/plugins/pull/3675) [google_maps_flutter_web] Move integration tests to example. (cla: yes, p: google_maps_flutter, platform-web)
[3676](https://github.com/flutter/plugins/pull/3676) [image_picker] fix flutter/flutter#71927 (cla: yes, p: image_picker, platform-ios, waiting for tree to go green)
[3678](https://github.com/flutter/plugins/pull/3678) [tool] Improve check version ci so that it enforces the version in CHANGELOG and pubspec matches. (cla: yes, waiting for tree to go green)
[3679](https://github.com/flutter/plugins/pull/3679) [google_maps_flutter_web] Downgrade mockito in example app. (cla: yes, p: google_maps_flutter, platform-web)
[3681](https://github.com/flutter/plugins/pull/3681) [ci] Disable analyze on stable for web plugins that contains null safety integration tests. (cla: yes, p: connectivity, p: google_sign_in, p: image_picker, platform-macos)
[3684](https://github.com/flutter/plugins/pull/3684) [shared_preferences] Fix concurrent modification of the shared preferences on Android (cla: yes, p: shared_preferences, platform-android)
[3685](https://github.com/flutter/plugins/pull/3685) [image_picker] Implemented 2860 and added Unit Test to test functionality (cla: yes, p: image_picker, platform-android, waiting for tree to go green)
[3686](https://github.com/flutter/plugins/pull/3686) [google_sign_in] Updates google_sign_in_platform_interfaces adding parametrized `clientId` (cla: yes, p: google_sign_in)
[3689](https://github.com/flutter/plugins/pull/3689) [extension_google_sign_in_as_googleapis_auth] Update import (cla: yes, p: google_sign_in, waiting for tree to go green)
[3690](https://github.com/flutter/plugins/pull/3690) [google_sign_in] fix test (cla: yes, p: google_sign_in)
[3692](https://github.com/flutter/plugins/pull/3692) Skip pod lint tests (cla: yes)
[3694](https://github.com/flutter/plugins/pull/3694) [extension_google_sign_in_as_googleapis_auth] Deleted. (cla: yes, p: google_sign_in, platform-android, platform-ios, platform-web)
[3697](https://github.com/flutter/plugins/pull/3697) Streamline CI setup, and reenable macOS credits (cla: yes)
[3698](https://github.com/flutter/plugins/pull/3698) [cross_file] Delete. (cla: yes, p: cross_file)
[3700](https://github.com/flutter/plugins/pull/3700) Skip flutter upgrade for pod linting Cirrus task (cla: yes)
[3702](https://github.com/flutter/plugins/pull/3702) [video_player_platform_interface] add http headers (cla: yes, p: video_player)
[3703](https://github.com/flutter/plugins/pull/3703) Prep for alignment with Flutter analysis options (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: cross_file, p: device_info, p: e2e, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter)
[3705](https://github.com/flutter/plugins/pull/3705) [shared_preferences] Fix missing declaration of windows' default_package (cla: yes, p: shared_preferences)
[3708](https://github.com/flutter/plugins/pull/3708) [connectivity] re-endorse connectivity_for_web (cla: yes, p: connectivity)
[3711](https://github.com/flutter/plugins/pull/3711) [ci] Add libgcrypt to Docker image. (cla: yes)
[3713](https://github.com/flutter/plugins/pull/3713) [video_player]Update README.me (cla: yes, p: video_player, waiting for tree to go green)
[3717](https://github.com/flutter/plugins/pull/3717) [image_picker] endorse image_picker_for_web in image_picker plugin (cla: yes, p: image_picker)
[3718](https://github.com/flutter/plugins/pull/3718) [google_maps_flutter_platform_interface] Mark constructors as const for ids (cla: yes, p: google_maps_flutter)
[3720](https://github.com/flutter/plugins/pull/3720) Add missing licenses, and add a check (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3723](https://github.com/flutter/plugins/pull/3723) [integration_test] Deprecate, and stop using in this repository (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-windows)
[3725](https://github.com/flutter/plugins/pull/3725) Add an AUTHORS file to each plugin (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-linux, platform-macos, platform-web, platform-windows)
[3726](https://github.com/flutter/plugins/pull/3726) [google_maps_flutter_web] Migrate to null-safety. (cla: yes, p: google_maps_flutter, platform-web)
[3730](https://github.com/flutter/plugins/pull/3730) Fix cosmetic variations in copyrights and license files (cla: yes, p: connectivity, p: file_selector, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: path_provider, p: share, p: shared_preferences, platform-android, platform-ios, platform-macos, platform-web, platform-windows)
[3731](https://github.com/flutter/plugins/pull/3731) [in_app_purchase] improve readme (cla: yes, p: in_app_purchase, waiting for tree to go green)
[3732](https://github.com/flutter/plugins/pull/3732) [in_app_purchase] moved android iap unit tests (cla: yes, p: in_app_purchase, platform-android, waiting for tree to go green)
[3733](https://github.com/flutter/plugins/pull/3733) Use flutter gcp project for linux tasks. (cla: yes)
[3734](https://github.com/flutter/plugins/pull/3734) [quick_actions] 1/3 Moved quickactions to a subfolder for federated architecture (cla: yes, p: quick_actions, platform-android, platform-ios)
[3735](https://github.com/flutter/plugins/pull/3735) [quick_actions] 2/3 Quick actions federated platform interface (cla: yes, p: quick_actions, platform-android, platform-ios)
[3736](https://github.com/flutter/plugins/pull/3736) [quick_actions] 3/3 Quick actions federated migration (cla: yes, p: quick_actions, waiting for tree to go green)
[3737](https://github.com/flutter/plugins/pull/3737) Standardize copyright year (cla: yes, p: android_alarm_manager, p: android_intent, p: battery, p: camera, p: connectivity, p: device_info, p: espresso, p: file_selector, p: flutter_plugin_android_lifecycle, p: google_maps_flutter, p: google_sign_in, p: image_picker, p: in_app_purchase, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: plugin_platform_interface, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: webview_flutter, p: wifi_info_flutter, platform-android, platform-ios, platform-linux, platform-macos, platform-web, platform-windows)
[3738](https://github.com/flutter/plugins/pull/3738) Enable web integration tests in CI (cla: yes, waiting for tree to go green)
[3739](https://github.com/flutter/plugins/pull/3739) [ci] Fix test driver name (cla: yes, p: connectivity, p: google_maps_flutter, p: google_sign_in, p: url_launcher, platform-web)
[3741](https://github.com/flutter/plugins/pull/3741) [quick_actions_platform_interface] Update license file (cla: yes, p: quick_actions)
[3742](https://github.com/flutter/plugins/pull/3742) [flutter_plugin_tools] Also look for Java tests in plugin path (cla: yes, p: camera, platform-android, waiting for tree to go green)
[3744](https://github.com/flutter/plugins/pull/3744) [in_app_purchase] create sub folder (cla: yes, p: in_app_purchase, platform-android, platform-ios, waiting for tree to go green)
[3745](https://github.com/flutter/plugins/pull/3745) [quick_actions] example fix (cla: yes, p: quick_actions, waiting for tree to go green)
[3746](https://github.com/flutter/plugins/pull/3746) Make sure androidx.lifecycle classes aren't R8'ed away when using flutter_plugin_android_lifecycle (cla: yes, p: flutter_plugin_android_lifecycle, platform-android)
[3747](https://github.com/flutter/plugins/pull/3747) [all] remove podfile in gitignore and update all podfiles (cla: yes, p: battery, p: camera, p: connectivity, p: device_info, p: google_maps_flutter, p: google_sign_in, p: integration_test, p: ios_platform_images, p: local_auth, p: package_info, p: path_provider, p: quick_actions, p: sensors, p: share, p: shared_preferences, p: url_launcher, p: video_player, p: wifi_info_flutter, platform-ios, waiting for tree to go green)
[3748](https://github.com/flutter/plugins/pull/3748) [ci] Do not use empty exclude directories in analyze_command. (cla: yes)
[3749](https://github.com/flutter/plugins/pull/3749) [in_app_purchase] Fixed some minor spelling mistakes in README (cla: yes, p: in_app_purchase)
[3750](https://github.com/flutter/plugins/pull/3750) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3751](https://github.com/flutter/plugins/pull/3751) Revert "[in_app_purchase] Fix error message when trying to consume purchase on iOS" (cla: yes, p: in_app_purchase)
[3752](https://github.com/flutter/plugins/pull/3752) [in_app_purchase] Fix error message when trying to consume purchase on iOS (cla: yes, p: in_app_purchase)
[3753](https://github.com/flutter/plugins/pull/3753) [in_app_purchase] Update instructions on setting up example App (cla: yes, p: in_app_purchase)
[3754](https://github.com/flutter/plugins/pull/3754) [google_maps_flutter] Fix handling of non-nullable invokeMethod return types (cla: yes, p: google_maps_flutter)
[3755](https://github.com/flutter/plugins/pull/3755) [path_provider] Switch to new analysis options (cla: yes, p: path_provider, platform-linux, platform-macos, platform-windows)
[3756](https://github.com/flutter/plugins/pull/3756) Drop redundant question marks used with dynamic. (cla: yes, p: google_sign_in, p: in_app_purchase, platform-web)
[3757](https://github.com/flutter/plugins/pull/3757) Drop redundant ? for dynamic (cla: yes, p: google_sign_in, platform-web)
[3760](https://github.com/flutter/plugins/pull/3760) Add tests for publish check tool command (cla: yes)
[3762](https://github.com/flutter/plugins/pull/3762) Capitalise Platform class in README (cla: yes, p: android_intent)
[3765](https://github.com/flutter/plugins/pull/3765) [webview_flutter] Fix scroll bar position for Android non-hybrid WebViews (cla: yes, p: webview_flutter)
[3767](https://github.com/flutter/plugins/pull/3767) Update flutter_plugin_android_lifecycle dependency versions (cla: yes, p: google_maps_flutter, p: image_picker, p: local_auth, waiting for tree to go green)
[3768](https://github.com/flutter/plugins/pull/3768) [google_maps_flutter] Fix NNBD migration mistake in example (cla: yes, p: google_maps_flutter)
[3769](https://github.com/flutter/plugins/pull/3769) let google_maps_flutter_web version solve for older mockito (cla: yes, p: google_maps_flutter, platform-web)
[3771](https://github.com/flutter/plugins/pull/3771) [google_maps_flutter] Fix TileOverlay cloning (cla: yes, p: google_maps_flutter)
[3772](https://github.com/flutter/plugins/pull/3772) [in_app_purchase] Configured example app to use StoreKit Testing on iOS 14 (cla: yes, p: in_app_purchase, platform-ios, waiting for tree to go green)
[3773](https://github.com/flutter/plugins/pull/3773) Update build-all test for null-safe template (cla: yes)
[3777](https://github.com/flutter/plugins/pull/3777) Switch script/tools over to the new analysis options (cla: yes)
[3778](https://github.com/flutter/plugins/pull/3778) [local_auth] Fix callback thread handling (cla: yes, p: local_auth, platform-ios)
[3779](https://github.com/flutter/plugins/pull/3779) [tool] refactor publish plugin command (cla: yes, waiting for tree to go green)
[3784](https://github.com/flutter/plugins/pull/3784) [google_maps_flutter] Reword README (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3786](https://github.com/flutter/plugins/pull/3786) [local_auth] Update Jetpack dependencies (cla: yes, p: local_auth, platform-android)
[3787](https://github.com/flutter/plugins/pull/3787) [google_maps_flutter] remove unnecessary test (cla: yes, p: google_maps_flutter)
[3790](https://github.com/flutter/plugins/pull/3790) [google_map_flutter] fix version (cla: yes, p: google_maps_flutter)
[3791](https://github.com/flutter/plugins/pull/3791) [flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (cla: yes, p: webview_flutter, platform-ios, waiting for tree to go green)
| website/src/release/release-notes/release-notes-2.2.0.md/0 | {
"file_path": "website/src/release/release-notes/release-notes-2.2.0.md",
"repo_id": "website",
"token_count": 389406
} | 1,249 |
---
title: Books about Flutter
description: Extra, extra! Here's a collection of books about Flutter.
toc: false
---
Here's a collection of books about Flutter,
in alphabetical order.
If you find another one that we should add,
[file an issue][] and (feel free to)
submit a PR ([sample][]) to add it yourself.
Also, check the Flutter version that the book
was written under. Anything published before
Flutter 3.10/Dart 3 (May 2023),
won't reflect the latest version of Dart and
might not include null safety;
anything published before Flutter 3.16 (November 2023)
won't reflect that Material 3 is now
Flutter's default theme.
See the [what's new][]
page to view Flutter's latest release.
[file an issue]: {{site.repo.this}}/issues/new
[sample]: {{site.repo.this}}/pull/6019
[what's new]: /release/whats-new
{% for book in site.data.books -%}
* [{{book.title}}]({{book.link}})
{% endfor -%}
<p>
The following sections have more information about each book.
</p>
{% for book in site.data.books %}
<div class="book-img-with-details row">
<a href="{{book.link}}" title="{{book.title}}" class="col-sm-3">
<img src="/assets/images/docs/cover/{{book.cover}}" alt="{{book.title}}">
</a>
<div class="details col-sm-9" markdown="1">
### [{{book.title}}]({{book.link}})
{:.title}
by {{book.authors | array_to_sentence_string}}
{:.authors.h4}
{{book.desc}}
</div>
</div>
{% endfor %}
| website/src/resources/books.md/0 | {
"file_path": "website/src/resources/books.md",
"repo_id": "website",
"token_count": 471
} | 1,250 |
---
title: Common Flutter errors
description: How to recognize and resolve common Flutter framework errors.
---
<?code-excerpt path-base="testing/common_errors"?>
## Introduction
This page explains several frequently-encountered Flutter
framework errors (including layout errors) and gives suggestions
on how to resolve them.
This is a living document with more errors to be added in
future revisions, and your contributions are welcomed.
Feel free to [open an issue][] or [submit a pull request][] to
make this page more useful to you and the Flutter community.
[open an issue]: {{site.repo.this}}/issues/new/choose
[submit a pull request]: {{site.repo.this}}/pulls
## 'A RenderFlex overflowedβ¦'
RenderFlex overflow is one of the most frequently
encountered Flutter framework errors,
and you've probably run into it already.
**What does the error look like?**
When it happens, yellow and black stripes appear,
indicating the area of overflow in the app UI.
In addition, an error message displays in the debug console:
```text
The following assertion was thrown during layout:
A RenderFlex overflowed by 1146 pixels on the right.
The relevant error-causing widget was
Row lib/errors/renderflex_overflow_column.dart:23
The overflowing RenderFlex has an orientation of Axis.horizontal.
The edge of the RenderFlex that is overflowing has been marked in the rendering
with a yellow and black striped pattern. This is usually caused by the contents
being too big for the RenderFlex.
(Additional lines of this message omitted)
```
**How might you run into this error?**
The error often occurs when a `Column` or `Row` has a
child widget that isn't constrained in its size.
For example,
the code snippet below demonstrates a common scenario:
<?code-excerpt "lib/renderflex_overflow.dart (Problem)"?>
```dart
Widget build(BuildContext context) {
return Row(
children: [
const Icon(Icons.message),
Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Title', style: Theme.of(context).textTheme.headlineMedium),
const Text(
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed '
'do eiusmod tempor incididunt ut labore et dolore magna '
'aliqua. Ut enim ad minim veniam, quis nostrud '
'exercitation ullamco laboris nisi ut aliquip ex ea '
'commodo consequat.',
),
],
),
],
);
}
```
In the above example,
the `Column` tries to be wider than the space the `Row`
(its parent) can allocate to it, causing an overflow error.
Why does the `Column` try to do that?
To understand this layout behavior, you need to know
how Flutter framework performs layout:
"_To perform layout, Flutter walks the render tree in a depth-first traversal
and **passes down size constraints** from parent to child⦠Children respond by
**passing up a size** to their parent object within the constraints the parent
established._" β [Flutter architectural overview][]
In this case, the `Row` widget doesn't constrain the
size of its children, nor does the `Column` widget.
Lacking constraints from its parent widget, the second
`Text` widget tries to be as wide as all the characters
it needs to display. The self-determined width of the
`Text` widget then gets adopted by the `Column`, which
clashes with the maximum amount of horizontal space its parent,
the `Row` widget, can provide.
[Flutter architectural overview]: /resources/architectural-overview#layout-and-rendering
**How to fix it?**
Well, you need to make sure the `Column` won't attempt
to be wider than it can be. To achieve this,
you need to constrain its width. One way to do it is to
wrap the `Column` in an `Expanded` widget:
<?code-excerpt "lib/renderflex_overflow.dart (Fix)"?>
```dart
return const Row(
children: [
Icon(Icons.message),
Expanded(
child: Column(
// code omitted
),
),
],
);
```
Another way is to wrap the `Column` in a `Flexible` widget
and specify a `flex` factor. In fact,
the `Expanded` widget is equivalent to the `Flexible` widget
with a `flex` factor of 1.0, as [its source code][] shows.
To further understand how to use the `Flex` widget in Flutter layouts,
check out [this 90-second Widget of the Week video][flexible-video]
on the `Flexible` widget.
**Further information:**
The resources linked below provide further information about this error.
* [Flexible (Flutter Widget of the Week)][flexible-video]
* [How to debug layout issues with the Flutter Inspector][medium-article]
* [Understanding constraints][]
[its source code]: {{site.repo.flutter}}/blob/c8e42b47f5ea8b5ff7bf2f2b0a2a8e765f1aa51d/packages/flutter/lib/src/widgets/basic.dart#L5166-L5174
[flexible-video]: {{site.yt.watch}}?v=CI7x0mAZiY0
[medium-article]: {{site.flutter-medium}}/how-to-debug-layout-issues-with-the-flutter-inspector-87460a7b9db#738b
[Understanding constraints]: /ui/layout/constraints
## 'RenderBox was not laid out'
While this error is pretty common,
it's often a side effect of a primary error
occurring earlier in the rendering pipeline.
**What does the error look like?**
The message shown by the error looks like this:
```text
RenderBox was not laid out:
RenderViewport#5a477 NEEDS-LAYOUT NEEDS-PAINT NEEDS-COMPOSITING-BITS-UPDATE
```
**How might you run into this error?**
Usually, the issue is related to violation of box constraints,
and it needs to be solved by providing more information
to Flutter about how you'd like to constrain the widgets in question.
You can learn more about how constraints work
in Flutter on the [Understanding constraints][] page.
The `RenderBox was not laid out` error is often
caused by one of two other errors:
* 'Vertical viewport was given unbounded height'
* 'An InputDecorator...cannot have an unbounded width'
<a id="unbounded"></a>
## 'Vertical viewport was given unbounded height'
This is another common layout error you could run into
while creating a UI in your Flutter app.
**What does the error look like?**
The message shown by the error looks like this:
```text
The following assertion was thrown during performResize():
Vertical viewport was given unbounded height.
Viewports expand in the scrolling direction to fill their container.
In this case, a vertical viewport was given an unlimited amount of
vertical space in which to expand. This situation typically happens when a
scrollable widget is nested inside another scrollable widget.
(Additional lines of this message omitted)
```
**How might you run into this error?**
The error is often caused when a `ListView`
(or other kinds of scrollable widgets such as `GridView`)
is placed inside a `Column`. A `ListView` takes all
the vertical space available to it,
unless it's constrained by its parent widget.
However, a `Column` doesn't impose any constraint
on its children's height by default.
The combination of the two behaviors leads to the failure of
determining the size of the `ListView`.
<?code-excerpt "lib/unbounded_height.dart (Problem)"?>
```dart
Widget build(BuildContext context) {
return Center(
child: Column(
children: <Widget>[
const Text('Header'),
ListView(
children: const <Widget>[
ListTile(
leading: Icon(Icons.map),
title: Text('Map'),
),
ListTile(
leading: Icon(Icons.subway),
title: Text('Subway'),
),
],
),
],
),
);
}
```
**How to fix it?**
To fix this error, specify how tall the `ListView` should be.
To make it as tall as the remaining space in the `Column`,
wrap it using an `Expanded` widget (as shown in the following example).
Otherwise, specify an absolute height using a `SizedBox`
widget or a relative height using a `Flexible` widget.
<?code-excerpt "lib/unbounded_height.dart (Fix)"?>
```dart
Widget build(BuildContext context) {
return Center(
child: Column(
children: <Widget>[
const Text('Header'),
Expanded(
child: ListView(
children: const <Widget>[
ListTile(
leading: Icon(Icons.map),
title: Text('Map'),
),
ListTile(
leading: Icon(Icons.subway),
title: Text('Subway'),
),
],
),
),
],
),
);
}
```
**Further information:**
The resources linked below provide
further information about this error.
* [How to debug layout issues with the Flutter Inspector][medium-article]
* [Understanding constraints][]
## 'An InputDecorator...cannot have an unbounded width'
The error message suggests that it's also related
to box constraints, which are important to understand
to avoid many of the most common Flutter framework errors.
**What does the error look like?**
The message shown by the error looks like this:
```
The following assertion was thrown during performLayout():
An InputDecorator, which is typically created by a TextField, cannot have an
unbounded width.
This happens when the parent widget does not provide a finite width constraint.
For example, if the InputDecorator is contained by a `Row`, then its width must
be constrained. An `Expanded` widget or a SizedBox can be used to constrain the
width of the InputDecorator or the TextField that contains it.
(Additional lines of this message omitted)
```
**How might you run into the error?**
This error occurs, for example, when a `Row` contains a
`TextFormField` or a `TextField` but the latter has
no width constraint.
<?code-excerpt "lib/unbounded_width.dart (Problem)"?>
```dart
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Unbounded Width of the TextField'),
),
body: const Row(
children: [
TextField(),
],
),
),
);
}
```
**How to fix it?**
As suggested by the error message,
fix this error by constraining the text field
using either an `Expanded` or `SizedBox` widget.
The following example demonstrates using an `Expanded` widget:
<?code-excerpt "lib/unbounded_width.dart (Fix)"?>
```dart
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Unbounded Width of the TextField'),
),
body: Row(
children: [
Expanded(child: TextFormField()),
],
),
),
);
}
```
## 'Incorrect use of ParentData widget'
This error is about missing an expected parent widget.
**What does the error look like?**
The message shown by the error looks like this:
```
The following assertion was thrown while looking for parent data:
Incorrect use of ParentDataWidget.
(Some lines of this message omitted)
Usually, this indicates that at least one of the offending ParentDataWidgets
listed above is not placed directly inside a compatible ancestor widget.
```
**How might you run into the error?**
While Flutter's widgets are generally flexible
in how they can be composed together in a UI,
a small subset of those widgets expect specific parent widgets.
When this expectation can't be satisfied in your widget tree,
you're likely to encounter this error.
Here is an _incomplete_ list of widgets that expect
specific parent widgets within the Flutter framework.
Feel free to submit a PR (using the doc icon in
the top right corner of the page) to expand this list.
| Widget | Expected parent widget(s) |
|:--------------------------------------|---------------------------:|
| `Flexible` | `Row`, `Column`, or `Flex` |
| `Expanded` (a specialized `Flexible`) | `Row`, `Column`, or `Flex` |
| `Positioned` | `Stack` |
| `TableCell` | `Table` |
**How to fix it?**
The fix should be obvious once you know
which parent widget is missing.
## 'setState called during build'
The `build` method in your Flutter code isn't
a good place to call `setState`,
either directly or indirectly.
**What does the error look like?**
When the error occurs,
the following message is displayed in the console:
```text
The following assertion was thrown building DialogPage(dirty, dependencies:
[_InheritedTheme, _LocalizationsScope-[GlobalKey#59a8e]],
state: _DialogPageState#f121e):
setState() or markNeedsBuild() called during build.
This Overlay widget cannot be marked as needing to build because the framework
is already in the process of building widgets.
(Additional lines of this message omitted)
```
**How might you run into the error?**
In general, this error occurs when the `setState`
method is called within the `build` method.
A common scenario where this error occurs is when
attempting to trigger a `Dialog` from within the
`build` method. This is often motivated by the need to
immediately show information to the user,
but `setState` should never be called from a `build` method.
The following snippet seems to be a common culprit of this error:
<?code-excerpt "lib/set_state_build.dart (Problem)"?>
```dart
Widget build(BuildContext context) {
// Don't do this.
showDialog(
context: context,
builder: (context) {
return const AlertDialog(
title: Text('Alert Dialog'),
);
});
return const Center(
child: Column(
children: <Widget>[
Text('Show Material Dialog'),
],
),
);
}
```
This code doesn't make an explicit call to `setState`,
but it's called by `showDialog`.
The `build` method isn't the right place to call
`showDialog` because `build` can be called by the
framework for every frame, for example, during an animation.
**How to fix it?**
One way to avoid this error is to use the `Navigator` API
to trigger the dialog as a route. In the following example,
there are two pages. The second page has a
dialog to be displayed upon entry.
When the user requests the second page by
clicking a button on the first page,
the `Navigator` pushes two routesβone
for the second page and another for the dialog.
<?code-excerpt "lib/set_state_build.dart (Fix)"?>
```dart
class FirstScreen extends StatelessWidget {
const FirstScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('First Screen'),
),
body: Center(
child: ElevatedButton(
child: const Text('Launch screen'),
onPressed: () {
// Navigate to the second screen using a named route.
Navigator.pushNamed(context, '/second');
// Immediately show a dialog upon loading the second screen.
Navigator.push(
context,
PageRouteBuilder(
barrierDismissible: true,
opaque: false,
pageBuilder: (_, anim1, anim2) => const MyDialog(),
),
);
},
),
),
);
}
}
```
## `The ScrollController is attached to multiple scroll views`
This error can occur when multiple scrolling
widgets (such as `ListView`) appear on the
screen at the same time. It's more likely for
this error to occur on a web or desktop app,
than a mobile app since it's rare to encounter
this scenario on mobile.
For more information and to learn how to fix,
check out the following video on
[`PrimaryScrollController`][controller-video]:
<iframe width="560" height="315" src="{{site.yt.embed}}/33_0ABjFJUU" title="Learn about the PrimaryScrollController Flutter Widget" {{site.yt.set}}></iframe>
[controller-video]: {{site.api}}/flutter/widgets/PrimaryScrollController-class.html
## References
To learn more about how to debug errors,
especially layout errors in Flutter,
check out the following resources:
* [How to debug layout issues with the Flutter Inspector][medium-article]
* [Understanding constraints][]
* [Flutter architectural overview][]
[Flutter architectural overview]: /resources/architectural-overview#layout-and-rendering
| website/src/testing/common-errors.md/0 | {
"file_path": "website/src/testing/common-errors.md",
"repo_id": "website",
"token_count": 5362
} | 1,251 |
---
layout: toc
title: DevTools
description: Content covering the Dart and Flutter DevTools.
---
| website/src/tools/devtools/index.md/0 | {
"file_path": "website/src/tools/devtools/index.md",
"repo_id": "website",
"token_count": 27
} | 1,252 |
---
short-title: 2.15.0 release notes
description: Release notes for Dart and Flutter DevTools version 2.15.0.
toc: false
---
{% include_relative release-notes-2.15.0-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.15.0.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.15.0.md",
"repo_id": "website",
"token_count": 61
} | 1,253 |
---
short-title: 2.23.1 release notes
description: Release notes for Dart and Flutter DevTools version 2.23.1.
toc: false
---
{% include_relative release-notes-2.23.1-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.23.1.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.23.1.md",
"repo_id": "website",
"token_count": 61
} | 1,254 |
---
short-title: 2.28.4 release notes
description: Release notes for Dart and Flutter DevTools version 2.28.4.
toc: false
---
{% include_relative release-notes-2.28.4-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.28.4.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.28.4.md",
"repo_id": "website",
"token_count": 61
} | 1,255 |
---
short-title: 2.8.0 release notes
description: Release notes for Dart and Flutter DevTools version 2.8.0.
toc: false
---
{% include_relative release-notes-2.8.0-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.8.0.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.8.0.md",
"repo_id": "website",
"token_count": 61
} | 1,256 |
---
layout: toc
title: Accessibility & internationalization
short-title: a11y & i18n
description: >
Content covering accessibility and internationalization in Flutter apps.
---
| website/src/ui/accessibility-and-internationalization/index.md/0 | {
"file_path": "website/src/ui/accessibility-and-internationalization/index.md",
"repo_id": "website",
"token_count": 46
} | 1,257 |
---
title: Building user interfaces with Flutter
short-title: UI
description: Introduction to user interface development in Flutter.
js:
- defer: true
url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js
---
<?code-excerpt path-base="ui/widgets_intro/"?>
{% assign api = site.api | append: '/flutter' -%}
Flutter widgets are built using a modern framework that takes
inspiration from [React][]. The central idea is that you build
your UI out of widgets. Widgets describe what their view
should look like given their current configuration and state.
When a widget's state changes, the widget rebuilds its description,
which the framework diffs against the previous description in order
to determine the minimal changes needed in the underlying render
tree to transition from one state to the next.
{{site.alert.note}}
If you would like to become better acquainted with Flutter by diving
into some code, check out [building layouts][],
and [adding interactivity to your Flutter app][].
{{site.alert.end}}
## Hello world
The minimal Flutter app simply calls the [`runApp()`][]
function with a widget:
<?code-excerpt "lib/main.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-310px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
void main() {
runApp(
const Center(
child: Text(
'Hello, world!',
textDirection: TextDirection.ltr,
),
),
);
}
```
The `runApp()` function takes the given
[`Widget`][] and makes it the root of the widget tree.
In this example, the widget tree consists of two widgets,
the [`Center`][] widget and its child, the [`Text`][] widget.
The framework forces the root widget to cover the screen,
which means the text "Hello, world" ends up centered on screen.
The text direction needs to be specified in this instance;
when the `MaterialApp` widget is used,
this is taken care of for you, as demonstrated later.
When writing an app, you'll commonly author new widgets that
are subclasses of either [`StatelessWidget`][] or [`StatefulWidget`][],
depending on whether your widget manages any state.
A widget's main job is to implement a [`build()`][] function,
which describes the widget in terms of other, lower-level widgets.
The framework builds those widgets in turn until the process
bottoms out in widgets that represent the underlying [`RenderObject`][],
which computes and describes the geometry of the widget.
## Basic widgets
Flutter comes with a suite of powerful basic widgets,
of which the following are commonly used:
**[`Text`][]**
: The `Text` widget lets you create a run of styled text
within your application.
**[`Row`][], [`Column`][]**
: These flex widgets let you create flexible layouts in
both the horizontal (`Row`) and vertical (`Column`) directions.
The design of these objects is based on the web's
flexbox layout model.
**[`Stack`][]**
: Instead of being linearly oriented (either horizontally or vertically),
a `Stack` widget lets you place widgets on top of each other in paint order.
You can then use the [`Positioned`][] widget on children of a
`Stack` to position them relative to the top, right, bottom,
or left edge of the stack. Stacks are based on the web's
absolute positioning layout model.
**[`Container`][]**
: The `Container` widget lets you create a rectangular visual element.
A container can be decorated with a [`BoxDecoration`][], such as a
background, a border, or a shadow. A `Container` can also have margins,
padding, and constraints applied to its size. In addition, a
`Container` can be transformed in three-dimensional space using a matrix.
Below are some simple widgets that combine these and other widgets:
<?code-excerpt "lib/main_myappbar.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class MyAppBar extends StatelessWidget {
const MyAppBar({required this.title, super.key});
// Fields in a Widget subclass are always marked "final".
final Widget title;
@override
Widget build(BuildContext context) {
return Container(
height: 56, // in logical pixels
padding: const EdgeInsets.symmetric(horizontal: 8),
decoration: BoxDecoration(color: Colors.blue[500]),
// Row is a horizontal, linear layout.
child: Row(
children: [
const IconButton(
icon: Icon(Icons.menu),
tooltip: 'Navigation menu',
onPressed: null, // null disables the button
),
// Expanded expands its child
// to fill the available space.
Expanded(
child: title,
),
const IconButton(
icon: Icon(Icons.search),
tooltip: 'Search',
onPressed: null,
),
],
),
);
}
}
class MyScaffold extends StatelessWidget {
const MyScaffold({super.key});
@override
Widget build(BuildContext context) {
// Material is a conceptual piece
// of paper on which the UI appears.
return Material(
// Column is a vertical, linear layout.
child: Column(
children: [
MyAppBar(
title: Text(
'Example title',
style: Theme.of(context) //
.primaryTextTheme
.titleLarge,
),
),
const Expanded(
child: Center(
child: Text('Hello, world!'),
),
),
],
),
);
}
}
void main() {
runApp(
const MaterialApp(
title: 'My app', // used by the OS task switcher
home: SafeArea(
child: MyScaffold(),
),
),
);
}
```
Be sure to have a `uses-material-design: true` entry in the `flutter`
section of your `pubspec.yaml` file. It allows you to use the predefined
set of [Material icons][]. It's generally a good idea to include this line
if you are using the Materials library.
```yaml
name: my_app
flutter:
uses-material-design: true
```
Many Material Design widgets need to be inside of a [`MaterialApp`][]
to display properly, in order to inherit theme data.
Therefore, run the application with a `MaterialApp`.
The `MyAppBar` widget creates a [`Container`][] with a height of 56
device-independent pixels with an internal padding of 8 pixels,
both on the left and the right. Inside the container,
`MyAppBar` uses a [`Row`][] layout to organize its children.
The middle child, the `title` widget, is marked as [`Expanded`][],
which means it expands to fill any remaining available space
that hasn't been consumed by the other children.
You can have multiple `Expanded` children and determine the
ratio in which they consume the available space using the
[`flex`][] argument to `Expanded`.
The `MyScaffold` widget organizes its children in a vertical column.
At the top of the column it places an instance of `MyAppBar`,
passing the app bar a [`Text`][] widget to use as its title.
Passing widgets as arguments to other widgets is a powerful technique
that lets you create generic widgets that can be reused in a wide
variety of ways. Finally, `MyScaffold` uses an
[`Expanded`][] to fill the remaining space with its body,
which consists of a centered message.
For more information, check out [Layouts][].
## Using Material Components
Flutter provides a number of widgets that help you build apps
that follow Material Design. A Material app starts with the
[`MaterialApp`][] widget, which builds a number of useful widgets
at the root of your app, including a [`Navigator`][],
which manages a stack of widgets identified by strings,
also known as "routes". The `Navigator` lets you transition smoothly
between screens of your application. Using the [`MaterialApp`][]
widget is entirely optional but a good practice.
<?code-excerpt "lib/main_tutorial.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
title: 'Flutter Tutorial',
home: TutorialHome(),
),
);
}
class TutorialHome extends StatelessWidget {
const TutorialHome({super.key});
@override
Widget build(BuildContext context) {
// Scaffold is a layout for
// the major Material Components.
return Scaffold(
appBar: AppBar(
leading: const IconButton(
icon: Icon(Icons.menu),
tooltip: 'Navigation menu',
onPressed: null,
),
title: const Text('Example title'),
actions: const [
IconButton(
icon: Icon(Icons.search),
tooltip: 'Search',
onPressed: null,
),
],
),
// body is the majority of the screen.
body: const Center(
child: Text('Hello, world!'),
),
floatingActionButton: const FloatingActionButton(
tooltip: 'Add', // used by assistive technologies
onPressed: null,
child: Icon(Icons.add),
),
);
}
}
```
Now that the code has switched from `MyAppBar` and `MyScaffold` to the
[`AppBar`][] and [`Scaffold`][] widgets, and from `material.dart`,
the app is starting to look a bit more Material.
For example, the app bar has a shadow and the title text inherits the
correct styling automatically. A floating action button is also added.
Notice that widgets are passed as arguments to other widgets.
The [`Scaffold`][] widget takes a number of different widgets as
named arguments, each of which are placed in the `Scaffold`
layout in the appropriate place. Similarly, the
[`AppBar`][] widget lets you pass in widgets for the
[`leading`][] widget, and the [`actions`][] of the [`title`][] widget.
This pattern recurs throughout the framework and is something you
might consider when designing your own widgets.
For more information, check out [Material Components widgets][].
{{site.alert.note}}
Material is one of the 2 bundled designs included with Flutter.
To create an iOS-centric design,
check out the [Cupertino components][] package,
which has its own versions of
[`CupertinoApp`][], and [`CupertinoNavigationBar`][].
{{site.alert.end}}
## Handling gestures
Most applications include some form of user interaction with the system.
The first step in building an interactive application is to detect
input gestures. See how that works by creating a simple button:
<?code-excerpt "lib/main_mybutton.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class MyButton extends StatelessWidget {
const MyButton({super.key});
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
print('MyButton was tapped!');
},
child: Container(
height: 50,
padding: const EdgeInsets.all(8),
margin: const EdgeInsets.symmetric(horizontal: 8),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
color: Colors.lightGreen[500],
),
child: const Center(
child: Text('Engage'),
),
),
);
}
}
void main() {
runApp(
const MaterialApp(
home: Scaffold(
body: Center(
child: MyButton(),
),
),
),
);
}
```
The [`GestureDetector`][] widget doesn't have a visual
representation but instead detects gestures made by the
user. When the user taps the [`Container`][],
the `GestureDetector` calls its [`onTap()`][] callback, in this
case printing a message to the console. You can use
`GestureDetector` to detect a variety of input gestures,
including taps, drags, and scales.
Many widgets use a [`GestureDetector`][] to provide
optional callbacks for other widgets. For example, the
[`IconButton`][], [`ElevatedButton`][], and
[`FloatingActionButton`][] widgets have [`onPressed()`][]
callbacks that are triggered when the user taps the widget.
For more information, check out [Gestures in Flutter][].
## Changing widgets in response to input
So far, this page has used only stateless widgets.
Stateless widgets receive arguments from their parent widget,
which they store in [`final`][] member variables.
When a widget is asked to [`build()`][], it uses these stored
values to derive new arguments for the widgets it creates.
In order to build more complex experiences—for example,
to react in more interesting ways to user input—applications
typically carry some state. Flutter uses `StatefulWidgets` to capture
this idea. `StatefulWidgets` are special widgets that know how to generate
`State` objects, which are then used to hold state.
Consider this basic example, using the [`ElevatedButton`][] mentioned earlier:
<?code-excerpt "lib/main_counter.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class Counter extends StatefulWidget {
// This class is the configuration for the state.
// It holds the values (in this case nothing) provided
// by the parent and used by the build method of the
// State. Fields in a Widget subclass are always marked
// "final".
const Counter({super.key});
@override
State<Counter> createState() => _CounterState();
}
class _CounterState extends State<Counter> {
int _counter = 0;
void _increment() {
setState(() {
// This call to setState tells the Flutter framework
// that something has changed in this State, which
// causes it to rerun the build method below so that
// the display can reflect the updated values. If you
// change _counter without calling setState(), then
// the build method won't be called again, and so
// nothing would appear to happen.
_counter++;
});
}
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called,
// for instance, as done by the _increment method above.
// The Flutter framework has been optimized to make
// rerunning build methods fast, so that you can just
// rebuild anything that needs updating rather than
// having to individually changes instances of widgets.
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
onPressed: _increment,
child: const Text('Increment'),
),
const SizedBox(width: 16),
Text('Count: $_counter'),
],
);
}
}
void main() {
runApp(
const MaterialApp(
home: Scaffold(
body: Center(
child: Counter(),
),
),
),
);
}
```
You might wonder why `StatefulWidget` and `State` are separate objects.
In Flutter, these two types of objects have different life cycles.
`Widgets` are temporary objects, used to construct a presentation of
the application in its current state. `State` objects, on the other
hand, are persistent between calls to
`build()`, allowing them to remember information.
The example above accepts user input and directly uses
the result in its `build()` method. In more complex applications,
different parts of the widget hierarchy might be
responsible for different concerns; for example, one
widget might present a complex user interface
with the goal of gathering specific information,
such as a date or location, while another widget might
use that information to change the overall presentation.
In Flutter, change notifications flow "up" the widget
hierarchy by way of callbacks, while current state flows
"down" to the stateless widgets that do presentation.
The common parent that redirects this flow is the `State`.
The following slightly more complex example shows how
this works in practice:
<?code-excerpt "lib/main_counterdisplay.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class CounterDisplay extends StatelessWidget {
const CounterDisplay({required this.count, super.key});
final int count;
@override
Widget build(BuildContext context) {
return Text('Count: $count');
}
}
class CounterIncrementor extends StatelessWidget {
const CounterIncrementor({required this.onPressed, super.key});
final VoidCallback onPressed;
@override
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: onPressed,
child: const Text('Increment'),
);
}
}
class Counter extends StatefulWidget {
const Counter({super.key});
@override
State<Counter> createState() => _CounterState();
}
class _CounterState extends State<Counter> {
int _counter = 0;
void _increment() {
setState(() {
++_counter;
});
}
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CounterIncrementor(onPressed: _increment),
const SizedBox(width: 16),
CounterDisplay(count: _counter),
],
);
}
}
void main() {
runApp(
const MaterialApp(
home: Scaffold(
body: Center(
child: Counter(),
),
),
),
);
}
```
Notice the creation of two new stateless widgets,
cleanly separating the concerns of _displaying_ the counter
(`CounterDisplay`) and _changing_ the counter (`CounterIncrementor`).
Although the net result is the same as the previous example,
the separation of responsibility allows greater complexity to
be encapsulated in the individual widgets,
while maintaining simplicity in the parent.
For more information, check out:
* [`StatefulWidget`][]
* [`setState()`][]
## Bringing it all together
What follows is a more complete example that brings together
these concepts: A hypothetical shopping application displays various
products offered for sale, and maintains a shopping cart for
intended purchases. Start by defining the presentation class,
`ShoppingListItem`:
<?code-excerpt "lib/main_shoppingitem.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class Product {
const Product({required this.name});
final String name;
}
typedef CartChangedCallback = Function(Product product, bool inCart);
class ShoppingListItem extends StatelessWidget {
ShoppingListItem({
required this.product,
required this.inCart,
required this.onCartChanged,
}) : super(key: ObjectKey(product));
final Product product;
final bool inCart;
final CartChangedCallback onCartChanged;
Color _getColor(BuildContext context) {
// The theme depends on the BuildContext because different
// parts of the tree can have different themes.
// The BuildContext indicates where the build is
// taking place and therefore which theme to use.
return inCart //
? Colors.black54
: Theme.of(context).primaryColor;
}
TextStyle? _getTextStyle(BuildContext context) {
if (!inCart) return null;
return const TextStyle(
color: Colors.black54,
decoration: TextDecoration.lineThrough,
);
}
@override
Widget build(BuildContext context) {
return ListTile(
onTap: () {
onCartChanged(product, inCart);
},
leading: CircleAvatar(
backgroundColor: _getColor(context),
child: Text(product.name[0]),
),
title: Text(product.name, style: _getTextStyle(context)),
);
}
}
void main() {
runApp(
MaterialApp(
home: Scaffold(
body: Center(
child: ShoppingListItem(
product: const Product(name: 'Chips'),
inCart: true,
onCartChanged: (product, inCart) {},
),
),
),
),
);
}
```
The `ShoppingListItem` widget follows a common pattern
for stateless widgets. It stores the values it receives
in its constructor in [`final`][] member variables,
which it then uses during its [`build()`][] function.
For example, the `inCart` boolean toggles between two visual
appearances: one that uses the primary color from the current
theme, and another that uses gray.
When the user taps the list item, the widget doesn't modify
its `inCart` value directly. Instead, the widget calls the
`onCartChanged` function it received from its parent widget.
This pattern lets you store state higher in the widget
hierarchy, which causes the state to persist for longer periods of time.
In the extreme, the state stored on the widget passed to
[`runApp()`][] persists for the lifetime of the
application.
When the parent receives the `onCartChanged` callback,
the parent updates its internal state, which triggers
the parent to rebuild and create a new instance
of `ShoppingListItem` with the new `inCart` value.
Although the parent creates a new instance of
`ShoppingListItem` when it rebuilds, that operation is cheap
because the framework compares the newly built widgets with the previously
built widgets and applies only the differences to the underlying
[`RenderObject`][].
Here's an example parent widget that stores mutable state:
<?code-excerpt "lib/main_shoppinglist.dart"?>
```run-dartpad:theme-light:mode-flutter:run-false:width-100%:height-600px:split-60:ga_id-starting_code
import 'package:flutter/material.dart';
class Product {
const Product({required this.name});
final String name;
}
typedef CartChangedCallback = Function(Product product, bool inCart);
class ShoppingListItem extends StatelessWidget {
ShoppingListItem({
required this.product,
required this.inCart,
required this.onCartChanged,
}) : super(key: ObjectKey(product));
final Product product;
final bool inCart;
final CartChangedCallback onCartChanged;
Color _getColor(BuildContext context) {
// The theme depends on the BuildContext because different
// parts of the tree can have different themes.
// The BuildContext indicates where the build is
// taking place and therefore which theme to use.
return inCart //
? Colors.black54
: Theme.of(context).primaryColor;
}
TextStyle? _getTextStyle(BuildContext context) {
if (!inCart) return null;
return const TextStyle(
color: Colors.black54,
decoration: TextDecoration.lineThrough,
);
}
@override
Widget build(BuildContext context) {
return ListTile(
onTap: () {
onCartChanged(product, inCart);
},
leading: CircleAvatar(
backgroundColor: _getColor(context),
child: Text(product.name[0]),
),
title: Text(
product.name,
style: _getTextStyle(context),
),
);
}
}
class ShoppingList extends StatefulWidget {
const ShoppingList({required this.products, super.key});
final List<Product> products;
// The framework calls createState the first time
// a widget appears at a given location in the tree.
// If the parent rebuilds and uses the same type of
// widget (with the same key), the framework re-uses
// the State object instead of creating a new State object.
@override
State<ShoppingList> createState() => _ShoppingListState();
}
class _ShoppingListState extends State<ShoppingList> {
final _shoppingCart = <Product>{};
void _handleCartChanged(Product product, bool inCart) {
setState(() {
// When a user changes what's in the cart, you need
// to change _shoppingCart inside a setState call to
// trigger a rebuild.
// The framework then calls build, below,
// which updates the visual appearance of the app.
if (!inCart) {
_shoppingCart.add(product);
} else {
_shoppingCart.remove(product);
}
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Shopping List'),
),
body: ListView(
padding: const EdgeInsets.symmetric(vertical: 8),
children: widget.products.map((product) {
return ShoppingListItem(
product: product,
inCart: _shoppingCart.contains(product),
onCartChanged: _handleCartChanged,
);
}).toList(),
),
);
}
}
void main() {
runApp(const MaterialApp(
title: 'Shopping App',
home: ShoppingList(
products: [
Product(name: 'Eggs'),
Product(name: 'Flour'),
Product(name: 'Chocolate chips'),
],
),
));
}
```
The `ShoppingList` class extends [`StatefulWidget`][],
which means this widget stores mutable state.
When the `ShoppingList` widget is first inserted
into the tree, the framework calls the [`createState()`][] function
to create a fresh instance of `_ShoppingListState` to associate with that
location in the tree. (Notice that subclasses of
[`State`][] are typically named with leading underscores to
indicate that they are private implementation details.)
When this widget's parent rebuilds, the parent creates a new instance
of `ShoppingList`, but the framework reuses the `_ShoppingListState`
instance that is already in the tree rather than calling
`createState` again.
To access properties of the current `ShoppingList`,
the `_ShoppingListState` can use its [`widget`][] property.
If the parent rebuilds and creates a new `ShoppingList`,
the `_ShoppingListState` rebuilds with the new widget value.
If you wish to be notified when the `widget` property changes,
override the [`didUpdateWidget()`][] function, which is passed
an `oldWidget` to let you compare the old widget with
the current widget.
When handling the `onCartChanged` callback, the `_ShoppingListState`
mutates its internal state by either adding or removing a product from
`_shoppingCart`. To signal to the framework that it changed its internal
state, it wraps those calls in a [`setState()`][] call.
Calling `setState` marks this widget as dirty and schedules it to be rebuilt
the next time your app needs to update the screen.
If you forget to call `setState` when modifying the internal
state of a widget, the framework won't know your widget is
dirty and might not call the widget's [`build()`][] function,
which means the user interface might not update to reflect
the changed state. By managing state in this way,
you don't need to write separate code for creating and
updating child widgets. Instead, you simply implement the `build`
function, which handles both situations.
## Responding to widget lifecycle events
After calling [`createState()`][] on the `StatefulWidget`,
the framework inserts the new state object into the tree and
then calls [`initState()`][] on the state object.
A subclass of [`State`][] can override `initState` to do work
that needs to happen just once. For example, override `initState`
to configure animations or to subscribe to platform services.
Implementations of `initState` are required to start
by calling `super.initState`.
When a state object is no longer needed,
the framework calls [`dispose()`][] on the state object.
Override the `dispose` function to do cleanup work.
For example, override `dispose` to cancel timers or to
unsubscribe from platform services. Implementations of
`dispose` typically end by calling `super.dispose`.
For more information, check out [`State`][].
## Keys
Use keys to control which widgets the framework matches up
with other widgets when a widget rebuilds. By default, the
framework matches widgets in the current and previous build
according to their [`runtimeType`][] and the order in which they appear.
With keys, the framework requires that the two widgets have
the same [`key`][] as well as the same `runtimeType`.
Keys are most useful in widgets that build many instances of
the same type of widget. For example, the `ShoppingList` widget,
which builds just enough `ShoppingListItem` instances to
fill its visible region:
* Without keys, the first entry in the current build
would always sync with the first entry in the previous build,
even if, semantically, the first entry in the list just
scrolled off screen and is no longer visible in the viewport.
* By assigning each entry in the list a "semantic" key,
the infinite list can be more efficient because the
framework syncs entries with matching semantic keys
and therefore similar (or identical) visual appearances.
Moreover, syncing the entries semantically means that
state retained in stateful child widgets remains attached
to the same semantic entry rather than the entry in the
same numerical position in the viewport.
For more information, check out the [`Key`][] API.
## Global keys
Use global keys to uniquely identify child widgets.
Global keys must be globally unique across the entire
widget hierarchy, unlike local keys which need
only be unique among siblings. Because they are
globally unique, a global key can be used to
retrieve the state associated with a widget.
For more information, check out the [`GlobalKey`][] API.
[`actions`]: {{api}}/material/AppBar-class.html#actions
[adding interactivity to your Flutter app]: /ui/interactivity
[`AppBar`]: {{api}}/material/AppBar-class.html
[`BoxDecoration`]: {{api}}/painting/BoxDecoration-class.html
[`build()`]: {{api}}/widgets/StatelessWidget/build.html
[building layouts]: /ui/layout
[`Center`]: {{api}}/widgets/Center-class.html
[`Column`]: {{api}}/widgets/Column-class.html
[`Container`]: {{api}}/widgets/Container-class.html
[`createState()`]: {{api}}/widgets/StatefulWidget-class.html#createState
[Cupertino components]: /ui/widgets/cupertino
[`CupertinoApp`]: {{api}}/cupertino/CupertinoApp-class.html
[`CupertinoNavigationBar`]: {{api}}/cupertino/CupertinoNavigationBar-class.html
[`didUpdateWidget()`]: {{api}}/widgets/State-class.html#didUpdateWidget
[`dispose()`]: {{api}}/widgets/State-class.html#dispose
[`Expanded`]: {{api}}/widgets/Expanded-class.html
[`final`]: {{site.dart-site}}/language/variables#final-and-const
[`flex`]: {{api}}/widgets/Expanded-class.html#flex
[`FloatingActionButton`]: {{api}}/material/FloatingActionButton-class.html
[Gestures in Flutter]: /ui/interactivity/gestures
[`GestureDetector`]: {{api}}/widgets/GestureDetector-class.html
[`GlobalKey`]: {{api}}/widgets/GlobalKey-class.html
[`IconButton`]: {{api}}/material/IconButton-class.html
[`initState()`]: {{api}}/widgets/State-class.html#initState
[`key`]: {{api}}/widgets/Widget-class.html#key
[`Key`]: {{api}}/foundation/Key-class.html
[Layouts]: /ui/widgets/layout
[`leading`]: {{api}}/material/AppBar-class.html#leading
[Material Components widgets]: /ui/widgets/material
[Material icons]: https://design.google.com/icons/
[`MaterialApp`]: {{api}}/material/MaterialApp-class.html
[`Navigator`]: {{api}}/widgets/Navigator-class.html
[`onPressed()`]: {{api}}/material/ElevatedButton-class.html#onPressed
[`onTap()`]: {{api}}/widgets/GestureDetector-class.html#onTap
[`Positioned`]: {{api}}/widgets/Positioned-class.html
[`ElevatedButton`]: {{api}}/material/ElevatedButton-class.html
[React]: https://react.dev
[`RenderObject`]: {{api}}/rendering/RenderObject-class.html
[`Row`]: {{api}}/widgets/Row-class.html
[`runApp()`]: {{api}}/widgets/runApp.html
[`runtimeType`]: {{api}}/widgets/Widget-class.html#runtimeType
[`Scaffold`]: {{api}}/material/Scaffold-class.html
[`setState()`]: {{api}}/widgets/State/setState.html
[`Stack`]: {{api}}/widgets/Stack-class.html
[`State`]: {{api}}/widgets/State-class.html
[`StatefulWidget`]: {{api}}/widgets/StatefulWidget-class.html
[`StatelessWidget`]: {{api}}/widgets/StatelessWidget-class.html
[`Text`]: {{api}}/widgets/Text-class.html
[`title`]: {{api}}/material/AppBar-class.html#title
[`widget`]: {{api}}/widgets/State-class.html#widget
[`Widget`]: {{api}}/widgets/Widget-class.html
| website/src/ui/index.md/0 | {
"file_path": "website/src/ui/index.md",
"repo_id": "website",
"token_count": 10247
} | 1,258 |
---
title: Deep linking
description: Navigate to routes when the app receives a new URL.
---
Flutter supports deep linking on iOS, Android, and web browsers.
Opening a URL displays that screen in your app. With the following
steps, you can launch and display routes by using named routes
(either with the [`routes`][routes] parameter or
[`onGenerateRoute`][onGenerateRoute]), or by
using the [`Router`][Router] widget.
{{site.alert.note}}
Named routes are no longer recommended for most
applications. For more information, see
[Limitations][] in the [navigation overview][] page.
{{site.alert.end}}
[Limitations]: /ui/navigation#limitations
[navigation overview]: /ui/navigation
If you're running the app in a web browser, there's no additional setup
required. Route paths are handled in the same way as an iOS or Android deep
link. By default, web apps read the deep link path from the url fragment using
the pattern: `/#/path/to/app/screen`, but this can be changed by
[configuring the URL strategy][] for your app.
If you are a visual learner, check out the following video:
<iframe width="560" height="315" src="{{site.yt.embed}}/KNAb2XL7k2g" title="Learn how to create and link to routes in your Flutter app" {{site.yt.set}}></iframe>
**Deep linking in Flutter**
## Get started
To get started, see our cookbooks for Android and iOS:
<div class="card-deck mb-8">
<a class="card" href="/cookbook/navigation/set-up-app-links">
<div class="card-body">
<header class="card-title text-center m-0">
Android
</header>
</div>
</a>
<a class="card" href="/cookbook/navigation/set-up-universal-links">
<div class="card-body">
<header class="card-title text-center m-0">
iOS
</header>
</div>
</a>
</div>
## Migrating from plugin-based deep linking
If you have written a plugin to handle deep links, as described in
[Deep Links and Flutter applications][plugin-linking]
(a free article on Medium),
it will continue to work until you opt in to this behavior by adding
`FlutterDeepLinkingEnabled` to `Info.plist` or
`flutter_deeplinking_enabled` to `AndroidManifest.xml`, respectively.
## Behavior
The behavior varies slightly based on the platform and whether the app is
launched and running.
<div class="table-wrapper" markdown="1">
| Platform / Scenario | Using Navigator | Using Router |
|--------------------------|---------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| iOS (not launched) | App gets initialRoute ("/") and a short time after gets a pushRoute | App gets initialRoute ("/") and a short time after uses the RouteInformationParser to parse the route and call RouterDelegate.setNewRoutePath, which configures the Navigator with the corresponding Page. |
| Android - (not launched) | App gets initialRoute containing the route ("/deeplink") | App gets initialRoute ("/deeplink") and passes it to the RouteInformationParser to parse the route and call RouterDelegate.setNewRoutePath, which configures the Navigator with the corresponding Pages. |
| iOS (launched) | pushRoute is called | Path is parsed, and the Navigator is configured with a new set of Pages. |
| Android (launched) | pushRoute is called | Path is parsed, and the Navigator is configured with a new set of Pages. |
{:.table.table-striped}
</div>
When using the [`Router`][Router] widget,
your app has the ability to replace the
current set of pages when a new deep link
is opened while the app is running.
## To learn more
* [Learning Flutter's new navigation and routing system][] provides an
introduction to the Router system.
* [Deep dive into Flutter deep linking][io-dl] video from Google I/O 2023
[io-dl]: {{site.yt.watch}}?v=6RxuDcs6jVw&t=3s
[Learning Flutter's new navigation and routing system]: {{site.flutter-medium}}/learning-flutters-new-navigation-and-routing-system-7c9068155ade
[routes]: {{site.api}}/flutter/material/MaterialApp/routes.html
[onGenerateRoute]: {{site.api}}/flutter/material/MaterialApp/onGenerateRoute.html
[Router]: {{site.api}}/flutter/widgets/Router-class.html
[plugin-linking]: {{site.medium}}/flutter-community/deep-links-and-flutter-applications-how-to-handle-them-properly-8c9865af9283
[configuring the URL strategy]: /ui/navigation/url-strategies
| website/src/ui/navigation/deep-linking.md/0 | {
"file_path": "website/src/ui/navigation/deep-linking.md",
"repo_id": "website",
"token_count": 1918
} | 1,259 |
---
title: Scrolling widgets
short-title: Scrolling
description: A catalog of Flutter's widgets that enable or support scrolling.
---
{% include docs/catalogpage.html category="Scrolling" %}
| website/src/ui/widgets/scrolling.md/0 | {
"file_path": "website/src/ui/widgets/scrolling.md",
"repo_id": "website",
"token_count": 52
} | 1,260 |
name: flutter_site
description: Dart-based tools for building docs.flutter.dev.
publish_to: none
environment:
sdk: ^3.3.0
dependencies:
args: ^2.4.2
io: ^1.0.4
linkcheck: ^3.0.0
path: ^1.9.0
dev_dependencies:
analysis_defaults:
path: ../../site-shared/packages/analysis_defaults
| website/tool/flutter_site/pubspec.yaml/0 | {
"file_path": "website/tool/flutter_site/pubspec.yaml",
"repo_id": "website",
"token_count": 124
} | 1,261 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/adaptive_app/step_04/android/gradle.properties/0 | {
"file_path": "codelabs/adaptive_app/step_04/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 0 |
#import "GeneratedPluginRegistrant.h"
| codelabs/adaptive_app/step_06/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/adaptive_app/step_06/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 1 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:extension_google_sign_in_as_googleapis_auth/extension_google_sign_in_as_googleapis_auth.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:googleapis_auth/auth_io.dart';
import 'package:provider/provider.dart';
import 'package:url_launcher/link.dart';
import 'app_state.dart';
typedef _AdaptiveLoginButtonWidget = Widget Function({
required VoidCallback? onPressed,
});
class AdaptiveLogin extends StatelessWidget {
const AdaptiveLogin({
super.key,
required this.clientId,
required this.scopes,
required this.loginButtonChild,
});
final ClientId clientId;
final List<String> scopes;
final Widget loginButtonChild;
@override
Widget build(BuildContext context) {
if (kIsWeb || Platform.isAndroid || Platform.isIOS) {
return _GoogleSignInLogin(
button: _loginButton,
scopes: scopes,
);
} else {
return _GoogleApisAuthLogin(
button: _loginButton,
scopes: scopes,
clientId: clientId,
);
}
}
Widget _loginButton({required VoidCallback? onPressed}) => ElevatedButton(
onPressed: onPressed,
child: loginButtonChild,
);
}
class _GoogleSignInLogin extends StatefulWidget {
const _GoogleSignInLogin({
required this.button,
required this.scopes,
});
final _AdaptiveLoginButtonWidget button;
final List<String> scopes;
@override
State<_GoogleSignInLogin> createState() => _GoogleSignInLoginState();
}
class _GoogleSignInLoginState extends State<_GoogleSignInLogin> {
@override
initState() {
super.initState();
_googleSignIn = GoogleSignIn(
scopes: widget.scopes,
);
_googleSignIn.onCurrentUserChanged.listen((account) {
if (account != null) {
_googleSignIn.authenticatedClient().then((authClient) {
if (authClient != null) {
context.read<AuthedUserPlaylists>().authClient = authClient;
context.go('/');
}
});
}
});
}
late final GoogleSignIn _googleSignIn;
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: widget.button(onPressed: () {
_googleSignIn.signIn();
}),
),
);
}
}
class _GoogleApisAuthLogin extends StatefulWidget {
const _GoogleApisAuthLogin({
required this.button,
required this.scopes,
required this.clientId,
});
final _AdaptiveLoginButtonWidget button;
final List<String> scopes;
final ClientId clientId;
@override
State<_GoogleApisAuthLogin> createState() => _GoogleApisAuthLoginState();
}
class _GoogleApisAuthLoginState extends State<_GoogleApisAuthLogin> {
@override
initState() {
super.initState();
clientViaUserConsent(widget.clientId, widget.scopes, (url) {
setState(() {
_authUrl = Uri.parse(url);
});
}).then((authClient) {
context.read<AuthedUserPlaylists>().authClient = authClient;
context.go('/');
});
}
Uri? _authUrl;
@override
Widget build(BuildContext context) {
final authUrl = _authUrl;
if (authUrl != null) {
return Scaffold(
body: Center(
child: Link(
uri: authUrl,
builder: (context, followLink) =>
widget.button(onPressed: followLink),
),
),
);
}
return const Scaffold(
body: Center(
child: CircularProgressIndicator(),
),
);
}
}
| codelabs/adaptive_app/step_07/lib/src/adaptive_login.dart/0 | {
"file_path": "codelabs/adaptive_app/step_07/lib/src/adaptive_login.dart",
"repo_id": "codelabs",
"token_count": 1496
} | 2 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/animated-responsive-layout/step_04/android/gradle.properties/0 | {
"file_path": "codelabs/animated-responsive-layout/step_04/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 3 |
#import "GeneratedPluginRegistrant.h"
| codelabs/animated-responsive-layout/step_04/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/animated-responsive-layout/step_04/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 4 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/animated-responsive-layout/step_05/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/animated-responsive-layout/step_05/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 5 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import '../destinations.dart';
class DisappearingNavigationRail extends StatelessWidget {
const DisappearingNavigationRail({
super.key,
required this.backgroundColor,
required this.selectedIndex,
this.onDestinationSelected,
});
final Color backgroundColor;
final int selectedIndex;
final ValueChanged<int>? onDestinationSelected;
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
return NavigationRail(
selectedIndex: selectedIndex,
backgroundColor: backgroundColor,
onDestinationSelected: onDestinationSelected,
leading: Column(
children: [
IconButton(
onPressed: () {},
icon: const Icon(Icons.menu),
),
const SizedBox(height: 8),
FloatingActionButton(
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(15),
),
),
backgroundColor: colorScheme.tertiaryContainer,
foregroundColor: colorScheme.onTertiaryContainer,
onPressed: () {},
child: const Icon(Icons.add),
),
],
),
groupAlignment: -0.85,
destinations: destinations.map((d) {
return NavigationRailDestination(
icon: Icon(d.icon),
label: Text(d.label),
);
}).toList(),
);
}
}
| codelabs/animated-responsive-layout/step_06/lib/widgets/disappearing_navigation_rail.dart/0 | {
"file_path": "codelabs/animated-responsive-layout/step_06/lib/widgets/disappearing_navigation_rail.dart",
"repo_id": "codelabs",
"token_count": 687
} | 6 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/animated-responsive-layout/step_06/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/animated-responsive-layout/step_06/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 7 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import '../animations.dart';
class NavRailTransition extends StatefulWidget {
const NavRailTransition(
{super.key,
required this.animation,
required this.backgroundColor,
required this.child});
final Animation<double> animation;
final Widget child;
final Color backgroundColor;
@override
State<NavRailTransition> createState() => _NavRailTransitionState();
}
class _NavRailTransitionState extends State<NavRailTransition> {
// The animations are only rebuilt by this method when the text
// direction changes because this widget only depends on Directionality.
late final bool ltr = Directionality.of(context) == TextDirection.ltr;
late final Animation<Offset> offsetAnimation = Tween<Offset>(
begin: ltr ? const Offset(-1, 0) : const Offset(1, 0),
end: Offset.zero,
).animate(OffsetAnimation(parent: widget.animation));
late final Animation<double> widthAnimation = Tween<double>(
begin: 0,
end: 1,
).animate(SizeAnimation(parent: widget.animation));
@override
Widget build(BuildContext context) {
return ClipRect(
child: DecoratedBox(
decoration: BoxDecoration(color: widget.backgroundColor),
child: AnimatedBuilder(
animation: widthAnimation,
builder: (context, child) {
return Align(
alignment: Alignment.topLeft,
widthFactor: widthAnimation.value,
child: FractionalTranslation(
translation: offsetAnimation.value,
child: widget.child,
),
);
},
),
),
);
}
}
| codelabs/animated-responsive-layout/step_07/lib/transitions/nav_rail_transition.dart/0 | {
"file_path": "codelabs/animated-responsive-layout/step_07/lib/transitions/nav_rail_transition.dart",
"repo_id": "codelabs",
"token_count": 660
} | 8 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import '../../../shared/classes/classes.dart';
import '../../../shared/extensions.dart';
import '../../../shared/views/article_content.dart';
import '../../../shared/views/image_clipper.dart';
import 'view.dart';
class ArtistScreen extends StatelessWidget {
const ArtistScreen({required this.artist, super.key});
final Artist artist;
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
final colors = Theme.of(context).colorScheme;
double headerHeight = constraints.maxWidth > 500 ? 300 : 400;
return DefaultTabController(
length: 3,
child: Scaffold(
appBar: AppBar(
leading: BackButton(
onPressed: () => GoRouter.of(context).go('/artists'),
),
title: Text('ARTIST - ${artist.name}'),
bottom: PreferredSize(
preferredSize: Size.fromHeight(kToolbarHeight + headerHeight),
child: Column(
children: [
ArticleContent(
child: Builder(
builder: (context) {
if (constraints.maxWidth > 500) {
return SizedBox(
height: headerHeight,
child: Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
ClippedImage(
artist.image.image,
fit: BoxFit.cover,
),
Expanded(
child: Padding(
padding: const EdgeInsets.all(12),
child: Text(
artist.bio,
style: context.bodyLarge!.copyWith(
color: colors.onSurface,
fontSize: 16,
),
textAlign: TextAlign.justify,
),
),
),
],
),
);
}
return SizedBox(
height: headerHeight,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(
height: 300,
child: ClippedImage(
artist.image.image,
fit: BoxFit.cover,
),
),
Expanded(
child: Padding(
padding: const EdgeInsets.all(12),
child: Text(
artist.bio,
style: context.bodyLarge!.copyWith(
color: colors.onSurface,
fontSize: 16,
),
textAlign: TextAlign.justify,
),
),
),
],
),
);
},
),
),
const TabBar(
tabs: [
Tab(text: 'Songs'),
Tab(text: 'Events'),
Tab(text: 'News'),
],
),
],
),
),
),
body: TabBarView(
children: [
SingleChildScrollView(child: ArtistRankedSongs(artist: artist)),
SingleChildScrollView(child: ArtistEvents(artist: artist)),
SingleChildScrollView(child: ArtistNews(artist: artist)),
],
),
),
);
},
);
}
}
| codelabs/boring_to_beautiful/final/lib/src/features/artists/view/artist_screen.dart/0 | {
"file_path": "codelabs/boring_to_beautiful/final/lib/src/features/artists/view/artist_screen.dart",
"repo_id": "codelabs",
"token_count": 3397
} | 9 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../providers/providers.dart';
import './classes.dart';
class Artist {
const Artist({
required this.id,
required this.name,
required this.image,
required this.bio,
required this.events,
this.updates = const [],
this.news = const [],
});
final String id;
final String name;
final MyArtistImage image;
final String bio;
final List<Event> events;
final List<String> updates;
final List<News> news;
List<RankedSong> get songs =>
SongsProvider.shared.songs.where((song) => song.artist.id == id).toList();
}
| codelabs/boring_to_beautiful/final/lib/src/shared/classes/artist.dart/0 | {
"file_path": "codelabs/boring_to_beautiful/final/lib/src/shared/classes/artist.dart",
"repo_id": "codelabs",
"token_count": 241
} | 10 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:adaptive_components/adaptive_components.dart';
import 'package:flutter/material.dart';
import '../../../shared/classes/classes.dart';
import '../../../shared/extensions.dart';
import '../../../shared/providers/providers.dart';
import '../../../shared/views/views.dart';
import '../../playlists/view/playlist_songs.dart';
import 'view.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
@override
Widget build(BuildContext context) {
final PlaylistsProvider playlistProvider = PlaylistsProvider();
final List<Playlist> playlists = playlistProvider.playlists;
final Playlist topSongs = playlistProvider.topSongs;
final Playlist newReleases = playlistProvider.newReleases;
final ArtistsProvider artistsProvider = ArtistsProvider();
final List<Artist> artists = artistsProvider.artists;
return LayoutBuilder(
builder: (context, constraints) {
// Add conditional mobile layout
return Scaffold(
body: SingleChildScrollView(
child: AdaptiveColumn(
children: [
AdaptiveContainer(
columnSpan: 12,
child: Padding(
padding: const EdgeInsets.all(2), // Modify this line
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Text(
'Good morning',
style: context.displaySmall,
),
),
const SizedBox(width: 20),
const BrightnessToggle(),
],
),
),
),
AdaptiveContainer(
columnSpan: 12,
child: Column(
children: [
const HomeHighlight(),
LayoutBuilder(
builder: (context, constraints) => HomeArtists(
artists: artists,
constraints: constraints,
),
),
],
),
),
AdaptiveContainer(
columnSpan: 12,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.all(2), // Modify this line
child: Text(
'Recently played',
style: context.headlineSmall,
),
),
HomeRecent(
playlists: playlists,
),
],
),
),
AdaptiveContainer(
columnSpan: 12,
child: Padding(
padding: const EdgeInsets.all(2), // Modify this line
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
flex: 10,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding:
const EdgeInsets.all(2), // Modify this line
child: Text(
'Top Songs Today',
style: context.titleLarge,
),
),
LayoutBuilder(
builder: (context, constraints) =>
PlaylistSongs(
playlist: topSongs,
constraints: constraints,
),
),
],
),
),
// Add spacer between tables
Flexible(
flex: 10,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding:
const EdgeInsets.all(2), // Modify this line
child: Text(
'New Releases',
style: context.titleLarge,
),
),
LayoutBuilder(
builder: (context, constraints) =>
PlaylistSongs(
playlist: newReleases,
constraints: constraints,
),
),
],
),
),
],
),
),
),
],
),
),
);
},
);
}
}
| codelabs/boring_to_beautiful/step_01/lib/src/features/home/view/home_screen.dart/0 | {
"file_path": "codelabs/boring_to_beautiful/step_01/lib/src/features/home/view/home_screen.dart",
"repo_id": "codelabs",
"token_count": 3784
} | 11 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
// Add Google Fonts Package import
extension TypographyUtils on BuildContext {
ThemeData get theme => Theme.of(this);
TextTheme get textTheme => theme.textTheme; // Modify this line
ColorScheme get colors => theme.colorScheme;
TextStyle? get displayLarge => textTheme.displayLarge?.copyWith(
color: colors.onSurface,
);
TextStyle? get displayMedium => textTheme.displayMedium?.copyWith(
color: colors.onSurface,
);
TextStyle? get displaySmall => textTheme.displaySmall?.copyWith(
color: colors.onSurface,
);
TextStyle? get headlineLarge => textTheme.headlineLarge?.copyWith(
color: colors.onSurface,
);
TextStyle? get headlineMedium => textTheme.headlineMedium?.copyWith(
color: colors.onSurface,
);
TextStyle? get headlineSmall => textTheme.headlineSmall?.copyWith(
color: colors.onSurface,
);
TextStyle? get titleLarge => textTheme.titleLarge?.copyWith(
color: colors.onSurface,
);
TextStyle? get titleMedium => textTheme.titleMedium?.copyWith(
color: colors.onSurface,
);
TextStyle? get titleSmall => textTheme.titleSmall?.copyWith(
color: colors.onSurface,
);
TextStyle? get labelLarge => textTheme.labelLarge?.copyWith(
color: colors.onSurface,
);
TextStyle? get labelMedium => textTheme.labelMedium?.copyWith(
color: colors.onSurface,
);
TextStyle? get labelSmall => textTheme.labelSmall?.copyWith(
color: colors.onSurface,
);
TextStyle? get bodyLarge => textTheme.bodyLarge?.copyWith(
color: colors.onSurface,
);
TextStyle? get bodyMedium => textTheme.bodyMedium?.copyWith(
color: colors.onSurface,
);
TextStyle? get bodySmall => textTheme.bodySmall?.copyWith(
color: colors.onSurface,
);
}
extension BreakpointUtils on BoxConstraints {
bool get isTablet => maxWidth > 730;
bool get isDesktop => maxWidth > 1200;
bool get isMobile => !isTablet && !isDesktop;
}
extension DurationString on String {
/// Assumes a string (roughly) of the format '\d{1,2}:\d{2}'
Duration toDuration() => switch (split(':')) {
[var minutes, var seconds] => Duration(
minutes: int.parse(minutes.trim()),
seconds: int.parse(seconds.trim()),
),
[var hours, var minutes, var seconds] => Duration(
hours: int.parse(hours.trim()),
minutes: int.parse(minutes.trim()),
seconds: int.parse(seconds.trim()),
),
_ => throw Exception('Invalid duration string: $this'),
};
}
extension HumanizedDuration on Duration {
String toHumanizedString() {
final seconds = '${inSeconds % 60}'.padLeft(2, '0');
String minutes = '${inMinutes % 60}';
if (inHours > 0 || inMinutes == 0) {
minutes = minutes.padLeft(2, '0');
}
String value = '$minutes:$seconds';
if (inHours > 0) {
value = '$inHours:$minutes:$seconds';
}
return value;
}
}
| codelabs/boring_to_beautiful/step_01/lib/src/shared/extensions.dart/0 | {
"file_path": "codelabs/boring_to_beautiful/step_01/lib/src/shared/extensions.dart",
"repo_id": "codelabs",
"token_count": 1241
} | 12 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../classes/classes.dart';
import '../extensions.dart';
import '../playback/bloc/bloc.dart';
import '../providers/providers.dart';
import 'image_clipper.dart';
/// Currently-playing informational bar that always spans the entire bottom
/// of the UI.
class BottomBar extends StatelessWidget implements PreferredSizeWidget {
const BottomBar({super.key});
@override
Size get preferredSize => const Size.fromHeight(90);
@override
Widget build(BuildContext context) {
final bloc = BlocProvider.of<PlaybackBloc>(context);
return BlocBuilder<PlaybackBloc, PlaybackState>(
bloc: bloc,
builder: (context, state) => _BottomBar(
artist: state.songWithProgress?.song.artist,
isMuted: state.isMuted,
isPlaying: state.isPlaying,
preferredSize: preferredSize,
progress: state.songWithProgress?.progress,
song: state.songWithProgress?.song,
togglePlayPause: () => bloc.add(const PlaybackEvent.togglePlayPause()),
volume: state.volume,
),
);
}
}
class _BottomBar extends StatelessWidget {
const _BottomBar({
required this.artist,
required this.isMuted,
required this.isPlaying,
required this.preferredSize,
required this.progress,
required this.song,
required this.togglePlayPause,
required this.volume,
});
final Artist? artist;
final bool isMuted;
final bool isPlaying;
final Size preferredSize;
final Duration? progress;
final Song? song;
final VoidCallback togglePlayPause;
final double volume;
@override
Widget build(BuildContext context) => LayoutBuilder(
builder: (context, constraints) => constraints.isTablet
? _buildDesktopBar(context, constraints)
: _buildMobileBar(context, constraints),
);
Widget _buildDesktopBar(BuildContext context, BoxConstraints constraints) {
return ColoredBox(
color: Theme.of(context).colorScheme.tertiaryContainer,
child: SizedBox.fromSize(
size: preferredSize,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
Row(
children: [
_AlbumArt(song: song),
_SongDetails(
artist: artist,
song: song,
),
],
),
Flexible(
flex: 1,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Spacer(),
_PlaybackControls(
isPlaying: isPlaying,
togglePlayPause: togglePlayPause,
),
Center(
child: _ProgressBar(
progress: progress,
song: song,
),
),
],
),
),
if (constraints.isDesktop) ...[
_VolumeBar(volume: volume, isMuted: isMuted),
],
if (song != null)
IconButton(
icon: const Icon(Icons.fullscreen),
onPressed: () {
final overlay = Overlay.of(context);
OverlayEntry? entry;
entry = OverlayEntry(
builder: (context) => Stack(
children: [
Positioned(
child: _FullScreenPlayer(
onClose: () {
entry?.remove();
},
),
),
],
),
);
overlay.insert(entry);
},
),
],
),
),
);
}
double get songProgress => switch ((progress, song)) {
(Duration progress, Song song) =>
progress.inMilliseconds / song.length.inMilliseconds,
_ => 0,
};
Widget _buildMobileBar(BuildContext context, BoxConstraints constraints) {
return ColoredBox(
color: Theme.of(context).colorScheme.tertiaryContainer,
child: SizedBox(
height: kToolbarHeight,
child: InkWell(
mouseCursor: SystemMouseCursors.click,
onTap: () {
final overlay = Overlay.of(context);
OverlayEntry? entry;
entry = OverlayEntry(
builder: (context) => Stack(
children: [
Positioned(
child: _MobilePlayer(
onClose: () {
entry?.remove();
},
),
),
],
),
);
overlay.insert(entry);
},
child: Stack(
children: [
Positioned(
left: 0,
right: 4,
bottom: 0,
child: LinearProgressIndicator(
value: songProgress.clamp(0, 1),
backgroundColor: Theme.of(context).colorScheme.tertiary,
color: Theme.of(context).colorScheme.onTertiaryContainer,
),
),
Positioned(
left: 4,
bottom: 4,
top: 4,
right: 4,
child: Row(
children: [
_AlbumArt(song: song),
Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
song?.title ?? '',
style: context.labelMedium,
),
Text(
song?.artist.name ?? '',
style: context.labelSmall,
),
],
),
const Spacer(),
IconButton(
onPressed: togglePlayPause,
icon: Icon(
isPlaying ? Icons.pause_circle : Icons.play_circle,
),
),
],
),
),
],
),
),
),
);
}
}
class _ProgressBar extends StatelessWidget {
const _ProgressBar({
required this.progress,
required this.song,
});
/// Current playback depth into user is into [song].
final Duration? progress;
final Song? song;
double get songProgress => switch ((progress, song)) {
(Duration progress, Song song) =>
progress.inMilliseconds / song.length.inMilliseconds,
_ => 0,
};
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
EdgeInsets padding = switch (constraints.maxWidth) {
> 500 => const EdgeInsets.symmetric(horizontal: 50),
> 350 => const EdgeInsets.symmetric(horizontal: 25),
_ => const EdgeInsets.symmetric(horizontal: 20),
};
return Padding(
padding: padding,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(width: 10),
SizedBox(
child: progress != null
? Text(progress!.toHumanizedString(),
style: Theme.of(context).textTheme.bodySmall)
: const Text('-'),
),
Expanded(
child: Slider(
value: songProgress.clamp(0, 1),
divisions: 1000,
onChanged: (percent) {
BlocProvider.of<PlaybackBloc>(context).add(
PlaybackEvent.moveToInSong(percent),
);
},
onChangeEnd: (percent) {
BlocProvider.of<PlaybackBloc>(context).add(
PlaybackEvent.moveToInSong(percent),
);
// Because dragging pauses auto playback, resume playing
// once the user finishes dragging.
BlocProvider.of<PlaybackBloc>(context).add(
const PlaybackEvent.togglePlayPause(),
);
},
activeColor:
Theme.of(context).colorScheme.onTertiaryContainer,
inactiveColor: Theme.of(context).colorScheme.onSurface,
),
),
SizedBox(
child: song != null
? Text(song!.length.toHumanizedString(),
style: Theme.of(context).textTheme.bodySmall)
: const Text('-'),
),
const SizedBox(width: 10)
],
),
);
},
);
}
}
class _VolumeBar extends StatelessWidget {
const _VolumeBar({
required this.volume,
required this.isMuted,
});
/// The percentage, between 0 and 1, at which to render the volume slider.
final double volume;
/// True if the user has explicitly pressed the mute button. The value for
/// [volume] can be zero without this also being `true`, but if this is `true`,
/// then the value for [volume] will always be zero.
final bool isMuted;
@override
Widget build(BuildContext context) {
return ConstrainedBox(
constraints: const BoxConstraints(
maxWidth: 200,
),
child: Padding(
padding: const EdgeInsets.all(8),
child: Row(
children: [
GestureDetector(
onTap: () => BlocProvider.of<PlaybackBloc>(context).add(
const PlaybackEvent.toggleMute(),
),
child: Icon(!isMuted ? Icons.volume_mute : Icons.volume_off),
),
Expanded(
child: Slider(
value: volume,
min: 0,
max: 1,
divisions: 100,
onChanged: (newValue) => BlocProvider.of<PlaybackBloc>(context)
.add(PlaybackEvent.setVolume(newValue)),
activeColor: Theme.of(context).colorScheme.onTertiaryContainer,
inactiveColor: Theme.of(context).colorScheme.onSurface,
),
),
],
),
),
);
}
}
class _PlaybackControls extends StatelessWidget {
const _PlaybackControls({
required this.isPlaying,
required this.togglePlayPause,
});
final bool isPlaying;
final VoidCallback togglePlayPause;
@override
Widget build(BuildContext context) {
return LayoutBuilder(builder: (context, constraints) {
double iconSize = 24;
double playIconSize = 32;
double innerPadding = 16;
double playPadding = 20;
if (constraints.maxWidth < 500) {
iconSize = 21;
playIconSize = 28;
innerPadding = 14;
playPadding = 17;
}
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Padding(
padding: EdgeInsets.fromLTRB(0, 0, innerPadding, 0),
child: Icon(Icons.shuffle, size: iconSize)),
Icon(Icons.skip_previous, size: iconSize),
Padding(
padding: EdgeInsets.fromLTRB(playPadding, 0, innerPadding, 0),
child: GestureDetector(
onTap: togglePlayPause,
child: Icon(
isPlaying ? Icons.pause_circle : Icons.play_circle,
size: playIconSize,
),
),
),
Icon(Icons.skip_next, size: iconSize),
Padding(
padding: EdgeInsets.fromLTRB(innerPadding, 0, 0, 0),
child: Icon(Icons.repeat, size: iconSize),
),
],
);
});
}
}
class _AlbumArt extends StatelessWidget {
const _AlbumArt({
required this.song,
});
final Song? song;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(8),
child: SizedBox(
width: 70,
height: 70,
child: song != null
? Image.asset(song!.image.image)
: Container(
color: Colors.pink[100],
),
),
);
}
}
class _SongDetails extends StatelessWidget {
const _SongDetails({
required this.artist,
required this.song,
});
final Artist? artist;
final Song? song;
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
song != null ? song!.title : '-',
style: context.labelLarge!.copyWith(fontSize: 12),
overflow: TextOverflow.clip,
maxLines: 1,
),
Text(
artist != null ? artist!.name : '-',
style: context.labelSmall!.copyWith(fontSize: 8),
overflow: TextOverflow.clip,
),
],
);
},
);
}
}
class _FullScreenPlayer extends StatefulWidget {
const _FullScreenPlayer({
required this.onClose,
});
final VoidCallback onClose;
@override
State<_FullScreenPlayer> createState() => _FullScreenPlayerState();
}
class _FullScreenPlayerState extends State<_FullScreenPlayer> {
bool _showControls = true;
Timer? _controlsTimer;
void hideControls() {
_controlsTimer?.cancel();
_controlsTimer = Timer(const Duration(seconds: 3), () {
setState(() {
_showControls = false;
});
});
}
@override
void initState() {
super.initState();
hideControls();
}
@override
Widget build(BuildContext context) {
final bloc = BlocProvider.of<PlaybackBloc>(context);
return BlocBuilder<PlaybackBloc, PlaybackState>(
bloc: bloc,
builder: (context, state) => Theme(
data: ThemeProvider.of(context).dark(),
child: Scaffold(
body: LayoutBuilder(
builder: (context, dimens) {
return MouseRegion(
onHover: (_) {
setState(() {
_showControls = true;
});
hideControls();
},
child: buildPlayer(context, state, dimens),
);
},
),
),
),
);
}
Widget buildPlayer(
BuildContext context, PlaybackState state, BoxConstraints dimens) {
final bloc = BlocProvider.of<PlaybackBloc>(context);
final current = state.songWithProgress;
final song = current?.song;
return Stack(
fit: StackFit.expand,
children: [
Positioned.fill(
child: current == null
? const Center(child: Text('No song selected'))
: Container(
color: context.colors.shadow,
child: Opacity(
opacity: 0.3,
child: Image.asset(
song!.image.image,
fit: BoxFit.cover,
),
),
),
),
Positioned(
top: 20,
right: 20,
child: IconButton(
color: song != null
? context.colors.onSurface
: context.colors.onBackground,
icon: const Icon(Icons.fullscreen_exit),
onPressed: widget.onClose,
),
),
if (song != null) ...[
Positioned(
left: 60,
bottom: dimens.biggest.height * 0.28,
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
SizedBox(
width: dimens.biggest.height * 0.2,
child: ClippedImage(song.image.image),
),
const SizedBox(width: 20),
Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
song.title,
style: context.labelLarge!.copyWith(fontSize: 42),
overflow: TextOverflow.clip,
maxLines: 1,
),
Text(
song.artist.name,
style: context.labelSmall!.copyWith(
fontSize: 20,
color: context.colors.onSurface.withOpacity(0.8)),
overflow: TextOverflow.clip,
),
],
),
],
),
),
Positioned(
right: 20,
left: 20,
bottom: dimens.biggest.height * 0.2,
child: _ProgressBar(
progress: current?.progress,
song: song,
),
),
Positioned(
right: 20,
left: 20,
bottom: dimens.biggest.height * 0.1,
child: AnimatedOpacity(
duration: kThemeAnimationDuration,
opacity: _showControls ? 1 : 0,
child: Transform.scale(
scale: 1.5,
child: _PlaybackControls(
isPlaying: state.isPlaying,
togglePlayPause: () =>
bloc.add(const PlaybackEvent.togglePlayPause()),
),
),
),
),
],
],
);
}
}
class _MobilePlayer extends StatelessWidget {
const _MobilePlayer({
required this.onClose,
});
final VoidCallback onClose;
@override
Widget build(BuildContext context) {
final bloc = BlocProvider.of<PlaybackBloc>(context);
return BlocBuilder<PlaybackBloc, PlaybackState>(
bloc: bloc,
builder: (context, state) => Theme(
data: ThemeProvider.of(context).dark(),
child: Scaffold(
body: LayoutBuilder(
builder: (context, dimens) {
return buildPlayer(context, state, dimens);
},
),
),
),
);
}
Widget buildPlayer(
BuildContext context, PlaybackState state, BoxConstraints dimens) {
final bloc = BlocProvider.of<PlaybackBloc>(context);
final current = state.songWithProgress;
return Stack(
children: [
Positioned.fill(
child: current == null
? const Center(child: Text('No song selected'))
: Container(
color: context.colors.shadow,
child: Opacity(
opacity: 0.3,
child: Image.asset(
current.song.image.image,
fit: BoxFit.cover,
),
),
),
),
Positioned(
top: 20,
left: 20,
child: IconButton(
color: current?.song != null
? context.colors.onSurface
: context.colors.onBackground,
icon: const RotatedBox(
quarterTurns: 1,
child: Icon(Icons.chevron_right),
),
onPressed: onClose,
),
),
if (current != null) ...[
if (dimens.biggest.height > 500)
Positioned(
top: kToolbarHeight,
left: 0,
right: 0,
height: dimens.biggest.height * 0.5,
child: Image.asset(
current.song.image.image,
fit: BoxFit.contain,
),
),
Positioned(
left: 0,
right: 0,
bottom: dimens.biggest.height * 0.1,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Padding(
padding: const EdgeInsets.only(bottom: 10),
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
current.song.title,
style: context.labelLarge!.copyWith(fontSize: 22),
overflow: TextOverflow.clip,
maxLines: 1,
),
Text(
current.song.artist.name,
style: context.labelSmall!.copyWith(
fontSize: 12,
color: context.colors.onSurface.withOpacity(0.8)),
overflow: TextOverflow.clip,
),
],
),
),
Padding(
padding: const EdgeInsets.all(20),
child: Transform.scale(
scale: 1.5,
child: _PlaybackControls(
isPlaying: state.isPlaying,
togglePlayPause: () =>
bloc.add(const PlaybackEvent.togglePlayPause()),
),
),
),
_ProgressBar(
progress: current.progress,
song: current.song,
),
],
),
),
],
],
);
}
}
| codelabs/boring_to_beautiful/step_01/lib/src/shared/views/bottom_bar.dart/0 | {
"file_path": "codelabs/boring_to_beautiful/step_01/lib/src/shared/views/bottom_bar.dart",
"repo_id": "codelabs",
"token_count": 12106
} | 13 |
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <desktop_window/desktop_window_plugin.h>
#include <dynamic_color/dynamic_color_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h>
void RegisterPlugins(flutter::PluginRegistry* registry) {
DesktopWindowPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("DesktopWindowPlugin"));
DynamicColorPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("DynamicColorPluginCApi"));
UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
}
| codelabs/boring_to_beautiful/step_01/windows/flutter/generated_plugin_registrant.cc/0 | {
"file_path": "codelabs/boring_to_beautiful/step_01/windows/flutter/generated_plugin_registrant.cc",
"repo_id": "codelabs",
"token_count": 216
} | 14 |
name: Brick Breaker with Flame
steps:
- name: step_03
steps:
- name: Remove generated code
rmdir: step_03
- name: Create project
flutter: create brick_breaker --empty
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: brick_breaker/ios/Runner.xcodeproj/project.pbxproj
- name: Configure analysis_options.yaml
path: brick_breaker/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
- name: Configure dependencies
path: brick_breaker/pubspec.yaml
replace-contents: |
name: brick_breaker
description: "Re-implementing Woz's Breakout"
publish_to: 'none'
version: 0.1.0
environment:
sdk: '>=3.3.0 <4.0.0'
dependencies:
flame: ^1.16.0
flutter:
sdk: flutter
flutter_animate: ^4.5.0
google_fonts: ^6.1.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.1
flutter:
uses-material-design: true
- name: flutter pub upgrade
path: brick_breaker
flutter: pub upgrade --major-versions
- name: Remove README
rm: brick_breaker/README.md
- name: Add .vscode directory
mkdir: brick_breaker/.vscode
- name: Add .vscode/launch.json
path: brick_breaker/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "brick_breaker",
"request": "launch",
"type": "dart"
}
]
}
- name: Replace lib/main.dart
path: brick_breaker/lib/main.dart
replace-contents: |
import 'package:flame/game.dart';
import 'package:flutter/material.dart';
void main() {
final game = FlameGame();
runApp(GameWidget(game: game));
}
- name: Build iOS simulator bundle
platforms: [ macos ]
path: brick_breaker
flutter: build ios --simulator
- name: Build macOS app
platforms: [ macos ]
path: brick_breaker
flutter: build macos
- name: Build Linux app
platforms: [ linux ]
path: brick_breaker
flutter: build linux
- name: Build Windows app
platforms: [ windows ]
path: brick_breaker
flutter: build windows
- name: Copy step_03
copydir:
from: brick_breaker
to: step_03
- name: Flutter clean
path: step_03
flutter: clean
- name: step_04
steps:
- name: Remove generated code
rmdir: step_04
- name: Patch lib/main.dart
path: brick_breaker/lib/main.dart
patch-u: |
--- b/brick_breaker/step_04/lib/main.dart
+++ a/brick_breaker/step_04/lib/main.dart
@@ -1,7 +1,9 @@
import 'package:flame/game.dart';
import 'package:flutter/material.dart';
+import 'src/brick_breaker.dart';
+
void main() {
- final game = FlameGame();
+ final game = BrickBreaker();
runApp(GameWidget(game: game));
}
- name: Mkdir lib/src
mkdir: brick_breaker/lib/src
- name: Add lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
replace-contents: |
import 'dart:async';
import 'package:flame/components.dart';
import 'package:flame/game.dart';
import 'components/components.dart';
import 'config.dart';
class BrickBreaker extends FlameGame {
BrickBreaker()
: super(
camera: CameraComponent.withFixedResolution(
width: gameWidth,
height: gameHeight,
),
);
double get width => size.x;
double get height => size.y;
@override
FutureOr<void> onLoad() async {
super.onLoad();
camera.viewfinder.anchor = Anchor.topLeft;
world.add(PlayArea());
}
}
- name: Add lib/src/config.dart
path: brick_breaker/lib/src/config.dart
replace-contents: |
const gameWidth = 820.0;
const gameHeight = 1600.0;
- name: Mkdir lib/src/components
mkdir: brick_breaker/lib/src/components
- name: Add lib/src/components/components.dart
path: brick_breaker/lib/src/components/components.dart
replace-contents: |
export 'play_area.dart';
- name: Add lib/src/components/play_area.dart
path: brick_breaker/lib/src/components/play_area.dart
replace-contents: |
import 'dart:async';
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
import '../brick_breaker.dart';
class PlayArea extends RectangleComponent with HasGameReference<BrickBreaker> {
PlayArea()
: super(
paint: Paint()..color = const Color(0xfff2e8cf),
);
@override
FutureOr<void> onLoad() async {
super.onLoad();
size = Vector2(game.width, game.height);
}
}
- name: Copy step_04
copydir:
from: brick_breaker
to: step_04
- name: Flutter clean
path: step_04
flutter: clean
- name: step_05
steps:
- name: Remove generated code
rmdir: step_05
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_05/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_05/lib/src/brick_breaker.dart
@@ -1,4 +1,5 @@
import 'dart:async';
+import 'dart:math' as math;
import 'package:flame/components.dart';
import 'package:flame/game.dart';
@@ -15,6 +16,7 @@ class BrickBreaker extends FlameGame {
),
);
+ final rand = math.Random();
double get width => size.x;
double get height => size.y;
@@ -25,5 +27,14 @@ class BrickBreaker extends FlameGame {
camera.viewfinder.anchor = Anchor.topLeft;
world.add(PlayArea());
+
+ world.add(Ball(
+ radius: ballRadius,
+ position: size / 2,
+ velocity: Vector2((rand.nextDouble() - 0.5) * width, height * 0.2)
+ .normalized()
+ ..scale(height / 4)));
+
+ debugMode = true;
}
}
- name: Patch lib/src/config.dart
path: brick_breaker/lib/src/config.dart
patch-u: |
--- b/brick_breaker/step_05/lib/src/config.dart
+++ a/brick_breaker/step_05/lib/src/config.dart
@@ -1,2 +1,3 @@
const gameWidth = 820.0;
const gameHeight = 1600.0;
+const ballRadius = gameWidth * 0.02;
- name: Patch lib/src/components/components.dart
path: brick_breaker/lib/src/components/components.dart
patch-u: |
--- b/brick_breaker/step_05/lib/src/components/components.dart
+++ a/brick_breaker/step_05/lib/src/components/components.dart
@@ -1 +1,2 @@
+export 'ball.dart';
export 'play_area.dart';
- name: Add lib/src/components/ball.dart
path: brick_breaker/lib/src/components/ball.dart
replace-contents: |
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
class Ball extends CircleComponent {
Ball({
required this.velocity,
required super.position,
required double radius,
}) : super(
radius: radius,
anchor: Anchor.center,
paint: Paint()
..color = const Color(0xff1e6091)
..style = PaintingStyle.fill);
final Vector2 velocity;
@override
void update(double dt) {
super.update(dt);
position += velocity * dt;
}
}
- name: Copy step_05
copydir:
from: brick_breaker
to: step_05
- name: Flutter clean
path: step_05
flutter: clean
- name: step_06
steps:
- name: Remove generated code
rmdir: step_06
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_06/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_06/lib/src/brick_breaker.dart
@@ -7,7 +7,7 @@ import 'package:flame/game.dart';
import 'components/components.dart';
import 'config.dart';
-class BrickBreaker extends FlameGame {
+class BrickBreaker extends FlameGame with HasCollisionDetection {
BrickBreaker()
: super(
camera: CameraComponent.withFixedResolution(
- name: Patch lib/src/components/ball.dart
path: brick_breaker/lib/src/components/ball.dart
patch-u: |
--- b/brick_breaker/step_06/lib/src/components/ball.dart
+++ a/brick_breaker/step_06/lib/src/components/ball.dart
@@ -1,7 +1,12 @@
+import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
-class Ball extends CircleComponent {
+import '../brick_breaker.dart';
+import 'play_area.dart';
+
+class Ball extends CircleComponent
+ with CollisionCallbacks, HasGameReference<BrickBreaker> {
Ball({
required this.velocity,
required super.position,
@@ -11,7 +16,8 @@ class Ball extends CircleComponent {
anchor: Anchor.center,
paint: Paint()
..color = const Color(0xff1e6091)
- ..style = PaintingStyle.fill);
+ ..style = PaintingStyle.fill,
+ children: [CircleHitbox()]);
final Vector2 velocity;
@@ -20,4 +26,23 @@ class Ball extends CircleComponent {
super.update(dt);
position += velocity * dt;
}
+
+ @override
+ void onCollisionStart(
+ Set<Vector2> intersectionPoints, PositionComponent other) {
+ super.onCollisionStart(intersectionPoints, other);
+ if (other is PlayArea) {
+ if (intersectionPoints.first.y <= 0) {
+ velocity.y = -velocity.y;
+ } else if (intersectionPoints.first.x <= 0) {
+ velocity.x = -velocity.x;
+ } else if (intersectionPoints.first.x >= game.width) {
+ velocity.x = -velocity.x;
+ } else if (intersectionPoints.first.y >= game.height) {
+ removeFromParent();
+ }
+ } else {
+ debugPrint('collision with $other');
+ }
+ }
}
- name: Patch lib/src/components/play_area.dart
path: brick_breaker/lib/src/components/play_area.dart
patch-u: |
--- b/brick_breaker/step_06/lib/src/components/play_area.dart
+++ a/brick_breaker/step_06/lib/src/components/play_area.dart
@@ -1,5 +1,6 @@
import 'dart:async';
+import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
@@ -9,6 +10,7 @@ class PlayArea extends RectangleComponent with HasGameReference<BrickBreaker> {
PlayArea()
: super(
paint: Paint()..color = const Color(0xfff2e8cf),
+ children: [RectangleHitbox()],
);
@override
- name: Copy step_06
copydir:
from: brick_breaker
to: step_06
- name: Flutter clean
path: step_06
flutter: clean
- name: step_07
steps:
- name: Remove generated code
rmdir: step_07
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_07/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_07/lib/src/brick_breaker.dart
@@ -2,12 +2,16 @@ import 'dart:async';
import 'dart:math' as math;
import 'package:flame/components.dart';
+import 'package:flame/events.dart';
import 'package:flame/game.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
import 'components/components.dart';
import 'config.dart';
-class BrickBreaker extends FlameGame with HasCollisionDetection {
+class BrickBreaker extends FlameGame
+ with HasCollisionDetection, KeyboardEvents {
BrickBreaker()
: super(
camera: CameraComponent.withFixedResolution(
@@ -35,6 +39,24 @@ class BrickBreaker extends FlameGame with HasCollisionDetection {
.normalized()
..scale(height / 4)));
+ world.add(Bat(
+ size: Vector2(batWidth, batHeight),
+ cornerRadius: const Radius.circular(ballRadius / 2),
+ position: Vector2(width / 2, height * 0.95)));
+
debugMode = true;
}
+
+ @override
+ KeyEventResult onKeyEvent(
+ KeyEvent event, Set<LogicalKeyboardKey> keysPressed) {
+ super.onKeyEvent(event, keysPressed);
+ switch (event.logicalKey) {
+ case LogicalKeyboardKey.arrowLeft:
+ world.children.query<Bat>().first.moveBy(-batStep);
+ case LogicalKeyboardKey.arrowRight:
+ world.children.query<Bat>().first.moveBy(batStep);
+ }
+ return KeyEventResult.handled;
+ }
}
- name: Patch lib/src/config.dart
path: brick_breaker/lib/src/config.dart
patch-u: |
--- b/brick_breaker/step_07/lib/src/config.dart
+++ a/brick_breaker/step_07/lib/src/config.dart
@@ -1,3 +1,6 @@
const gameWidth = 820.0;
const gameHeight = 1600.0;
const ballRadius = gameWidth * 0.02;
+const batWidth = gameWidth * 0.2;
+const batHeight = ballRadius * 2;
+const batStep = gameWidth * 0.05;
- name: Patch lib/src/components/ball.dart
path: brick_breaker/lib/src/components/ball.dart
patch-u: |
--- b/brick_breaker/step_07/lib/src/components/ball.dart
+++ a/brick_breaker/step_07/lib/src/components/ball.dart
@@ -1,8 +1,10 @@
import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
+import 'package:flame/effects.dart';
import 'package:flutter/material.dart';
import '../brick_breaker.dart';
+import 'bat.dart';
import 'play_area.dart';
class Ball extends CircleComponent
@@ -39,8 +41,14 @@ class Ball extends CircleComponent
} else if (intersectionPoints.first.x >= game.width) {
velocity.x = -velocity.x;
} else if (intersectionPoints.first.y >= game.height) {
- removeFromParent();
+ add(RemoveEffect(
+ delay: 0.35,
+ ));
}
+ } else if (other is Bat) {
+ velocity.y = -velocity.y;
+ velocity.x = velocity.x +
+ (position.x - other.position.x) / other.size.x * game.width * 0.3;
} else {
debugPrint('collision with $other');
}
- name: Patch lib/src/components/components.dart
path: brick_breaker/lib/src/components/components.dart
patch-u: |
--- b/brick_breaker/step_07/lib/src/components/components.dart
+++ a/brick_breaker/step_07/lib/src/components/components.dart
@@ -1,2 +1,3 @@
export 'ball.dart';
+export 'bat.dart';
export 'play_area.dart';
- name: Add lib/src/components/bat.dart
path: brick_breaker/lib/src/components/bat.dart
replace-contents: |
import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
import 'package:flame/effects.dart';
import 'package:flame/events.dart';
import 'package:flutter/material.dart';
import '../brick_breaker.dart';
class Bat extends PositionComponent
with DragCallbacks, HasGameReference<BrickBreaker> {
Bat({
required this.cornerRadius,
required super.position,
required super.size,
}) : super(
anchor: Anchor.center,
children: [RectangleHitbox()],
);
final Radius cornerRadius;
final _paint = Paint()
..color = const Color(0xff1e6091)
..style = PaintingStyle.fill;
@override
void render(Canvas canvas) {
super.render(canvas);
canvas.drawRRect(
RRect.fromRectAndRadius(
Offset.zero & size.toSize(),
cornerRadius,
),
_paint);
}
@override
void onDragUpdate(DragUpdateEvent event) {
super.onDragUpdate(event);
position.x = (position.x + event.localDelta.x).clamp(0, game.width);
}
void moveBy(double dx) {
add(MoveToEffect(
Vector2((position.x + dx).clamp(0, game.width), position.y),
EffectController(duration: 0.1),
));
}
}
- name: Copy step_07
copydir:
from: brick_breaker
to: step_07
- name: Flutter clean
path: step_07
flutter: clean
- name: step_08
steps:
- name: Remove generated code
rmdir: step_08
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_08/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_08/lib/src/brick_breaker.dart
@@ -33,6 +33,7 @@ class BrickBreaker extends FlameGame
world.add(PlayArea());
world.add(Ball(
+ difficultyModifier: difficultyModifier,
radius: ballRadius,
position: size / 2,
velocity: Vector2((rand.nextDouble() - 0.5) * width, height * 0.2)
@@ -44,6 +45,18 @@ class BrickBreaker extends FlameGame
cornerRadius: const Radius.circular(ballRadius / 2),
position: Vector2(width / 2, height * 0.95)));
+ await world.addAll([
+ for (var i = 0; i < brickColors.length; i++)
+ for (var j = 1; j <= 5; j++)
+ Brick(
+ position: Vector2(
+ (i + 0.5) * brickWidth + (i + 1) * brickGutter,
+ (j + 2.0) * brickHeight + j * brickGutter,
+ ),
+ color: brickColors[i],
+ ),
+ ]);
+
debugMode = true;
}
- name: Patch lib/src/config.dart
path: brick_breaker/lib/src/config.dart
patch-u: |
--- b/brick_breaker/step_08/lib/src/config.dart
+++ a/brick_breaker/step_08/lib/src/config.dart
@@ -1,6 +1,26 @@
+import 'package:flutter/material.dart';
+
+const brickColors = [
+ Color(0xfff94144),
+ Color(0xfff3722c),
+ Color(0xfff8961e),
+ Color(0xfff9844a),
+ Color(0xfff9c74f),
+ Color(0xff90be6d),
+ Color(0xff43aa8b),
+ Color(0xff4d908e),
+ Color(0xff277da1),
+ Color(0xff577590),
+];
+
const gameWidth = 820.0;
const gameHeight = 1600.0;
const ballRadius = gameWidth * 0.02;
const batWidth = gameWidth * 0.2;
const batHeight = ballRadius * 2;
const batStep = gameWidth * 0.05;
+const brickGutter = gameWidth * 0.015;
+final brickWidth =
+ (gameWidth - (brickGutter * (brickColors.length + 1))) / brickColors.length;
+const brickHeight = gameHeight * 0.03;
+const difficultyModifier = 1.03;
- name: Patch lib/src/components/ball.dart
path: brick_breaker/lib/src/components/ball.dart
patch-u: |
--- b/brick_breaker/step_08/lib/src/components/ball.dart
+++ a/brick_breaker/step_08/lib/src/components/ball.dart
@@ -5,6 +5,7 @@ import 'package:flutter/material.dart';
import '../brick_breaker.dart';
import 'bat.dart';
+import 'brick.dart';
import 'play_area.dart';
class Ball extends CircleComponent
@@ -13,6 +14,7 @@ class Ball extends CircleComponent
required this.velocity,
required super.position,
required double radius,
+ required this.difficultyModifier,
}) : super(
radius: radius,
anchor: Anchor.center,
@@ -22,6 +24,7 @@ class Ball extends CircleComponent
children: [CircleHitbox()]);
final Vector2 velocity;
+ final double difficultyModifier;
@override
void update(double dt) {
@@ -49,8 +52,17 @@ class Ball extends CircleComponent
velocity.y = -velocity.y;
velocity.x = velocity.x +
(position.x - other.position.x) / other.size.x * game.width * 0.3;
- } else {
- debugPrint('collision with $other');
+ } else if (other is Brick) {
+ if (position.y < other.position.y - other.size.y / 2) {
+ velocity.y = -velocity.y;
+ } else if (position.y > other.position.y + other.size.y / 2) {
+ velocity.y = -velocity.y;
+ } else if (position.x < other.position.x) {
+ velocity.x = -velocity.x;
+ } else if (position.x > other.position.x) {
+ velocity.x = -velocity.x;
+ }
+ velocity.setFrom(velocity * difficultyModifier);
}
}
}
- name: Patch lib/src/components/components.dart
path: brick_breaker/lib/src/components/components.dart
patch-u: |
--- b/brick_breaker/step_08/lib/src/components/components.dart
+++ a/brick_breaker/step_08/lib/src/components/components.dart
@@ -1,3 +1,4 @@
export 'ball.dart';
export 'bat.dart';
+export 'brick.dart';
export 'play_area.dart';
- name: Add lib/src/components/brick.dart
path: brick_breaker/lib/src/components/brick.dart
replace-contents: |
import 'package:flame/collisions.dart';
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
import '../brick_breaker.dart';
import '../config.dart';
import 'ball.dart';
import 'bat.dart';
class Brick extends RectangleComponent
with CollisionCallbacks, HasGameReference<BrickBreaker> {
Brick({required super.position, required Color color})
: super(
size: Vector2(brickWidth, brickHeight),
anchor: Anchor.center,
paint: Paint()
..color = color
..style = PaintingStyle.fill,
children: [RectangleHitbox()],
);
@override
void onCollisionStart(
Set<Vector2> intersectionPoints, PositionComponent other) {
super.onCollisionStart(intersectionPoints, other);
removeFromParent();
if (game.world.children.query<Brick>().length == 1) {
game.world.removeAll(game.world.children.query<Ball>());
game.world.removeAll(game.world.children.query<Bat>());
}
}
}
- name: Copy step_08
copydir:
from: brick_breaker
to: step_08
- name: Flutter clean
path: step_08
flutter: clean
- name: step_09
steps:
- name: Remove generated code
rmdir: step_09
- name: Patch lib/main.dart
path: brick_breaker/lib/main.dart
patch-u: |
--- b/brick_breaker/step_09/lib/main.dart
+++ a/brick_breaker/step_09/lib/main.dart
@@ -1,9 +1,7 @@
-import 'package:flame/game.dart';
import 'package:flutter/material.dart';
-import 'src/brick_breaker.dart';
+import 'src/widgets/game_app.dart';
void main() {
- final game = BrickBreaker();
- runApp(GameWidget(game: game));
+ runApp(const GameApp());
}
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_09/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_09/lib/src/brick_breaker.dart
@@ -10,8 +10,10 @@ import 'package:flutter/services.dart';
import 'components/components.dart';
import 'config.dart';
+enum PlayState { welcome, playing, gameOver, won }
+
class BrickBreaker extends FlameGame
- with HasCollisionDetection, KeyboardEvents {
+ with HasCollisionDetection, KeyboardEvents, TapDetector {
BrickBreaker()
: super(
camera: CameraComponent.withFixedResolution(
@@ -24,6 +26,22 @@ class BrickBreaker extends FlameGame
double get width => size.x;
double get height => size.y;
+ late PlayState _playState;
+ PlayState get playState => _playState;
+ set playState(PlayState playState) {
+ _playState = playState;
+ switch (playState) {
+ case PlayState.welcome:
+ case PlayState.gameOver:
+ case PlayState.won:
+ overlays.add(playState.name);
+ case PlayState.playing:
+ overlays.remove(PlayState.welcome.name);
+ overlays.remove(PlayState.gameOver.name);
+ overlays.remove(PlayState.won.name);
+ }
+ }
+
@override
FutureOr<void> onLoad() async {
super.onLoad();
@@ -32,6 +50,18 @@ class BrickBreaker extends FlameGame
world.add(PlayArea());
+ playState = PlayState.welcome;
+ }
+
+ void startGame() {
+ if (playState == PlayState.playing) return;
+
+ world.removeAll(world.children.query<Ball>());
+ world.removeAll(world.children.query<Bat>());
+ world.removeAll(world.children.query<Brick>());
+
+ playState = PlayState.playing;
+
world.add(Ball(
difficultyModifier: difficultyModifier,
radius: ballRadius,
@@ -45,7 +75,7 @@ class BrickBreaker extends FlameGame
cornerRadius: const Radius.circular(ballRadius / 2),
position: Vector2(width / 2, height * 0.95)));
- await world.addAll([
+ world.addAll([
for (var i = 0; i < brickColors.length; i++)
for (var j = 1; j <= 5; j++)
Brick(
@@ -56,8 +86,12 @@ class BrickBreaker extends FlameGame
color: brickColors[i],
),
]);
+ }
- debugMode = true;
+ @override
+ void onTap() {
+ super.onTap();
+ startGame();
}
@override
@@ -69,7 +103,13 @@ class BrickBreaker extends FlameGame
world.children.query<Bat>().first.moveBy(-batStep);
case LogicalKeyboardKey.arrowRight:
world.children.query<Bat>().first.moveBy(batStep);
+ case LogicalKeyboardKey.space:
+ case LogicalKeyboardKey.enter:
+ startGame();
}
return KeyEventResult.handled;
}
+
+ @override
+ Color backgroundColor() => const Color(0xfff2e8cf);
}
- name: Patch lib/src/components/ball.dart
path: brick_breaker/lib/src/components/ball.dart
patch-u: |
--- b/brick_breaker/step_09/lib/src/components/ball.dart
+++ a/brick_breaker/step_09/lib/src/components/ball.dart
@@ -45,8 +45,10 @@ class Ball extends CircleComponent
velocity.x = -velocity.x;
} else if (intersectionPoints.first.y >= game.height) {
add(RemoveEffect(
- delay: 0.35,
- ));
+ delay: 0.35,
+ onComplete: () {
+ game.playState = PlayState.gameOver;
+ }));
}
} else if (other is Bat) {
velocity.y = -velocity.y;
- name: Patch lib/src/components/brick.dart
path: brick_breaker/lib/src/components/brick.dart
patch-u: |
--- b/brick_breaker/step_09/lib/src/components/brick.dart
+++ a/brick_breaker/step_09/lib/src/components/brick.dart
@@ -26,6 +26,7 @@ class Brick extends RectangleComponent
removeFromParent();
if (game.world.children.query<Brick>().length == 1) {
+ game.playState = PlayState.won;
game.world.removeAll(game.world.children.query<Ball>());
game.world.removeAll(game.world.children.query<Bat>());
}
- name: Mkdir lib/src/widgets
mkdir: brick_breaker/lib/src/widgets
- name: Add lib/src/widgets/game_app.dart
path: brick_breaker/lib/src/widgets/game_app.dart
replace-contents: |
import 'package:flame/game.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import '../brick_breaker.dart';
import '../config.dart';
class GameApp extends StatelessWidget {
const GameApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: true,
textTheme: GoogleFonts.pressStart2pTextTheme().apply(
bodyColor: const Color(0xff184e77),
displayColor: const Color(0xff184e77),
),
),
home: Scaffold(
body: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Color(0xffa9d6e5),
Color(0xfff2e8cf),
],
),
),
child: SafeArea(
child: Padding(
padding: const EdgeInsets.all(16),
child: Center(
child: FittedBox(
child: SizedBox(
width: gameWidth,
height: gameHeight,
child: GameWidget.controlled(
gameFactory: BrickBreaker.new,
overlayBuilderMap: {
PlayState.welcome.name: (context, game) => Center(
child: Text(
'TAP TO PLAY',
style:
Theme.of(context).textTheme.headlineLarge,
),
),
PlayState.gameOver.name: (context, game) => Center(
child: Text(
'G A M E O V E R',
style:
Theme.of(context).textTheme.headlineLarge,
),
),
PlayState.won.name: (context, game) => Center(
child: Text(
'Y O U W O N ! ! !',
style:
Theme.of(context).textTheme.headlineLarge,
),
),
},
),
),
),
),
),
),
),
),
);
}
}
- name: Patch macos/Runner/Release.entitlements
path: brick_breaker/macos/Runner/Release.entitlements
patch-u: |
--- step_09/macos/Runner/Release.entitlements.orig 2023-09-01 15:04:05.839873573 +1000
+++ step_09/macos/Runner/Release.entitlements 2023-11-07 17:01:53.611544371 +1100
@@ -4,5 +4,7 @@
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Patch macos/Runner/DebugProfile.entitlements
path: brick_breaker/macos/Runner/DebugProfile.entitlements
patch-u: |
--- b/brick_breaker/step_09/macos/Runner/DebugProfile.entitlements
+++ a/brick_breaker/step_09/macos/Runner/DebugProfile.entitlements
@@ -8,5 +8,7 @@
<true/>
<key>com.apple.security.network.server</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Patch android/app/src/main/AndroidManifest.xml
path: brick_breaker/android/app/src/main/AndroidManifest.xml
patch-u: |
--- a/brick_breaker/step_09/android/app/src/main/AndroidManifest.xml
+++ b/brick_breaker/step_09/android/app/src/main/AndroidManifest.xml
@@ -1,4 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+ <uses-permission android:name="android.permission.INTERNET" />
<application
android:label="brick_breaker"
android:name="${applicationName}"
- name: Copy step_09
copydir:
from: brick_breaker
to: step_09
- name: Flutter clean
path: step_09
flutter: clean
- name: step_10
steps:
- name: Remove generated code
rmdir: step_10
- name: Patch lib/src/brick_breaker.dart
path: brick_breaker/lib/src/brick_breaker.dart
patch-u: |
--- b/brick_breaker/step_10/lib/src/brick_breaker.dart
+++ a/brick_breaker/step_10/lib/src/brick_breaker.dart
@@ -22,6 +22,7 @@ class BrickBreaker extends FlameGame
),
);
+ final ValueNotifier<int> score = ValueNotifier(0);
final rand = math.Random();
double get width => size.x;
double get height => size.y;
@@ -61,6 +62,7 @@ class BrickBreaker extends FlameGame
world.removeAll(world.children.query<Brick>());
playState = PlayState.playing;
+ score.value = 0;
world.add(Ball(
difficultyModifier: difficultyModifier,
- name: Patch lib/src/components/brick.dart
path: brick_breaker/lib/src/components/brick.dart
patch-u: |
--- b/brick_breaker/step_10/lib/src/components/brick.dart
+++ a/brick_breaker/step_10/lib/src/components/brick.dart
@@ -24,6 +24,7 @@ class Brick extends RectangleComponent
Set<Vector2> intersectionPoints, PositionComponent other) {
super.onCollisionStart(intersectionPoints, other);
removeFromParent();
+ game.score.value++;
if (game.world.children.query<Brick>().length == 1) {
game.playState = PlayState.won;
- name: Patch lib/src/widgets/game_app.dart
path: brick_breaker/lib/src/widgets/game_app.dart
patch-u: |
--- b/brick_breaker/step_10/lib/src/widgets/game_app.dart
+++ a/brick_breaker/step_10/lib/src/widgets/game_app.dart
@@ -4,10 +4,25 @@ import 'package:google_fonts/google_fonts.dart';
import '../brick_breaker.dart';
import '../config.dart';
+import 'overlay_screen.dart';
+import 'score_card.dart';
-class GameApp extends StatelessWidget {
+class GameApp extends StatefulWidget {
const GameApp({super.key});
+ @override
+ State<GameApp> createState() => _GameAppState();
+}
+
+class _GameAppState extends State<GameApp> {
+ late final BrickBreaker game;
+
+ @override
+ void initState() {
+ super.initState();
+ game = BrickBreaker();
+ }
+
@override
Widget build(BuildContext context) {
return MaterialApp(
@@ -35,37 +50,38 @@ class GameApp extends StatelessWidget {
child: Padding(
padding: const EdgeInsets.all(16),
child: Center(
- child: FittedBox(
- child: SizedBox(
- width: gameWidth,
- height: gameHeight,
- child: GameWidget.controlled(
- gameFactory: BrickBreaker.new,
- overlayBuilderMap: {
- PlayState.welcome.name: (context, game) => Center(
- child: Text(
- 'TAP TO PLAY',
- style:
- Theme.of(context).textTheme.headlineLarge,
- ),
- ),
- PlayState.gameOver.name: (context, game) => Center(
- child: Text(
- 'G A M E O V E R',
- style:
- Theme.of(context).textTheme.headlineLarge,
- ),
- ),
- PlayState.won.name: (context, game) => Center(
- child: Text(
- 'Y O U W O N ! ! !',
- style:
- Theme.of(context).textTheme.headlineLarge,
- ),
- ),
- },
+ child: Column(
+ children: [
+ ScoreCard(score: game.score),
+ Expanded(
+ child: FittedBox(
+ child: SizedBox(
+ width: gameWidth,
+ height: gameHeight,
+ child: GameWidget(
+ game: game,
+ overlayBuilderMap: {
+ PlayState.welcome.name: (context, game) =>
+ const OverlayScreen(
+ title: 'TAP TO PLAY',
+ subtitle: 'Use arrow keys or swipe',
+ ),
+ PlayState.gameOver.name: (context, game) =>
+ const OverlayScreen(
+ title: 'G A M E O V E R',
+ subtitle: 'Tap to Play Again',
+ ),
+ PlayState.won.name: (context, game) =>
+ const OverlayScreen(
+ title: 'Y O U W O N ! ! !',
+ subtitle: 'Tap to Play Again',
+ ),
+ },
+ ),
+ ),
+ ),
),
- ),
+ ],
),
),
),
- name: Add lib/src/widgets/overlay_screen.dart
path: brick_breaker/lib/src/widgets/overlay_screen.dart
replace-contents: |
import 'package:flutter/material.dart';
import 'package:flutter_animate/flutter_animate.dart';
class OverlayScreen extends StatelessWidget {
const OverlayScreen({
super.key,
required this.title,
required this.subtitle,
});
final String title;
final String subtitle;
@override
Widget build(BuildContext context) {
return Container(
alignment: const Alignment(0, -0.15),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
title,
style: Theme.of(context).textTheme.headlineLarge,
).animate().slideY(duration: 750.ms, begin: -3, end: 0),
const SizedBox(height: 16),
Text(
subtitle,
style: Theme.of(context).textTheme.headlineSmall,
)
.animate(onPlay: (controller) => controller.repeat())
.fadeIn(duration: 1.seconds)
.then()
.fadeOut(duration: 1.seconds),
],
),
);
}
}
- name: Add lib/src/widgets/score_card.dart
path: brick_breaker/lib/src/widgets/score_card.dart
replace-contents: |
import 'package:flutter/material.dart';
class ScoreCard extends StatelessWidget {
const ScoreCard({
super.key,
required this.score,
});
final ValueNotifier<int> score;
@override
Widget build(BuildContext context) {
return ValueListenableBuilder<int>(
valueListenable: score,
builder: (context, score, child) {
return Padding(
padding: const EdgeInsets.fromLTRB(12, 6, 12, 18),
child: Text(
'Score: $score'.toUpperCase(),
style: Theme.of(context).textTheme.titleLarge!,
),
);
},
);
}
}
- name: Build iOS simulator bundle
platforms: [ macos ]
path: brick_breaker
flutter: build ios --simulator
- name: Build macOS app
platforms: [ macos ]
path: brick_breaker
flutter: build macos
- name: Build Linux app
platforms: [ linux ]
path: brick_breaker
flutter: build linux
- name: Build Windows app
platforms: [ windows ]
path: brick_breaker
flutter: build windows
- name: Copy step_10
copydir:
from: brick_breaker
to: step_10
- name: Flutter clean
path: step_10
flutter: clean
- name: Cleanup
rmdir: brick_breaker | codelabs/brick_breaker/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/brick_breaker/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 27046
} | 15 |
export 'play_area.dart';
| codelabs/brick_breaker/step_04/lib/src/components/components.dart/0 | {
"file_path": "codelabs/brick_breaker/step_04/lib/src/components/components.dart",
"repo_id": "codelabs",
"token_count": 10
} | 16 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/brick_breaker/step_10/android/gradle.properties/0 | {
"file_path": "codelabs/brick_breaker/step_10/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 17 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_03/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_03/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 18 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_03/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_03/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 19 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_04/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_04/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 20 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_08/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_08/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 21 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_09/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_09/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 22 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_10/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_10/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 23 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/ffigen_codelab/step_03/example/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/example/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 24 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ffigen_app">
</manifest>
| codelabs/ffigen_codelab/step_06/android/src/main/AndroidManifest.xml/0 | {
"file_path": "codelabs/ffigen_codelab/step_06/android/src/main/AndroidManifest.xml",
"repo_id": "codelabs",
"token_count": 44
} | 25 |
// Copyright 2017, 2020, 2022 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
import 'package:ffigen_app/ffigen_app.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'duktape_message.dart';
void main() {
runApp(const ProviderScope(child: DuktapeApp()));
}
final duktapeMessagesProvider =
StateNotifierProvider<DuktapeMessageNotifier, List<DuktapeMessage>>((ref) {
return DuktapeMessageNotifier(messages: <DuktapeMessage>[]);
});
class DuktapeMessageNotifier extends StateNotifier<List<DuktapeMessage>> {
DuktapeMessageNotifier({required List<DuktapeMessage> messages})
: duktape = Duktape(),
super(messages);
final Duktape duktape;
void eval(String code) {
state = [
DuktapeMessage.evaluate(code),
...state,
];
try {
final response = duktape.evalString(code);
state = [
DuktapeMessage.response(response),
...state,
];
} catch (e) {
state = [
DuktapeMessage.error('$e'),
...state,
];
}
}
}
class DuktapeApp extends StatelessWidget {
const DuktapeApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Duktape App',
home: DuktapeRepl(),
);
}
}
class DuktapeRepl extends ConsumerStatefulWidget {
const DuktapeRepl({
super.key,
});
@override
ConsumerState<DuktapeRepl> createState() => _DuktapeReplState();
}
class _DuktapeReplState extends ConsumerState<DuktapeRepl> {
final _controller = TextEditingController();
final _focusNode = FocusNode();
var _isComposing = false;
void _handleSubmitted(String text) {
_controller.clear();
setState(() {
_isComposing = false;
});
setState(() {
ref.read(duktapeMessagesProvider.notifier).eval(text);
});
_focusNode.requestFocus();
}
@override
Widget build(BuildContext context) {
final messages = ref.watch(duktapeMessagesProvider);
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
title: const Text('Duktape REPL'),
elevation: Theme.of(context).platform == TargetPlatform.iOS ? 0.0 : 4.0,
),
body: Column(
children: [
Flexible(
child: Ink(
color: Theme.of(context).scaffoldBackgroundColor,
child: SafeArea(
bottom: false,
child: ListView.builder(
padding: const EdgeInsets.all(8.0),
reverse: true,
itemBuilder: (context, idx) => messages[idx].when(
evaluate: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
'> $str',
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleMedium,
),
),
),
response: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
'= $str',
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleMedium,
color: Colors.blue[800],
),
),
),
error: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
str,
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleSmall,
color: Colors.red[800],
fontWeight: FontWeight.bold,
),
),
),
),
itemCount: messages.length,
),
),
),
),
const Divider(height: 1.0),
SafeArea(
top: false,
child: Container(
decoration: BoxDecoration(color: Theme.of(context).cardColor),
child: _buildTextComposer(),
),
),
],
),
);
}
Widget _buildTextComposer() {
return IconTheme(
data: IconThemeData(color: Theme.of(context).colorScheme.secondary),
child: Container(
margin: const EdgeInsets.symmetric(horizontal: 8.0),
child: Row(
children: [
Text('>', style: Theme.of(context).textTheme.titleMedium),
const SizedBox(width: 4),
Flexible(
child: TextField(
controller: _controller,
decoration: const InputDecoration(
border: InputBorder.none,
),
onChanged: (text) {
setState(() {
_isComposing = text.isNotEmpty;
});
},
onSubmitted: _isComposing ? _handleSubmitted : null,
focusNode: _focusNode,
),
),
Container(
margin: const EdgeInsets.symmetric(horizontal: 4.0),
child: IconButton(
icon: const Icon(Icons.send),
onPressed: _isComposing
? () => _handleSubmitted(_controller.text)
: null,
),
),
],
),
),
);
}
}
| codelabs/ffigen_codelab/step_07/example/lib/main.dart/0 | {
"file_path": "codelabs/ffigen_codelab/step_07/example/lib/main.dart",
"repo_id": "codelabs",
"token_count": 3020
} | 26 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/ffigen_codelab/step_07/example/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/ffigen_codelab/step_07/example/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 27 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/firebase-auth-flutterfire-ui/complete/android/gradle.properties/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/complete/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 28 |
import 'package:flutter/material.dart';
import 'auth_gate.dart';
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const AuthGate(),
);
}
}
| codelabs/firebase-auth-flutterfire-ui/start/lib/app.dart/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/start/lib/app.dart",
"repo_id": "codelabs",
"token_count": 151
} | 29 |
#include "Generated.xcconfig"
| codelabs/firebase-emulator-suite/start/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 30 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-emulator-suite/start/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 31 |
# Get to know Firebase for Flutter codelab
This code supports the [Get to know Firebase for Flutter][] codelab. The
directories are the state of the project at the end of the numbered step
in the codelab.
[Get to know Firebase for Flutter]: https://firebase.google.com/codelabs/firebase-get-to-know-flutter | codelabs/firebase-get-to-know-flutter/README.md/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/README.md",
"repo_id": "codelabs",
"token_count": 93
} | 32 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-get-to-know-flutter/step_05/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_05/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 33 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'app_state.dart';
import 'src/widgets.dart';
class YesNoSelection extends StatelessWidget {
const YesNoSelection({
super.key,
required this.state,
required this.onSelection,
});
final Attending state;
final void Function(Attending selection) onSelection;
@override
Widget build(BuildContext context) {
switch (state) {
case Attending.yes:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
FilledButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
TextButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
case Attending.no:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
TextButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
FilledButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
default:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
StyledButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
StyledButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
}
}
}
| codelabs/firebase-get-to-know-flutter/step_09/lib/yes_no_selection.dart/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_09/lib/yes_no_selection.dart",
"repo_id": "codelabs",
"token_count": 1096
} | 34 |
function ci_codelabs () {
local channel="$1"
shift
# ffigen_codelab/step_07 needs to build the native library before running the tests
pushd ffigen_codelab/step_07/example
# RUNNER_OS from https://stackoverflow.com/a/72926104/2142626
if [ $RUNNER_OS = 'Linux' ]; then
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install -y ninja-build libgtk-3-dev
fi
flutter build `echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'` --debug
popd
local arr=("$@")
for CODELAB in "${arr[@]}"
do
echo "== Testing '${CODELAB}' on $channel"
declare -a PROJECT_PATHS=($(
find $CODELAB -not -path './flutter/*' -not -path '*/.symlinks/*' -name pubspec.yaml -exec dirname {} \; | sort
))
for PROJECT in "${PROJECT_PATHS[@]}"
do
pushd "${PROJECT}"
echo "== Getting dependencies for ${PROJECT}"
for dir in `find . -name pubspec.yaml -not -path '*/*symlinks/*' -exec dirname {} \;`; do
pushd $dir
flutter pub get
popd
done
echo "== Testing"
# Run the analyzer to find any static analysis issues.
dart analyze --fatal-infos --fatal-warnings
# Run the formatter on all the dart files to make sure everything's linted.
dart format --output none --set-exit-if-changed .
# Run the actual tests.
if [ -d "test" ]
then
if grep -q "flutter:" "pubspec.yaml"; then
flutter test
else
# If the project is not a Flutter project, use the Dart CLI.
dart test
fi
fi
popd
done
done
}
| codelabs/flutter_ci_script_shared.sh/0 | {
"file_path": "codelabs/flutter_ci_script_shared.sh",
"repo_id": "codelabs",
"token_count": 941
} | 35 |
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: window_to_front
description: "A new Flutter plugin project."
version: 0.0.1
homepage:
environment:
sdk: '>=3.3.0-279.2.beta <4.0.0'
flutter: '>=3.3.0'
dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.0
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# This section identifies this Flutter project as a plugin project.
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
# which should be registered in the plugin registry. This is required for
# using method channels.
# The Android 'package' specifies package in which the registered class is.
# This is required for using method channels on Android.
# The 'ffiPlugin' specifies that native code should be built and bundled.
# This is required for using `dart:ffi`.
# All these are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
platforms:
linux:
pluginClass: WindowToFrontPlugin
macos:
pluginClass: WindowToFrontPlugin
windows:
pluginClass: WindowToFrontPluginCApi
# To add assets to your plugin package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
#
# For details regarding assets in packages, see
# https://flutter.dev/assets-and-images/#from-packages
#
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# To add custom fonts to your plugin package, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts in packages, see
# https://flutter.dev/custom-fonts/#from-packages
| codelabs/github-client/window_to_front/pubspec.yaml/0 | {
"file_path": "codelabs/github-client/window_to_front/pubspec.yaml",
"repo_id": "codelabs",
"token_count": 988
} | 36 |
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late GoogleMapController mapController;
final LatLng _center = const LatLng(45.521563, -122.677433);
void _onMapCreated(GoogleMapController controller) {
mapController = controller;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
useMaterial3: true,
colorSchemeSeed: Colors.green[700],
),
home: Scaffold(
appBar: AppBar(
title: const Text('Maps Sample App'),
elevation: 2,
),
body: GoogleMap(
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: _center,
zoom: 11.0,
),
),
),
);
}
}
| codelabs/google-maps-in-flutter/step_4/lib/main.dart/0 | {
"file_path": "codelabs/google-maps-in-flutter/step_4/lib/main.dart",
"repo_id": "codelabs",
"token_count": 588
} | 37 |
#import "GeneratedPluginRegistrant.h"
| codelabs/haiku_generator/finished/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/haiku_generator/finished/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 38 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/haiku_generator/step0/android/gradle.properties/0 | {
"file_path": "codelabs/haiku_generator/step0/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 39 |
import '../../models/product.dart';
abstract class ProductRepository {
Future<List<Product>> getAllProducts();
}
| codelabs/haiku_generator/step0/lib/domain/repositories/abstract/product_repository.dart/0 | {
"file_path": "codelabs/haiku_generator/step0/lib/domain/repositories/abstract/product_repository.dart",
"repo_id": "codelabs",
"token_count": 35
} | 40 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/haiku_generator/step0/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step0/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 41 |
#import "GeneratedPluginRegistrant.h"
| codelabs/haiku_generator/step1/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/haiku_generator/step1/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 42 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/haiku_generator/step2/android/gradle.properties/0 | {
"file_path": "codelabs/haiku_generator/step2/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 43 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/haiku_generator/step2/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step2/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 44 |
#import "GeneratedPluginRegistrant.h"
| codelabs/haiku_generator/step3/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/haiku_generator/step3/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 45 |
// Import will depend on App ID.
package com.mydomain.homescreen_widgets
import android.appwidget.AppWidgetManager
import android.appwidget.AppWidgetProvider
import android.content.Context
import android.widget.RemoteViews
// New import.
import es.antonborri.home_widget.HomeWidgetPlugin
/**
* Implementation of App Widget functionality.
*/
class NewsWidget : AppWidgetProvider() {
override fun onUpdate(
context: Context,
appWidgetManager: AppWidgetManager,
appWidgetIds: IntArray,
) {
for (appWidgetId in appWidgetIds) {
// Get reference to SharedPreferences.
val widgetData = HomeWidgetPlugin.getData(context)
val views = RemoteViews(context.packageName, R.layout.news_widget).apply {
val title = widgetData.getString("headline_title", null)
setTextViewText(R.id.headline_title, title ?: "No title set")
val description = widgetData.getString("headline_description", null)
setTextViewText(R.id.headline_description, description ?: "No description set")
}
appWidgetManager.updateAppWidget(appWidgetId, views)
}
}
}
| codelabs/homescreen_codelab/step_05/android/app/src/main/java/com/mydomain/homescreen_widgets/NewsWidget.kt/0 | {
"file_path": "codelabs/homescreen_codelab/step_05/android/app/src/main/java/com/mydomain/homescreen_widgets/NewsWidget.kt",
"repo_id": "codelabs",
"token_count": 469
} | 46 |
#import "GeneratedPluginRegistrant.h"
| codelabs/homescreen_codelab/step_05/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/homescreen_codelab/step_05/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 47 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>dash clicker</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>iap</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.556020018095-tbllog3gca3o9vvd3og3kbg0pb598udn</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSBonjourServices</key>
<array>
<string>_dartobservatory._tcp</string>
</array>
<key>NSLocalNetworkUsageDescription</key>
<string>Allow Flutter tools on your computer to connect and debug your application.</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>GIDClientID</key>
<string>556020018095-tbllog3gca3o9vvd3og3kbg0pb598udn.apps.googleusercontent.com</string>
</dict>
</plist>
| codelabs/in_app_purchases/complete/app/ios/Runner/Info-Debug.plist/0 | {
"file_path": "codelabs/in_app_purchases/complete/app/ios/Runner/Info-Debug.plist",
"repo_id": "codelabs",
"token_count": 911
} | 48 |
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import '../logic/dash_counter.dart';
import '../logic/dash_purchases.dart';
import '../logic/dash_upgrades.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return const Column(
children: [
Expanded(
flex: 2,
child: DashClickerWidget(),
),
Expanded(child: UpgradeList()),
],
);
}
}
class DashClickerWidget extends StatelessWidget {
const DashClickerWidget({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const CounterStateWidget(),
InkWell(
// Don't listen as we don't need a rebuild when the count changes
onTap: Provider.of<DashCounter>(context, listen: false).increment,
child: Image.asset(context.read<DashPurchases>().beautifiedDash
? 'assets/dash.png'
: 'assets/dash_old.png'),
)
],
),
);
}
}
class CounterStateWidget extends StatelessWidget {
const CounterStateWidget({super.key});
@override
Widget build(BuildContext context) {
// This widget is the only widget that directly listens to the counter
// and is thus updated almost every frame. Keep this as small as possible.
var counter = context.watch<DashCounter>();
return RichText(
text: TextSpan(
text: 'You have tapped Dash ',
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(
text: counter.countString,
style: const TextStyle(fontWeight: FontWeight.bold)),
const TextSpan(text: ' times!'),
],
),
);
}
}
class UpgradeList extends StatelessWidget {
const UpgradeList({super.key});
@override
Widget build(BuildContext context) {
var upgrades = context.watch<DashUpgrades>();
return ListView(children: [
_UpgradeWidget(
upgrade: upgrades.tim,
title: 'Tim Sneath',
onPressed: upgrades.addTim,
),
]);
}
}
class _UpgradeWidget extends StatelessWidget {
final Upgrade upgrade;
final String title;
final VoidCallback onPressed;
const _UpgradeWidget({
required this.upgrade,
required this.title,
required this.onPressed,
});
@override
Widget build(BuildContext context) {
return InkWell(
onTap: onPressed,
child: ListTile(
leading: Center(
widthFactor: 1,
child: Text(
upgrade.count.toString(),
),
),
title: Text(
title,
style: !upgrade.purchasable
? const TextStyle(color: Colors.redAccent)
: null,
),
subtitle: Text('Produces ${upgrade.work} dashes per second'),
trailing: Text(
'${NumberFormat.compact().format(upgrade.cost)} dashes',
),
));
}
}
| codelabs/in_app_purchases/complete/app/lib/pages/home_page.dart/0 | {
"file_path": "codelabs/in_app_purchases/complete/app/lib/pages/home_page.dart",
"repo_id": "codelabs",
"token_count": 1351
} | 49 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.