text
stringlengths
6
13.6M
id
stringlengths
13
176
metadata
dict
__index_level_0__
int64
0
1.69k
samples: - name: Kittens screenshots: - url: https://placekitten.com/500/500 alt: a kitten - url: https://placekitten.com/400/400 alt: another kitten source: https://github.com/johnpryan/kittens description: A sample kitten app difficulty: beginner widgets: - AnimatedBuilder - FutureBuilder packages: - json_serializable - path tags: ['beginner', 'kittens', 'cats'] platforms: ['web', 'ios', 'android'] type: sample # sample or app date: 2019-12-15T02:59:43.1Z channel: stable
samples/web/samples_index/test/yaml/single.yaml/0
{ "file_path": "samples/web/samples_index/test/yaml/single.yaml", "repo_id": "samples", "token_count": 235 }
1,269
name: element_embedding_demo description: A small app to be embedded into a HTML element (see web/index.html) publish_to: 'none' version: 1.0.0+1 environment: sdk: ^3.2.0 dependencies: cupertino_icons: ^1.0.2 flutter: sdk: flutter js: ^0.7.0 dev_dependencies: flutter_test: sdk: flutter flutter_lints: ^3.0.0 flutter: uses-material-design: true assets: - assets/dash.png
samples/web_embedding/element_embedding_demo/pubspec.yaml/0
{ "file_path": "samples/web_embedding/element_embedding_demo/pubspec.yaml", "repo_id": "samples", "token_count": 173 }
1,270
{ "name": "element_embedding_demo", "short_name": "element_embedding", "start_url": ".", "display": "standalone", "background_color": "#0175C2", "theme_color": "#0175C2", "description": "An example of how to embed a Flutter Web app into any HTML Element of a page.", "orientation": "portrait-primary", "prefer_related_applications": false, "icons": [ { "src": "icons/Icon-192.png", "sizes": "192x192", "type": "image/png" }, { "src": "icons/Icon-512.png", "sizes": "512x512", "type": "image/png" }, { "src": "icons/Icon-maskable-192.png", "sizes": "192x192", "type": "image/png", "purpose": "maskable" }, { "src": "icons/Icon-maskable-512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" } ] }
samples/web_embedding/element_embedding_demo/web/manifest.json/0
{ "file_path": "samples/web_embedding/element_embedding_demo/web/manifest.json", "repo_id": "samples", "token_count": 533 }
1,271
import 'dart:js_interop'; import 'package:web/web.dart'; /// Locates the root of the flutter app (for now, the first element that has /// a flt-renderer tag), and dispatches a JS event named [name] with [data]. void broadcastAppEvent(String name, JSObject data) { final HTMLElement? root = document.querySelector('[flt-renderer]') as HTMLElement?; assert(root != null, 'Flutter root element cannot be found!'); final eventDetails = CustomEventInit(detail: data); eventDetails.bubbles = true; eventDetails.composed = true; root!.dispatchEvent(CustomEvent(name, eventDetails)); }
samples/web_embedding/ng-flutter/flutter/lib/src/js_interop/helper.dart/0
{ "file_path": "samples/web_embedding/ng-flutter/flutter/lib/src/js_interop/helper.dart", "repo_id": "samples", "token_count": 183 }
1,272
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>NgFlutter</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> </head> <body class="mat-typography"> <app-root></app-root> </body> </html>
samples/web_embedding/ng-flutter/src/index.html/0
{ "file_path": "samples/web_embedding/ng-flutter/src/index.html", "repo_id": "samples", "token_count": 253 }
1,273
# This is a list of some of the Flutter website's contributors. # To see the full list of contributors, see the revision history in # source control with a command like: git shortlog -sne # # Names should be added to the list like so: # # Name/Organization <email address> Google Inc. Faisal Abid <[email protected]> Iiro Krankka <[email protected]> Ryuji Iwata <[email protected]> Novoda Ltd. — www.novoda.com (Niamh Power, Sebastiano Poggi) Gianluca Cesari <[email protected]> Hidenori Matsubayashi <[email protected]> Pradumna Saraf <[email protected]> Alex Li <[email protected]>
website/AUTHORS/0
{ "file_path": "website/AUTHORS", "repo_id": "website", "token_count": 232 }
1,274
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can // be found in the LICENSE file. // Demonstrates a basic shared element (Hero) animation. import 'package:flutter/material.dart'; class BasicHeroAnimation extends StatelessWidget { const BasicHeroAnimation({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Basic Hero Animation'), ), body: Center( child: InkWell( onTap: () { Navigator.of(context).push( MaterialPageRoute<void>( builder: (context) { return Scaffold( appBar: AppBar( title: const Text('Flippers Page'), ), body: Container( padding: const EdgeInsets.all(8), alignment: Alignment.topLeft, // Use background color to emphasize that it's a new route. color: Colors.lightBlueAccent, child: Hero( tag: 'flippers', child: SizedBox( width: 100, child: Image.asset( 'images/flippers-alpha.png', ), ), ), ), ); }, ), ); }, // Main route child: Hero( tag: 'flippers', child: Image.asset( 'images/flippers-alpha.png', ), ), ), ), ); } } void main() { runApp( const MaterialApp( home: BasicHeroAnimation(), ), ); }
website/examples/_animation/basic_hero_animation/lib/main.dart/0
{ "file_path": "website/examples/_animation/basic_hero_animation/lib/main.dart", "repo_id": "website", "token_count": 1045 }
1,275
import 'package:flutter/material.dart'; void drawerStart() { // #docregion DrawerStart Scaffold( appBar: AppBar( title: const Text('AppBar without hamburger button'), ), drawer: null, // Add a Drawer here in the next step. ); // #enddocregion DrawerStart } void drawerEmpty() { // #docregion DrawerEmpty Scaffold( appBar: AppBar( title: const Text('AppBar with hamburger button'), ), drawer: Drawer( child: null, // Populate the Drawer in the next step. ), ); // #enddocregion DrawerEmpty } void drawerListview() { // #docregion DrawerListView Drawer( // Add a ListView to the drawer. This ensures the user can scroll // through the options in the drawer if there isn't enough vertical // space to fit everything. child: ListView( // Important: Remove any padding from the ListView. padding: EdgeInsets.zero, children: [ const DrawerHeader( decoration: BoxDecoration( color: Colors.blue, ), child: Text('Drawer Header'), ), ListTile( title: const Text('Item 1'), onTap: () { // Update the state of the app. // ... }, ), ListTile( title: const Text('Item 2'), onTap: () { // Update the state of the app. // ... }, ), ], ), ); // #enddocregion DrawerListView } void drawerClose() { Builder( builder: (context) { return Drawer( child: ListView( children: [ // #docregion CloseDrawer ListTile( title: const Text('Item 1'), onTap: () { // Update the state of the app // ... // Then close the drawer Navigator.pop(context); }, ), // #enddocregion CloseDrawer ], ), ); }, ); }
website/examples/cookbook/design/drawer/lib/drawer.dart/0
{ "file_path": "website/examples/cookbook/design/drawer/lib/drawer.dart", "repo_id": "website", "token_count": 936 }
1,276
import 'package:flutter/material.dart'; void main() => runApp(const SnackBarDemo()); class SnackBarDemo extends StatelessWidget { const SnackBarDemo({super.key}); @override Widget build(BuildContext context) { // #docregion Scaffold return MaterialApp( title: 'SnackBar Demo', home: Scaffold( appBar: AppBar( title: const Text('SnackBar Demo'), ), body: const SnackBarPage(), ), ); // #enddocregion Scaffold } } class SnackBarPage extends StatelessWidget { const SnackBarPage({super.key}); @override Widget build(BuildContext context) { return Center( child: ElevatedButton( onPressed: () { // #docregion DisplaySnackBar const snackBar = SnackBar( content: Text('Yay! A SnackBar!'), ); // Find the ScaffoldMessenger in the widget tree // and use it to show a SnackBar. ScaffoldMessenger.of(context).showSnackBar(snackBar); // #enddocregion DisplaySnackBar }, child: const Text('Show SnackBar'), ), ); } }
website/examples/cookbook/design/snackbars/lib/partial.dart/0
{ "file_path": "website/examples/cookbook/design/snackbars/lib/partial.dart", "repo_id": "website", "token_count": 484 }
1,277
import 'package:flutter/material.dart'; // #docregion DownloadButton @immutable class DownloadButton extends StatelessWidget { const DownloadButton({ super.key, }); @override Widget build(BuildContext context) { // TODO: return const SizedBox(); } } // #enddocregion DownloadButton
website/examples/cookbook/effects/download_button/lib/stateful_widget.dart/0
{ "file_path": "website/examples/cookbook/effects/download_button/lib/stateful_widget.dart", "repo_id": "website", "token_count": 98 }
1,278
import 'dart:ui' as ui; import 'package:flutter/material.dart'; @immutable class BubbleBackground extends StatelessWidget { const BubbleBackground({ super.key, required this.colors, this.child, }); final List<Color> colors; final Widget? child; @override Widget build(BuildContext context) { return CustomPaint( painter: BubblePainter( colors: colors, bubbleContext: context, scrollable: ScrollableState(), ), child: child, ); } } // #docregion BubblePainter class BubblePainter extends CustomPainter { BubblePainter({ required ScrollableState scrollable, required BuildContext bubbleContext, required List<Color> colors, }) : _scrollable = scrollable, _bubbleContext = bubbleContext, _colors = colors; final ScrollableState _scrollable; final BuildContext _bubbleContext; final List<Color> _colors; @override bool shouldRepaint(BubblePainter oldDelegate) { return oldDelegate._scrollable != _scrollable || oldDelegate._bubbleContext != _bubbleContext || oldDelegate._colors != _colors; } @override void paint(Canvas canvas, Size size) { final scrollableBox = _scrollable.context.findRenderObject() as RenderBox; final scrollableRect = Offset.zero & scrollableBox.size; final bubbleBox = _bubbleContext.findRenderObject() as RenderBox; final origin = bubbleBox.localToGlobal(Offset.zero, ancestor: scrollableBox); final paint = Paint() ..shader = ui.Gradient.linear( scrollableRect.topCenter, scrollableRect.bottomCenter, _colors, [0.0, 1.0], TileMode.clamp, Matrix4.translationValues(-origin.dx, -origin.dy, 0.0).storage, ); canvas.drawRect(Offset.zero & size, paint); } } // #enddocregion BubblePainter class Message { Message(); bool isMine = true; String text = 'The quick brown fox jumps over the lazy dog'; String from = 'Flutter Dev'; } class MyChat extends StatefulWidget { const MyChat({super.key}); @override State<MyChat> createState() => _MyChatState(); } class _MyChatState extends State<MyChat> { Message message = Message(); @override Widget build(BuildContext context) { // #docregion BubbleBackground return BubbleBackground( // The colors of the gradient, which are different // depending on which user sent this message. colors: message.isMine ? const [Color(0xFF6C7689), Color(0xFF3A364B)] : const [Color(0xFF19B7FF), Color(0xFF491CCB)], // The content within the bubble. child: DefaultTextStyle.merge( style: const TextStyle( fontSize: 18.0, color: Colors.white, ), child: Padding( padding: const EdgeInsets.all(12), child: Text(message.text), ), ), ); // #enddocregion BubbleBackground } }
website/examples/cookbook/effects/gradient_bubbles/lib/bubble_background.dart/0
{ "file_path": "website/examples/cookbook/effects/gradient_bubbles/lib/bubble_background.dart", "repo_id": "website", "token_count": 1113 }
1,279
import 'package:flutter/material.dart'; @immutable class LocationListItem extends StatelessWidget { const LocationListItem({ super.key, required this.imageUrl, required this.name, required this.country, }); final String imageUrl; final String name; final String country; @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16), child: AspectRatio( aspectRatio: 16 / 9, child: ClipRRect( borderRadius: BorderRadius.circular(16), child: Stack( children: [ _buildParallaxBackground(context), _buildGradient(), _buildTitleAndSubtitle(), ], ), ), ), ); } Widget _buildParallaxBackground(BuildContext context) { return Image.network( imageUrl, fit: BoxFit.cover, ); } Widget _buildGradient() { return Positioned.fill( child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( colors: [Colors.transparent, Colors.black.withOpacity(0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], ), ), ), ); } Widget _buildTitleAndSubtitle() { return Positioned( left: 20, bottom: 20, child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( name, style: const TextStyle( color: Colors.white, fontSize: 20, fontWeight: FontWeight.bold, ), ), Text( country, style: const TextStyle( color: Colors.white, fontSize: 14, ), ), ], ), ); } } // #docregion ParallaxRecipeItems class ParallaxRecipe extends StatelessWidget { const ParallaxRecipe({super.key}); @override Widget build(BuildContext context) { return SingleChildScrollView( child: Column( children: [ for (final location in locations) LocationListItem( imageUrl: location.imageUrl, name: location.name, country: location.place, ), ], ), ); } } // #enddocregion ParallaxRecipeItems class Location { const Location({ required this.name, required this.place, required this.imageUrl, }); final String name; final String place; final String imageUrl; } const urlPrefix = 'https://docs.flutter.dev/cookbook/img-files/effects/parallax'; const locations = [ Location( name: 'Mount Rushmore', place: 'U.S.A', imageUrl: '$urlPrefix/01-mount-rushmore.jpg', ), Location( name: 'Gardens By The Bay', place: 'Singapore', imageUrl: '$urlPrefix/02-singapore.jpg', ), Location( name: 'Machu Picchu', place: 'Peru', imageUrl: '$urlPrefix/03-machu-picchu.jpg', ), Location( name: 'Vitznau', place: 'Switzerland', imageUrl: '$urlPrefix/04-vitznau.jpg', ), Location( name: 'Bali', place: 'Indonesia', imageUrl: '$urlPrefix/05-bali.jpg', ), Location( name: 'Mexico City', place: 'Mexico', imageUrl: '$urlPrefix/06-mexico-city.jpg', ), Location( name: 'Cairo', place: 'Egypt', imageUrl: '$urlPrefix/07-cairo.jpg', ), ];
website/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart/0
{ "file_path": "website/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart", "repo_id": "website", "token_count": 1645 }
1,280
import 'package:flutter/material.dart'; // #docregion CircleListItem class CircleListItem extends StatelessWidget { const CircleListItem({super.key}); @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8), child: Container( width: 54, height: 54, decoration: const BoxDecoration( color: Colors.black, shape: BoxShape.circle, ), child: ClipOval( child: Image.network( 'https://docs.flutter.dev/cookbook' '/img-files/effects/split-check/Avatar1.jpg', fit: BoxFit.cover, ), ), ), ); } } // #enddocregion CircleListItem // #docregion CardListItem class CardListItem extends StatelessWidget { const CardListItem({ super.key, required this.isLoading, }); final bool isLoading; @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ _buildImage(), const SizedBox(height: 16), _buildText(), ], ), ); } Widget _buildImage() { return AspectRatio( aspectRatio: 16 / 9, child: Container( width: double.infinity, decoration: BoxDecoration( color: Colors.black, borderRadius: BorderRadius.circular(16), ), child: ClipRRect( borderRadius: BorderRadius.circular(16), child: Image.network( 'https://docs.flutter.dev/cookbook' '/img-files/effects/split-check/Food1.jpg', fit: BoxFit.cover, ), ), ), ); } Widget _buildText() { if (isLoading) { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Container( width: double.infinity, height: 24, decoration: BoxDecoration( color: Colors.black, borderRadius: BorderRadius.circular(16), ), ), const SizedBox(height: 16), Container( width: 250, height: 24, decoration: BoxDecoration( color: Colors.black, borderRadius: BorderRadius.circular(16), ), ), ], ); } else { return const Padding( padding: EdgeInsets.symmetric(horizontal: 8), child: Text( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do ' 'eiusmod tempor incididunt ut labore et dolore magna aliqua.', ), ); } } } // #enddocregion CardListItem // #docregion shimmerGradient const _shimmerGradient = LinearGradient( colors: [ Color(0xFFEBEBF4), Color(0xFFF4F4F4), Color(0xFFEBEBF4), ], stops: [ 0.1, 0.3, 0.4, ], begin: Alignment(-1.0, -0.3), end: Alignment(1.0, 0.3), tileMode: TileMode.clamp, ); // #enddocregion shimmerGradient // #docregion ShimmerLoading class ShimmerLoading extends StatefulWidget { const ShimmerLoading({ super.key, required this.isLoading, required this.child, }); final bool isLoading; final Widget child; @override State<ShimmerLoading> createState() => _ShimmerLoadingState(); } class _ShimmerLoadingState extends State<ShimmerLoading> { @override Widget build(BuildContext context) { if (!widget.isLoading) { return widget.child; } return ShaderMask( blendMode: BlendMode.srcATop, shaderCallback: (bounds) { return _shimmerGradient.createShader(bounds); }, child: widget.child, ); } } // #enddocregion ShimmerLoading // #docregion Shimmer class Shimmer extends StatefulWidget { static ShimmerState? of(BuildContext context) { return context.findAncestorStateOfType<ShimmerState>(); } const Shimmer({ super.key, required this.linearGradient, this.child, }); final LinearGradient linearGradient; final Widget? child; @override ShimmerState createState() => ShimmerState(); } class ShimmerState extends State<Shimmer> { @override Widget build(BuildContext context) { return widget.child ?? const SizedBox(); } } // #enddocregion Shimmer class ExampleUiLoadingAnimation extends StatefulWidget { const ExampleUiLoadingAnimation({ super.key, }); @override State<ExampleUiLoadingAnimation> createState() => _ExampleUiLoadingAnimationState(); } // #docregion ExampleUiAnimationState class _ExampleUiLoadingAnimationState extends State<ExampleUiLoadingAnimation> { @override Widget build(BuildContext context) { return Scaffold( body: Shimmer( linearGradient: _shimmerGradient, child: ListView( // ListView Contents ), ), ); } } // #enddocregion ExampleUiAnimationState
website/examples/cookbook/effects/shimmer_loading/lib/main.dart/0
{ "file_path": "website/examples/cookbook/effects/shimmer_loading/lib/main.dart", "repo_id": "website", "token_count": 2170 }
1,281
// ignore_for_file: unused_element import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import './excerpt1.dart'; // #docregion TypingIndicatorState class _TypingIndicatorState extends State<TypingIndicator> with TickerProviderStateMixin { late AnimationController _appearanceController; late Animation<double> _indicatorSpaceAnimation; @override void initState() { super.initState(); _appearanceController = AnimationController( vsync: this, ); _indicatorSpaceAnimation = CurvedAnimation( parent: _appearanceController, curve: const Interval(0.0, 0.4, curve: Curves.easeOut), reverseCurve: const Interval(0.0, 1.0, curve: Curves.easeOut), ).drive(Tween<double>( begin: 0.0, end: 60.0, )); if (widget.showIndicator) { _showIndicator(); } } @override void didUpdateWidget(TypingIndicator oldWidget) { super.didUpdateWidget(oldWidget); if (widget.showIndicator != oldWidget.showIndicator) { if (widget.showIndicator) { _showIndicator(); } else { _hideIndicator(); } } } @override void dispose() { _appearanceController.dispose(); super.dispose(); } void _showIndicator() { _appearanceController ..duration = const Duration(milliseconds: 750) ..forward(); } void _hideIndicator() { _appearanceController ..duration = const Duration(milliseconds: 150) ..reverse(); } @override Widget build(BuildContext context) { return AnimatedBuilder( animation: _indicatorSpaceAnimation, builder: (context, child) { return SizedBox( height: _indicatorSpaceAnimation.value, ); }, ); } } // #enddocregion TypingIndicatorState
website/examples/cookbook/effects/typing_indicator/lib/excerpt2.dart/0
{ "file_path": "website/examples/cookbook/effects/typing_indicator/lib/excerpt2.dart", "repo_id": "website", "token_count": 692 }
1,282
name: retrieve_input description: Sample code for retrieve_input cookbook recipe. environment: sdk: ^3.3.0 dependencies: flutter: sdk: flutter dev_dependencies: example_utils: path: ../../../example_utils flutter: uses-material-design: true
website/examples/cookbook/forms/retrieve_input/pubspec.yaml/0
{ "file_path": "website/examples/cookbook/forms/retrieve_input/pubspec.yaml", "repo_id": "website", "token_count": 93 }
1,283
This is a stripped down version of the multiplayer sample in https://github.com/flutter/games/tree/main/samples/multiplayer.
website/examples/cookbook/games/firestore_multiplayer/README.md/0
{ "file_path": "website/examples/cookbook/games/firestore_multiplayer/README.md", "repo_id": "website", "token_count": 34 }
1,284
import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { const title = 'Gesture Demo'; return const MaterialApp( title: title, home: MyHomePage(title: title), ); } } class MyHomePage extends StatelessWidget { final String title; const MyHomePage({super.key, required this.title}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(title), ), body: const Center( child: MyButton(), ), ); } } class MyButton extends StatelessWidget { const MyButton({super.key}); @override Widget build(BuildContext context) { // #docregion GestureDetector // The GestureDetector wraps the button. return GestureDetector( // When the child is tapped, show a snackbar. onTap: () { const snackBar = SnackBar(content: Text('Tap')); ScaffoldMessenger.of(context).showSnackBar(snackBar); }, // The custom button child: Container( padding: const EdgeInsets.all(12), decoration: BoxDecoration( color: Colors.lightBlue, borderRadius: BorderRadius.circular(8), ), child: const Text('My Button'), ), ); // #enddocregion GestureDetector } }
website/examples/cookbook/gestures/handling_taps/lib/main.dart/0
{ "file_path": "website/examples/cookbook/gestures/handling_taps/lib/main.dart", "repo_id": "website", "token_count": 558 }
1,285
import 'package:flutter/material.dart'; void main() { runApp( MyApp( // #docregion Items items: List<String>.generate(10000, (i) => 'Item $i'), // #enddocregion Items ), ); } class MyApp extends StatelessWidget { final List<String> items; const MyApp({super.key, required this.items}); @override Widget build(BuildContext context) { const title = 'Long List'; return MaterialApp( title: title, home: Scaffold( appBar: AppBar( title: const Text(title), ), // #docregion ListView body: ListView.builder( itemCount: items.length, prototypeItem: ListTile( title: Text(items.first), ), itemBuilder: (context, index) { return ListTile( title: Text(items[index]), ); }, ), // #enddocregion ListView ), ); } }
website/examples/cookbook/lists/long_lists/lib/main.dart/0
{ "file_path": "website/examples/cookbook/lists/long_lists/lib/main.dart", "repo_id": "website", "token_count": 436 }
1,286
import 'package:flutter/material.dart'; class Todo { final String title; final String description; const Todo(this.title, this.description); } // #docregion TodosScreen class TodosScreen extends StatelessWidget { // Requiring the list of todos. const TodosScreen({super.key, required this.todos}); final List<Todo> todos; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Todos'), ), //passing in the ListView.builder // #docregion ListViewBuilder body: ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), ); }, ), // #enddocregion ListViewBuilder ); } } // #enddocregion TodosScreen
website/examples/cookbook/navigation/passing_data/lib/main_todoscreen.dart/0
{ "file_path": "website/examples/cookbook/navigation/passing_data/lib/main_todoscreen.dart", "repo_id": "website", "token_count": 343 }
1,287
import 'dart:async'; import 'package:http/http.dart' as http; // #docregion deleteAlbum Future<http.Response> deleteAlbum(String id) async { final http.Response response = await http.delete( Uri.parse('https://jsonplaceholder.typicode.com/albums/$id'), headers: <String, String>{ 'Content-Type': 'application/json; charset=UTF-8', }, ); return response; } // #enddocregion deleteAlbum
website/examples/cookbook/networking/delete_data/lib/main_step1.dart/0
{ "file_path": "website/examples/cookbook/networking/delete_data/lib/main_step1.dart", "repo_id": "website", "token_count": 147 }
1,288
import 'package:flutter/material.dart'; import 'package:web_socket_channel/web_socket_channel.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { const title = 'WebSocket Demo'; return const MaterialApp( title: title, home: MyHomePage( title: title, ), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({ super.key, required this.title, }); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { final TextEditingController _controller = TextEditingController(); // #docregion connect final _channel = WebSocketChannel.connect( Uri.parse('wss://echo.websocket.events'), ); // #enddocregion connect @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Padding( padding: const EdgeInsets.all(20), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Form( child: TextFormField( controller: _controller, decoration: const InputDecoration(labelText: 'Send a message'), ), ), const SizedBox(height: 24), // #docregion StreamBuilder StreamBuilder( stream: _channel.stream, builder: (context, snapshot) { return Text(snapshot.hasData ? '${snapshot.data}' : ''); }, ) // #enddocregion StreamBuilder ], ), ), floatingActionButton: FloatingActionButton( onPressed: _sendMessage, tooltip: 'Send message', child: const Icon(Icons.send), ), // This trailing comma makes auto-formatting nicer for build methods. ); } void _sendMessage() { if (_controller.text.isNotEmpty) { // #docregion add _channel.sink.add(_controller.text); // #enddocregion add } } @override void dispose() { // #docregion close _channel.sink.close(); // #enddocregion close _controller.dispose(); super.dispose(); } }
website/examples/cookbook/networking/web_sockets/lib/main.dart/0
{ "file_path": "website/examples/cookbook/networking/web_sockets/lib/main.dart", "repo_id": "website", "token_count": 992 }
1,289
name: mocking description: Use the Mockito package to mimic the behavior of services for testing. environment: sdk: ^3.3.0 dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter http: ^1.2.0 dev_dependencies: example_utils: path: ../../../../example_utils flutter_test: sdk: flutter mockito: ^5.4.4 build_runner: ^2.4.8 flutter: uses-material-design: true
website/examples/cookbook/testing/unit/mocking/pubspec.yaml/0
{ "file_path": "website/examples/cookbook/testing/unit/mocking/pubspec.yaml", "repo_id": "website", "token_count": 162 }
1,290
// #docregion ScrollWidgetTest // This is a basic Flutter widget test. // // To perform an interaction with a widget in your test, use the WidgetTester // utility that Flutter provides. For example, you can send tap and scroll // gestures. You can also use WidgetTester to find child widgets in the widget // tree, read text, and verify that the values of widget properties are correct. import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:scrolling/main.dart'; void main() { testWidgets('finds a deep item in a long list', (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')); // Scroll until the item to be found appears. await tester.scrollUntilVisible( itemFinder, 500.0, scrollable: listFinder, ); // Verify that the item contains the correct text. expect(itemFinder, findsOneWidget); }); } // #enddocregion ScrollWidgetTest
website/examples/cookbook/testing/widget/scrolling/test/widget_test.dart/0
{ "file_path": "website/examples/cookbook/testing/widget/scrolling/test/widget_test.dart", "repo_id": "website", "token_count": 378 }
1,291
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, }; }
website/examples/development/data-and-backend/json/lib/manual/user.dart/0
{ "file_path": "website/examples/development/data-and-backend/json/lib/manual/user.dart", "repo_id": "website", "token_count": 126 }
1,292
// #docregion Import import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; // #enddocregion Import class VirtualDisplayWidget extends StatelessWidget { const VirtualDisplayWidget({super.key}); @override // #docregion VirtualDisplayWidget Widget build(BuildContext context) { // This is used in the platform side to register the view. const String viewType = '<platform-view-type>'; // Pass parameters to the platform side. final Map<String, dynamic> creationParams = <String, dynamic>{}; return AndroidView( viewType: viewType, layoutDirection: TextDirection.ltr, creationParams: creationParams, creationParamsCodec: const StandardMessageCodec(), ); } // #enddocregion VirtualDisplayWidget }
website/examples/development/platform_integration/lib/platform_views/native_view_example_2.dart/0
{ "file_path": "website/examples/development/platform_integration/lib/platform_views/native_view_example_2.dart", "repo_id": "website", "token_count": 244 }
1,293
import 'package:flutter/material.dart'; //---------------------------- ParentWidget ---------------------------- class ParentWidget extends StatefulWidget { const ParentWidget({super.key}); @override State<ParentWidget> createState() => _ParentWidgetState(); } class _ParentWidgetState extends State<ParentWidget> { bool _active = false; void _handleTapboxChanged(bool newValue) { setState(() { _active = newValue; }); } @override Widget build(BuildContext context) { return SizedBox( child: TapboxC( active: _active, onChanged: _handleTapboxChanged, ), ); } } //----------------------------- TapboxC ------------------------------ class TapboxC extends StatefulWidget { const TapboxC({ super.key, this.active = false, required this.onChanged, }); final bool active; final ValueChanged<bool> onChanged; @override State<TapboxC> createState() => _TapboxCState(); } class _TapboxCState extends State<TapboxC> { bool _highlight = false; void _handleTapDown(TapDownDetails details) { setState(() { _highlight = true; }); } void _handleTapUp(TapUpDetails details) { setState(() { _highlight = false; }); } void _handleTapCancel() { setState(() { _highlight = false; }); } void _handleTap() { widget.onChanged(!widget.active); } @override Widget build(BuildContext context) { // This example adds a green border on tap down. // On tap up, the square changes to the opposite state. return GestureDetector( onTapDown: _handleTapDown, // Handle the tap events in the order that onTapUp: _handleTapUp, // they occur: down, up, tap, cancel onTap: _handleTap, onTapCancel: _handleTapCancel, child: Container( width: 200, height: 200, decoration: BoxDecoration( color: widget.active ? Colors.lightGreen[700] : Colors.grey[600], border: _highlight ? Border.all( color: Colors.teal[700]!, width: 10, ) : null, ), child: Center( child: Text(widget.active ? 'Active' : 'Inactive', style: const TextStyle(fontSize: 32, color: Colors.white)), ), ), ); } }
website/examples/development/ui/interactive/lib/mixed.dart/0
{ "file_path": "website/examples/development/ui/interactive/lib/mixed.dart", "repo_id": "website", "token_count": 928 }
1,294
import 'package:flutter/material.dart'; void main() { runApp(const FadeAppTest()); } class FadeAppTest extends StatelessWidget { const FadeAppTest({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Fade Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), ), home: const MyFadeTest(title: 'Fade Demo'), ); } } class MyFadeTest extends StatefulWidget { const MyFadeTest({super.key, required this.title}); final String title; @override State<MyFadeTest> createState() => _MyFadeTest(); } class _MyFadeTest extends State<MyFadeTest> with TickerProviderStateMixin { late AnimationController controller; late CurvedAnimation curve; @override void initState() { super.initState(); controller = AnimationController( duration: const Duration(milliseconds: 2000), vsync: this, ); curve = CurvedAnimation( parent: controller, curve: Curves.easeIn, ); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Center( child: FadeTransition( opacity: curve, child: const FlutterLogo( size: 100, ), ), ), floatingActionButton: FloatingActionButton( tooltip: 'Fade', onPressed: () { controller.forward(); }, child: const Icon(Icons.brush), ), ); } }
website/examples/get-started/flutter-for/android_devs/lib/animation.dart/0
{ "file_path": "website/examples/get-started/flutter-for/android_devs/lib/animation.dart", "repo_id": "website", "token_count": 649 }
1,295
import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class MyWidget extends StatelessWidget { const MyWidget({super.key}); @override Widget build(BuildContext context) { return // #docregion AccessString Text(AppLocalizations.of(context)!.hello('John')); // #enddocregion AccessString } }
website/examples/get-started/flutter-for/android_devs/lib/localization_examples.dart/0
{ "file_path": "website/examples/get-started/flutter-for/android_devs/lib/localization_examples.dart", "repo_id": "website", "token_count": 132 }
1,296
import 'dart:async' show Future; import 'package:flutter/services.dart' show rootBundle; Future<String> loadAsset() async { return await rootBundle.loadString('my-assets/data.json'); }
website/examples/get-started/flutter-for/ios_devs/lib/asset_bundle.dart/0
{ "file_path": "website/examples/get-started/flutter-for/ios_devs/lib/asset_bundle.dart", "repo_id": "website", "token_count": 62 }
1,297
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() { runApp( const App(), ); } class App extends StatelessWidget { const App({ super.key, }); @override Widget build(BuildContext context) { return const CupertinoApp( home: HomePage(), ); } } // #docregion SimpleList class Person { String name; Person(this.name); } var items = [ Person('Person 1'), Person('Person 2'), Person('Person 3'), ]; class HomePage extends StatelessWidget { const HomePage({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: ListView.builder( itemCount: items.length, itemBuilder: (context, index) { return ListTile( title: Text(items[index].name), ); }, ), ); } } // #enddocregion SimpleList
website/examples/get-started/flutter-for/ios_devs/lib/list.dart/0
{ "file_path": "website/examples/get-started/flutter-for/ios_devs/lib/list.dart", "repo_id": "website", "token_count": 351 }
1,298
import 'package:flutter/material.dart'; // #docregion Strings class Strings { static const String welcomeMessage = 'Welcome To Flutter'; } // #enddocregion Strings class MyWidget extends StatelessWidget { const MyWidget({super.key}); @override Widget build(BuildContext context) { return // #docregion AccessString const Text(Strings.welcomeMessage); // #enddocregion AccessString } }
website/examples/get-started/flutter-for/ios_devs/lib/string_examples.dart/0
{ "file_path": "website/examples/get-started/flutter-for/ios_devs/lib/string_examples.dart", "repo_id": "website", "token_count": 139 }
1,299
// ignore_for_file: unused_import // #docregion Imports import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'package:my_widgets/my_widgets.dart'; // #enddocregion Imports
website/examples/get-started/flutter-for/react_native_devs/lib/imports.dart/0
{ "file_path": "website/examples/get-started/flutter-for/react_native_devs/lib/imports.dart", "repo_id": "website", "token_count": 87 }
1,300
import 'package:flutter/material.dart'; // #docregion CustomButton class CustomButton extends StatelessWidget { const CustomButton(this.label, {super.key}); final String label; @override Widget build(BuildContext context) { return ElevatedButton( onPressed: () {}, child: Text(label), ); } } // #enddocregion CustomButton class UseCustomButton extends StatelessWidget { const UseCustomButton({super.key}); // #docregion UseCustomButton @override Widget build(BuildContext context) { return const Center( child: CustomButton('Hello'), ); } // #enddocregion UseCustomButton }
website/examples/get-started/flutter-for/xamarin_devs/lib/custom_button.dart/0
{ "file_path": "website/examples/get-started/flutter-for/xamarin_devs/lib/custom_button.dart", "repo_id": "website", "token_count": 207 }
1,301
import 'package:flutter/material.dart'; class MyWidget extends StatelessWidget { const MyWidget({super.key}); // #docregion Padding @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Sample App')), body: Center( child: ElevatedButton( style: ElevatedButton.styleFrom( padding: const EdgeInsets.only(left: 20, right: 30), ), onPressed: () {}, child: const Text('Hello'), ), ), ); } // #enddocregion Padding }
website/examples/get-started/flutter-for/xamarin_devs/lib/padding.dart/0
{ "file_path": "website/examples/get-started/flutter-for/xamarin_devs/lib/padding.dart", "repo_id": "website", "token_count": 239 }
1,302
import 'package:integration_test/integration_test_driver.dart'; Future<void> main() => integrationDriver();
website/examples/integration_test/test_driver/integration_test_driver.dart/0
{ "file_path": "website/examples/integration_test/test_driver/integration_test_driver.dart", "repo_id": "website", "token_count": 32 }
1,303
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // A simple example of localizing a Flutter app written with the // Dart intl package (see https://pub.dev/packages/intl). // // Spanish and English (locale language codes 'en' and 'es') are // supported. // The pubspec.yaml file must include flutter_localizations and the // Dart intl packages in its dependencies section. For example: // // dependencies: // flutter: // sdk: flutter // flutter_localizations: // sdk: flutter // intl: any # Use the pinned version from flutter_localizations // If you run this app with the device's locale set to anything but // English or Spanish, the app's locale will be English. If you // set the device's locale to Spanish, the app's locale will be // Spanish. import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; import 'package:intl/intl.dart'; // This file was generated in two steps, using the Dart intl tools. With the // app's root directory (the one that contains pubspec.yaml) as the current // directory: // // flutter pub get // dart run intl_translation:extract_to_arb --output-dir=lib/l10n lib/main.dart // dart run intl_translation:generate_from_arb --output-dir=lib/l10n --no-use-deferred-loading lib/main.dart lib/l10n/intl_*.arb // // The second command generates intl_messages.arb and the third generates // messages_all.dart. There's more about this process in // https://pub.dev/packages/intl. import 'l10n/messages_all.dart'; // #docregion DemoLocalizations class DemoLocalizations { DemoLocalizations(this.localeName); static Future<DemoLocalizations> load(Locale locale) { final String name = locale.countryCode == null || locale.countryCode!.isEmpty ? locale.languageCode : locale.toString(); final String localeName = Intl.canonicalizedLocale(name); return initializeMessages(localeName).then((_) { return DemoLocalizations(localeName); }); } static DemoLocalizations of(BuildContext context) { return Localizations.of<DemoLocalizations>(context, DemoLocalizations)!; } final String localeName; String get title { return Intl.message( 'Hello World', name: 'title', desc: 'Title for the Demo application', locale: localeName, ); } } // #enddocregion DemoLocalizations class DemoLocalizationsDelegate extends LocalizationsDelegate<DemoLocalizations> { const DemoLocalizationsDelegate(); @override bool isSupported(Locale locale) => ['en', 'es'].contains(locale.languageCode); @override Future<DemoLocalizations> load(Locale locale) => DemoLocalizations.load(locale); @override bool shouldReload(DemoLocalizationsDelegate old) => false; } class DemoApp extends StatelessWidget { const DemoApp({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(DemoLocalizations.of(context).title), ), body: Center( child: Text(DemoLocalizations.of(context).title), ), ); } } class Demo extends StatelessWidget { const Demo({super.key}); @override Widget build(BuildContext context) { // #docregion MaterialAppTitleExample return MaterialApp( onGenerateTitle: (context) => DemoLocalizations.of(context).title, // #enddocregion MaterialAppTitleExample localizationsDelegates: const [ DemoLocalizationsDelegate(), ...GlobalMaterialLocalizations.delegates, GlobalWidgetsLocalizations.delegate, ], supportedLocales: const [ Locale('en', ''), Locale('es', ''), ], // Watch out: MaterialApp creates a Localizations widget // with the specified delegates. DemoLocalizations.of() // will only find the app's Localizations widget if its // context is a child of the app. home: const DemoApp(), ); } } void main() { runApp(const Demo()); }
website/examples/internationalization/intl_example/lib/main.dart/0
{ "file_path": "website/examples/internationalization/intl_example/lib/main.dart", "repo_id": "website", "token_count": 1378 }
1,304
Examples referenced in ["Layouts in Flutter"](https://docs.flutter.dev/ui/layout) that come from the now-archived [Flutter Gallery](https://docs.flutter.dev/gallery). They are mostly the same with a few updates to run standalone, use new language features, and follow modern Dart/Flutter style. These should eventually be updated, replaced, removed, or similar as the layout documentation is rewritten.
website/examples/layout/gallery/README.md/0
{ "file_path": "website/examples/layout/gallery/README.md", "repo_id": "website", "token_count": 102 }
1,305
// Copyright 2019 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:animations/animations.dart'; import 'package:flutter/material.dart'; class BottomNavigationDemo extends StatefulWidget { const BottomNavigationDemo({ super.key, required this.restorationId, required this.type, }); final String restorationId; final BottomNavigationDemoType type; @override State<BottomNavigationDemo> createState() => _BottomNavigationDemoState(); } class _BottomNavigationDemoState extends State<BottomNavigationDemo> with RestorationMixin { final RestorableInt _currentIndex = RestorableInt(0); @override String get restorationId => widget.restorationId; @override void restoreState(RestorationBucket? oldBucket, bool initialRestore) { registerForRestoration(_currentIndex, 'bottom_navigation_tab_index'); } @override void dispose() { _currentIndex.dispose(); super.dispose(); } @override Widget build(BuildContext context) { final colorScheme = Theme.of(context).colorScheme; final textTheme = Theme.of(context).textTheme; var bottomNavigationBarItems = <BottomNavigationBarItem>[ const BottomNavigationBarItem( icon: Icon(Icons.add_comment), label: 'Comments', ), const BottomNavigationBarItem( icon: Icon(Icons.calendar_today), label: 'Calendar', ), const BottomNavigationBarItem( icon: Icon(Icons.account_circle), label: 'Account', ), const BottomNavigationBarItem( icon: Icon(Icons.alarm_on), label: 'Alarm', ), const BottomNavigationBarItem( icon: Icon(Icons.camera_enhance), label: 'Camera', ), ]; if (widget.type == BottomNavigationDemoType.withLabels) { bottomNavigationBarItems = bottomNavigationBarItems.sublist( 0, bottomNavigationBarItems.length - 2); _currentIndex.value = _currentIndex.value .clamp(0, bottomNavigationBarItems.length - 1) .toInt(); } return MaterialApp( home: Scaffold( appBar: AppBar( automaticallyImplyLeading: false, title: Text( switch (widget.type) { BottomNavigationDemoType.withLabels => 'Persistent labels', BottomNavigationDemoType.withoutLabels => 'Selected label', }, ), ), body: Center( child: PageTransitionSwitcher( transitionBuilder: (child, animation, secondaryAnimation) { return FadeThroughTransition( animation: animation, secondaryAnimation: secondaryAnimation, child: child, ); }, child: _NavigationDestinationView( // Adding [UniqueKey] to make sure the widget rebuilds when transitioning. key: UniqueKey(), item: bottomNavigationBarItems[_currentIndex.value], ), ), ), bottomNavigationBar: BottomNavigationBar( showUnselectedLabels: widget.type == BottomNavigationDemoType.withLabels, items: bottomNavigationBarItems, currentIndex: _currentIndex.value, type: BottomNavigationBarType.fixed, selectedFontSize: textTheme.bodySmall!.fontSize!, unselectedFontSize: textTheme.bodySmall!.fontSize!, onTap: (index) { setState(() { _currentIndex.value = index; }); }, selectedItemColor: colorScheme.onPrimary, unselectedItemColor: colorScheme.onPrimary.withOpacity(0.38), backgroundColor: colorScheme.primary, ), ), ); } } class _NavigationDestinationView extends StatelessWidget { const _NavigationDestinationView({ super.key, required this.item, }); final BottomNavigationBarItem item; @override Widget build(BuildContext context) { return Stack( children: [ ExcludeSemantics( child: Center( child: Padding( padding: const EdgeInsets.all(16), child: ClipRRect( borderRadius: BorderRadius.circular(8), child: Image.asset( 'assets/demos/bottom_navigation_background.png', ), ), ), ), ), Center( child: IconTheme( data: const IconThemeData( color: Colors.white, size: 80, ), child: Semantics( label: 'Placeholder for ${item.label} tab', child: item.icon, ), ), ), ], ); } } enum BottomNavigationDemoType { withLabels, withoutLabels, } void main() { runApp(const BottomNavigationDemo( type: BottomNavigationDemoType.withLabels, restorationId: 'bottom_navigation_labels_demo', )); }
website/examples/layout/gallery/lib/bottom_navigation_demo.dart/0
{ "file_path": "website/examples/layout/gallery/lib/bottom_navigation_demo.dart", "repo_id": "website", "token_count": 2214 }
1,306
// #docregion PassAppData import 'dart:convert'; import 'dart:developer' as developer; void main() { var myCustomObject = MyCustomObject(); developer.log( 'log me', name: 'my.app.category', error: jsonEncode(myCustomObject), ); } // #enddocregion PassAppData class MyCustomObject {}
website/examples/testing/code_debugging/lib/app_data.dart/0
{ "file_path": "website/examples/testing/code_debugging/lib/app_data.dart", "repo_id": "website", "token_count": 106 }
1,307
import 'package:flutter/material.dart'; class ProblemWidget extends StatelessWidget { const ProblemWidget({super.key}); @override // #docregion Problem Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: const Text('Unbounded Width of the TextField'), ), body: const Row( children: [ TextField(), ], ), ), ); } // #enddocregion Problem } class SolutionWidget extends StatelessWidget { const SolutionWidget({super.key}); @override // #docregion Fix Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: const Text('Unbounded Width of the TextField'), ), body: Row( children: [ Expanded(child: TextFormField()), ], ), ), ); } // #enddocregion Fix }
website/examples/testing/common_errors/lib/unbounded_width.dart/0
{ "file_path": "website/examples/testing/common_errors/lib/unbounded_width.dart", "repo_id": "website", "token_count": 411 }
1,308
import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp( title: 'Counter App', home: MyHomePage(title: 'Counter App Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { int _counter = 0; void _incrementCounter() { setState(() { _counter++; }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ const Text( 'You have pushed the button this many times:', ), Text( '$_counter', style: Theme.of(context).textTheme.headlineMedium, ), ], ), ), floatingActionButton: FloatingActionButton( // Provide a Key to this button. This allows finding this // specific button inside the test suite, and tapping it. key: const Key('increment'), onPressed: _incrementCounter, tooltip: 'Increment', child: const Icon(Icons.add), ), ); } }
website/examples/testing/integration_tests/how_to/lib/main.dart/0
{ "file_path": "website/examples/testing/integration_tests/how_to/lib/main.dart", "repo_id": "website", "token_count": 642 }
1,309
import 'package:bitsdojo_window/bitsdojo_window.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import '../app_model.dart'; import '../global/device_type.dart'; class AppTitleBar extends StatelessWidget { const AppTitleBar({super.key}); @override Widget build(BuildContext context) { bool isLinuxOrWindows = DeviceType.isWindows || DeviceType.isLinux; bool enableTouch = context.select<AppModel, bool>((m) => m.touchMode); bool useSmallHeader = MediaQuery.of(context).size.width < 600; bool hideTitle = MediaQuery.of(context).size.width < 400; TextStyle style = useSmallHeader ? TextStyles.h2 : TextStyles.h1; return Material( child: Stack( children: [ // Sets background and height for title bar Positioned.fill(child: Container(color: Colors.blue)), // App Logo or Title if (!hideTitle) Positioned.fill( child: Center( child: Text( 'Adaptive Scaffold', style: style.copyWith(color: Colors.white), ), ), ), Positioned.fill(child: MoveWindow()), // Enable Touch Mode Button Row( // Touch button should be right-aligned on macOS to avoid the native buttons textDirection: DeviceType.isMacOS ? TextDirection.rtl : TextDirection.ltr, children: [ IconButton( onPressed: () => context.read<AppModel>().toggleTouchMode(), icon: Icon(enableTouch ? Icons.mouse : Icons.fingerprint), ), const Spacer(), ], ), // Add window controls for Linux/Windows if (isLinuxOrWindows) ...[ Row( children: [ const Spacer(), MinimizeWindowButton(colors: buttonColors), MaximizeWindowButton(colors: buttonColors), CloseWindowButton(colors: closeButtonColors), ], ) ] ], ), ); } } final buttonColors = WindowButtonColors(iconNormal: Colors.white); final closeButtonColors = WindowButtonColors(iconNormal: Colors.white);
website/examples/ui/layout/adaptive_app_demos/lib/widgets/app_title_bar.dart/0
{ "file_path": "website/examples/ui/layout/adaptive_app_demos/lib/widgets/app_title_bar.dart", "repo_id": "website", "token_count": 1045 }
1,310
- name: Get started description: Set up your environment and start building. url: /get-started/install - name: Widget catalog description: Dip into the rich set of Flutter widgets available in the SDK. url: /ui/widgets - name: API docs description: Bookmark the API reference docs for the Flutter framework. url: https://api.flutter.dev/ - name: Cookbook description: Browse the cookbook for many easy Flutter recipes. url: /cookbook - name: Samples description: Check out the Flutter examples. url: https://flutter.github.io/samples - name: Videos description: View the many videos on the Flutter YouTube channel. url: https://www.youtube.com/@flutterdev
website/src/_data/docs_cards.yml/0
{ "file_path": "website/src/_data/docs_cards.yml", "repo_id": "website", "token_count": 193 }
1,311
{{site.alert.important}} If you develop apps in China, check out [using Flutter in China][]. {{site.alert.end}} [using Flutter in China]: /community/china
website/src/_includes/docs/china-notice.md/0
{ "file_path": "website/src/_includes/docs/china-notice.md", "repo_id": "website", "token_count": 49 }
1,312
## Manage your Flutter SDK To learn more about managing your Flutter SDK install, consult the following resources. {% assign doctor = site.data.doctor %} {% assign config = site.data.doctor[include.config] %} {% assign target = include.target | remove: 'mobile-' | downcase %} {% assign devos = include.devos %} {% if target == 'desktop' %} {% assign webtarget = devos | append: '-desktop' | downcase %} {% assign andtarget = devos | downcase %} {% assign target = devos | downcase %} {% elsif target == 'web' %} {% assign andtarget = 'web-on-' | append: devos | downcase %} {% else %} {% assign webtarget = target | append: '-on-' | append: devos | downcase %} {% assign andtarget = devos | downcase %} {% endif %} * [Upgrade Flutter][upgrade] {%- case config.add-android %} {%- when 'Y' %} * [Add Android compilation tools](/platform-integration/android/install-android/install-android-from-{{andtarget}}) {%- endcase %} {%- case config.add-chrome %} {%- when 'Y' %} * [Add Web debugging tools](/platform-integration/web/install-web/install-web-from-{{webtarget}}) {%- endcase %} {%- case config.add-simulator %} {%- when 'Y' %} * [Add iOS simulator or device](/platform-integration/ios/install-ios/install-ios-from-{{target}}) {%- endcase %} {%- case config.add-xcode %} {%- when 'Y' %} * [Add macOS compliation tools](/platform-integration/macos/install-macos/install-macos-from-{{target}}) {%- endcase %} {%- case config.add-linux-tools %} {%- when 'Y' %} * [Add Linux compiliation tools](/platform-integration/linux/install-linux/install-linux-from-{{target}}) {%- endcase %} {%- case config.add-visual-studio %} {%- when 'Y' %} * [Add Windows desktop compiliation tools](/platform-integration/windows/install-windows/install-windows-from-{{target}}) {%- endcase %} * [Uninstall Flutter][uninstall] [upgrade]: /release/upgrade [uninstall]: /get-started/uninstall?tab={{devos}}
website/src/_includes/docs/install/next-steps.md/0
{ "file_path": "website/src/_includes/docs/install/next-steps.md", "repo_id": "website", "token_count": 657 }
1,313
{% assign target = include.target %} {% assign os = include.os %} {% include docs/install/admonitions/install-in-order.md %} ## Verify system requirements To install and run Flutter, your {{os}} environment must meet the following hardware and software requirements. ### Hardware requirements Your {{os}} Flutter development environment must meet the following minimal hardware requirements. <div class="table-wrapper" markdown="1"> | Requirement | Minimum | Recommended | |:-----------------------------|:------------------------------------------------------------------------:|:-------------------:| | x86_64 CPU Cores | 4 | 8 | | Memory in GB | 8 | 16 | | Display resolution in pixels | WXGA (1366 x 768) | FHD (1920 x 1080) | | Free disk space in GB | {% include docs/install/reqs/windows/storage.md target=include.target %} </div> ### Software requirements To write and compile Flutter code for {{include.target}}, you must have the following version of Windows and the listed software packages. #### Operating system Flutter supports {{site.devmin.windows}} or later. These versions of Windows should include the required [Windows PowerShell][] {{site.appmin.powershell}} or later. #### Development tools Download and install the Windows version of the following packages: * [Git for Windows][] {{site.appmin.git_win}} or later to manage source code. {% include docs/install/reqs/windows/software.md target=include.target %} The developers of the preceding software provide support for those products. To troubleshoot installation issues, consult that product's documentation. {% include docs/install/reqs/flutter-sdk/flutter-doctor-precedence.md %} ## Configure a text editor or IDE You can build apps with Flutter using any text editor or integrated development environment (IDE) combined with Flutter's command-line tools. Using an IDE with a Flutter extension or plugin provides code completion, syntax highlighting, widget editing assists, debugging, and other features. Popular options include: * [Visual Studio Code][] {{site.appmin.vscode}} or later with the [Flutter extension for VS Code][]. * [Android Studio][] {{site.appmin.android_studio}} or later with the [Flutter plugin for IntelliJ][]. * [IntelliJ IDEA][] {{site.appmin.intellij_idea}} or later with the [Flutter plugin for IntelliJ][]. {{site.alert.recommend}} The Flutter team recommends installing [Visual Studio Code][] {{site.appmin.vscode}} or later and the [Flutter extension for VS Code][]. This combination simplifies installing the Flutter SDK. {{site.alert.end}} [Android Studio]: https://developer.android.com/studio/install [IntelliJ IDEA]: https://www.jetbrains.com/help/idea/installation-guide.html [Visual Studio Code]: https://code.visualstudio.com/docs/setup/windows [Flutter extension for VS Code]: https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter [Flutter plugin for IntelliJ]: https://plugins.jetbrains.com/plugin/9212-flutter [Windows PowerShell]: https://docs.microsoft.com/powershell/scripting/install/installing-windows-powershell [Git for Windows]: https://gitforwindows.org/
website/src/_includes/docs/install/reqs/windows/base.md/0
{ "file_path": "website/src/_includes/docs/install/reqs/windows/base.md", "repo_id": "website", "token_count": 1223 }
1,314
## Profile or release runs {{site.alert.important}} Do _not_ test the performance of your app with debug and hot reload enabled. {{site.alert.end}} So far you've been running your app in *debug* mode. Debug mode trades performance for useful developer features such as hot reload and step debugging. It's not unexpected to see slow performance and janky animations in debug mode. Once you are ready to analyze performance or release your app, you'll want to use Flutter's "profile" or "release" build modes. For more details, see [Flutter's build modes][]. {{site.alert.important}} If you're concerned about the package size of your app, see [Measuring your app's size][]. {{site.alert.end}} [Flutter's build modes]: /testing/build-modes [Measuring your app's size]: /perf/app-size
website/src/_includes/docs/run-profile.md/0
{ "file_path": "website/src/_includes/docs/run-profile.md", "repo_id": "website", "token_count": 216 }
1,315
require_relative 'code_excerpt_processor' module Jekyll module Converters # This converter does some markdown preprocessing before using [Kramdown] to # do the full markdown conversion (to HTML). # # Currently, the only preprocessing that is done is for code-excerpt # instructions. See [code_excerpt_processor.rb] for details. # module MarkdownWithCodeExcerptsConverterMixin # Ensure subclass sets the following property: # # priority :high def matches(ext) ext =~ /^\.md$/i end def output_ext(_ext) '.html' end end class MarkdownWithCodeExcerpts def initialize(config = {}, code_framer = nil) @config = config @code_framer = code_framer || IdentityCodeFramer.new end def convert(content) @cep ||= DartSite::CodeExcerptProcessor.new(@code_framer) @cep.code_excerpt_processing_init content.gsub!(@cep.code_excerpt_regex) { @cep.process_code_excerpt(Regexp.last_match) } @base_conv ||= Markdown::KramdownParser.new(@config) @base_conv.convert(content) end end class IdentityCodeFramer def frame_code(title, classes, attrs, escaped_code, indent, secondary_class) escaped_code end end end end
website/src/_plugins/markdown_with_code_excerpts.rb/0
{ "file_path": "website/src/_plugins/markdown_with_code_excerpts.rb", "repo_id": "website", "token_count": 554 }
1,316
@use '../base/variables' as *; @use '../vendor/bootstrap'; .site-footer { background-color: $site-color-footer; color: $site-color-white; padding: bootstrap.bs-spacer(5) 0; position: relative; z-index: bootstrap.$zindex-sticky; &__wrapper { align-items: center; display: flex; flex-direction: column; @include bootstrap.media-breakpoint-up(sm) { flex-direction: row; } } &__content { font-size: bootstrap.$font-size-sm; margin: bootstrap.bs-spacer(5) 0; a { color: $site-color-white; } .licenses { font-size: 10px; } @include bootstrap.media-breakpoint-up(sm) { margin: 0 bootstrap.bs-spacer(5); flex-grow: 1; } } &__link-list { list-style: none; padding: 0; li { &:not(:last-child):after { content: '\2022'; // &bull; padding-left: bootstrap.bs-spacer(1); } display: inline; padding-right: bootstrap.bs-spacer(1); } } }
website/src/_sass/components/_footer.scss/0
{ "file_path": "website/src/_sass/components/_footer.scss", "repo_id": "website", "token_count": 455 }
1,317
--- layout: toc title: Add Flutter to Android description: Content covering adding Flutter to existing Android apps. ---
website/src/add-to-app/android/index.md/0
{ "file_path": "website/src/add-to-app/android/index.md", "repo_id": "website", "token_count": 30 }
1,318
<svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"> <path d="M0 0h24v24H0z" fill="none"/> <path d="M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z"/> </svg>
website/src/assets/images/docs/ic_new_releases_black_24px.svg/0
{ "file_path": "website/src/assets/images/docs/ic_new_releases_black_24px.svg", "repo_id": "website", "token_count": 223 }
1,319
--- title: "Implicit animations" description: > Learn how to use Flutter's implicitly animated widgets through interactive examples and exercises. toc: true diff2html: true js: - defer: true url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js - defer: true url: /assets/js/codelabs/animations_examples.js --- <?code-excerpt path-base="animation/implicit"?> Welcome to the implicit animations codelab, where you learn how to use Flutter widgets that make it easy to create animations for a specific set of properties. {% include docs/dartpad-troubleshooting.md %} To get the most out of this codelab, you should have basic knowledge about: - How to [make a Flutter app][]. - How to use [stateful widgets][]. This codelab covers the following material: - Using `AnimatedOpacity` to create a fade-in effect. - Using `AnimatedContainer` to animate transitions in size, color, and margin. - Overview of implicit animations and techniques for using them. **Estimated time to complete this codelab: 15-30 minutes.** ## What are implicit animations? With Flutter's [animation library][], you can add motion and create visual effects for the widgets in your UI. One widget set in the library manages animations for you. These widgets are collectively referred to as _implicit animations_, or _implicitly animated widgets_, deriving their name from the [ImplicitlyAnimatedWidget][] class that they implement. With implicit animations, you can animate a widget property by setting a target value; whenever that target value changes, the widget animates the property from the old value to the new one. In this way, implicit animations trade control for convenience&mdash;they manage animation effects so that you don't have to. ## Example: Fade-in text effect The following example shows how to add a fade-in effect to existing UI using an implicitly animated widget called [AnimatedOpacity][]. **The example begins with no animation code**&mdash;it consists of a [Material App][] home screen containing: - A photograph of an owl. - One **Show details** button that does nothing when clicked. - Description text of the owl in the photograph. ### Fade-in (starter code) To view the example, Click **Run**: {% include docs/implicit-animations/fade-in-starter-code.md %} ### Animate opacity with AnimatedOpacity widget This section contains a list of steps you can use to add an implicit animation to the [fade-in starter code][]. After the steps, you can also run the [fade-in complete][] code with the changes already made. The steps outline how to use the `AnimatedOpacity` widget to add the following animation feature: - The owl's description text remains hidden until the user clicks **Show details**. - When the user clicks **Show details**, the owl's description text fades in. #### 1. Pick a widget property to animate To create a fade-in effect, you can animate the `opacity` property using the`AnimatedOpacity` widget. Wrap the `Column` widget in an `AnimatedOpacity` widget: <?code-excerpt "opacity{1,2}/lib/main.dart"?> ```diff --- opacity1/lib/main.dart +++ opacity2/lib/main.dart @@ -27,12 +27,14 @@ ), onPressed: () => {}, ), - const Column( - children: [ - Text('Type: Owl'), - Text('Age: 39'), - Text('Employment: None'), - ], + AnimatedOpacity( + child: const Column( + children: [ + Text('Type: Owl'), + Text('Age: 39'), + Text('Employment: None'), + ], + ), ) ]); } ``` {{site.alert.info}} You can reference the line numbers in the example code to help track where to make these changes in the [fade-in starter code][]. {{site.alert.end}} #### 2. Initialize a state variable for the animated property To hide the text before the user clicks **Show details**, set the starting value for `opacity` to zero: <?code-excerpt "opacity{2,3}/lib/main.dart"?> ```diff --- opacity2/lib/main.dart +++ opacity3/lib/main.dart @@ -15,6 +15,8 @@ } class _FadeInDemoState extends State<FadeInDemo> { + double opacity = 0; + @override Widget build(BuildContext context) { double height = MediaQuery.of(context).size.height; @@ -28,6 +30,7 @@ onPressed: () => {}, ), AnimatedOpacity( + opacity: opacity, child: const Column( children: [ Text('Type: Owl'), ``` #### 3. Set the duration of the animation In addition to an `opacity` parameter, `AnimatedOpacity` requires a [duration][] to use for its animation. For this example, you can start with 2 seconds: <?code-excerpt "opacity{3,4}/lib/main.dart"?> ```diff --- opacity3/lib/main.dart +++ opacity4/lib/main.dart @@ -30,6 +30,7 @@ onPressed: () => {}, ), AnimatedOpacity( + duration: const Duration(seconds: 2), opacity: opacity, child: const Column( children: [ ``` #### 4. Set up a trigger for animation and choose an end value Configure the animation to trigger when the user clicks **Show details**. To do this, change `opacity` state using the `onPressed()` handler for `TextButton`. To make the `FadeInDemo` widget become fully visible when the user clicks **Show details**, use the `onPressed()` handler to set `opacity` to 1: <?code-excerpt "opacity{4,5}/lib/main.dart"?> ```diff --- opacity4/lib/main.dart +++ opacity5/lib/main.dart @@ -27,7 +27,9 @@ 'Show Details', style: TextStyle(color: Colors.blueAccent), ), - onPressed: () => {}, + onPressed: () => setState(() { + opacity = 1; + }), ), AnimatedOpacity( duration: const Duration(seconds: 2), ``` {{site.alert.secondary}} You only need to set the start and end values of `opacity`. The `AnimatedOpacity` widget manages everything in between. {{site.alert.end}} ### Fade-in (complete) Here's the example with the completed changes you've made. Run this example then click **Show details** to trigger the animation. {% include docs/implicit-animations/fade-in-complete.md %} ### Putting it all together The [Fade-in text effect][] example demonstrates the following features of the `AnimatedOpacity` widget. - It listens for state changes to its `opacity` property. - When the `opacity` property changes, it animates the transition to the new value for `opacity`. - It requires a `duration` parameter to define how long the transition between the values should take. {{site.alert.note}} - Implicit animations can only animate the properties of a parent stateful widget. The preceding example enables this with the `FadeInDemo` widget that extends `StatefulWidget`. - The `AnimatedOpacity` widget only animates the `opacity` property. Some implicitly animated widgets can animate many properties at the same time. The following example showcases this. {{site.alert.end}} ## Example: Shape-shifting effect The following example shows how to use the [`AnimatedContainer`][] widget to animate multiple properties (`margin`, `borderRadius`, and `color`) with different types (`double` and `Color`). **The example begins with no animation code**. It starts with a [Material App][] home screen that contains: - A `Container` widget configured with a `borderRadius`, `margin`, and `color`. These properties are setup to be regenerated each time you run the example. - A **Change** button that does nothing when clicked. ### Shape-shifting (starter code) To start the example, click **Run**. {% include docs/implicit-animations/shape-shifting-starter-code.md %} ### Animate color, borderRadius, and margin with AnimatedContainer This section contains a list of steps you can use to add an implicit animation to the [shape-shifting starter code][]. After completing each step, you can also run the [complete shape-shifting example][] with the changes already made. The [shape-shifting starter code][] assigns each property in the `Container` widget a random value. Associated functions generate the relevant values: - The `randomColor()` function generates a `Color` for the `color` property - The `randomBorderRadius()` function generates a `double` for the `borderRadius` property. - The `randomMargin()` function generates a `double` for the `margin` property. The following steps use the `AnimatedContainer` widget to: - Transition to new values for `color`, `borderRadius`, and `margin` whenever the user clicks **Change**. - Animate the transition to the new values for `color`, `borderRadius`, and `margin` whenever they are set. #### 1. Add an implicit animation Change the `Container` widget to an `AnimatedContainer` widget: <?code-excerpt "container{1,2}/lib/main.dart"?> ```diff --- container1/lib/main.dart +++ container2/lib/main.dart @@ -47,7 +47,7 @@ SizedBox( width: 128, height: 128, - child: Container( + child: AnimatedContainer( margin: EdgeInsets.all(margin), decoration: BoxDecoration( color: color, ``` {{site.alert.info}} You can reference the line numbers in the example code to help track where to make these changes in the [shape-shifting starter code][]. {{site.alert.end}} #### 2. Set starting values for animated properties The `AnimatedContainer` widget transitions between old and new values of its properties when they change. To contain the behavior triggered when the user clicks **Change**, create a `change()` method. The `change()` method can use the `setState()` method to set new values for the `color`, `borderRadius`, and `margin` state variables: <?code-excerpt "container{2,3}/lib/main.dart"?> ```diff --- container2/lib/main.dart +++ container3/lib/main.dart @@ -38,6 +38,14 @@ margin = randomMargin(); } + void change() { + setState(() { + color = randomColor(); + borderRadius = randomBorderRadius(); + margin = randomMargin(); + }); + } + @override Widget build(BuildContext context) { return Scaffold( ``` #### 3. Set up a trigger for the animation To set the animation to trigger whenever the user presses **Change**, invoke the `change()` method in the `onPressed()` handler: <?code-excerpt "container{3,4}/lib/main.dart"?> ```diff --- container3/lib/main.dart +++ container4/lib/main.dart @@ -65,7 +65,7 @@ ), ElevatedButton( child: const Text('Change'), - onPressed: () => {}, + onPressed: () => change(), ), ], ), ``` #### 4. Set duration Set the `duration` of the animation that powers the transition between the old and new values: <?code-excerpt "container{4,5}/lib/main.dart"?> ```diff --- container4/lib/main.dart +++ container5/lib/main.dart @@ -6,6 +6,8 @@ import 'package:flutter/material.dart'; +const _duration = Duration(milliseconds: 400); + double randomBorderRadius() { return Random().nextDouble() * 64; } @@ -61,6 +63,7 @@ color: color, borderRadius: BorderRadius.circular(borderRadius), ), + duration: _duration, ), ), ElevatedButton( ``` ### Shape-shifting (complete) Here's the example with the completed changes you've made. Run the code and click **Change** to trigger the animation. Each time you click **Change**, the shape animates to its new values for `margin`, `borderRadius`, and `color`. {% include docs/implicit-animations/shape-shifting-complete.md %} ### Using animation curves The preceding examples show how: - Implicit animations allow you to animate the transition between values for specific widget properties. - The `duration` parameter allows you to set how long the animation takes to complete. Implicit animations also allow you to control changes to **the rate** of an animation that occurs during the set `duration`. To define this change in rate, set the value of the `curve` parameter to a [`Curve`][], such as one declared in the [`Curves`][] class. The preceding examples did not specify a value for the `curve` parameter. Without a specified curve value, the implicit animations apply a [linear animation curve][]. Specify a value for the `curve` parameter in the [complete shape-shifting example][]. The animation changes when you pass the [`easeInOutBack`][] constant for `curve`, <?code-excerpt "container{5,6}/lib/main.dart"?> ```diff --- container5/lib/main.dart +++ container6/lib/main.dart @@ -64,6 +64,7 @@ borderRadius: BorderRadius.circular(borderRadius), ), duration: _duration, + curve: Curves.easeInOutBack, ), ), ElevatedButton( ``` When you pass the `Curves.easeInOutBack` constant to the `curve` property of the `AnimatedContainer` widget, watch how the rates of change for `margin`, `borderRadius`, and `color` follow the curve that constant defined. <div id="animation_1_play_button_"></div> <video id="animation_1" style="width:464px; height:192px;" loop=""> <source src="{{site.flutter-assets}}/animation/curve_ease_in_out_back.mp4" type="video/mp4"> </video> ### Putting it all together The [complete shape-shifting example][] animates transitions between values for `margin`, `borderRadius`, and `color` properties. The `AnimatedContainer` widget animates changes to any of its properties. These include those you didn't use such as `padding`, `transform`, and even `child` and `alignment`! By showing additional capabilities of implicit animations, the [complete shape-shifting example][] builds upon [fade-in complete][] example. To summarize implicit animations: - Some implicit animations, like the `AnimatedOpacity` widget, only animate one property. Others, like the `AnimatedContainer` widget, can animate many properties. - Implicit animations animate the transition between the old and new value of a property when it changes using the provided `curve` and `duration`. - If you do not specify a `curve`, implicit animations default to a [linear curve][]. ## What's next? Congratulations, you've finished the codelab! To learn more, check out these suggestions: - Try the [animations tutorial][]. - Learn about [hero animations][] and [staggered animations][]. - Checkout the [animation library][]. - Try another [codelab][]. [`AnimatedContainer`]: {{site.api}}/flutter/widgets/AnimatedContainer-class.html [AnimatedOpacity]: {{site.api}}/flutter/widgets/AnimatedOpacity-class.html [animation library]: {{site.api}}/flutter/animation/animation-library.html [animations tutorial]: /ui/animations/tutorial [codelab]: /codelabs [`Curve`]: {{site.api}}/flutter/animation/Curve-class.html [`Curves`]: {{site.api}}/flutter/animation/Curves-class.html [duration]: {{site.api}}/flutter/widgets/ImplicitlyAnimatedWidget/duration.html [`easeInOutBack`]: {{site.api}}/flutter/animation/Curves/easeInOutBack-constant.html [fade-in complete]: #fade-in-complete [fade-in starter code]: #fade-in-starter-code [Fade-in text effect]: #example-fade-in-text-effect [hero animations]: /ui/animations/hero-animations [ImplicitlyAnimatedWidget]: {{site.api}}/flutter/widgets/ImplicitlyAnimatedWidget-class.html [linear animation curve]: {{site.api}}/flutter/animation/Curves/linear-constant.html [linear curve]: {{site.api}}/flutter/animation/Curves/linear-constant.html [make a Flutter app]: {{site.codelabs}}/codelabs/flutter-codelab-first [Material App]: {{site.api}}/flutter/material/MaterialApp-class.html [complete shape-shifting example]: #shape-shifting-complete [shape-shifting starter code]: #shape-shifting-starter-code [staggered animations]: /ui/animations/staggered-animations [stateful widgets]: /ui/interactivity#stateful-and-stateless-widgets
website/src/codelabs/implicit-animations.md/0
{ "file_path": "website/src/codelabs/implicit-animations.md", "repo_id": "website", "token_count": 5363 }
1,320
--- title: Display a snackbar description: How to implement a snackbar to display messages. js: - defer: true url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js --- <?code-excerpt path-base="cookbook/design/snackbars/"?> It can be useful to briefly inform your users when certain actions take place. For example, when a user swipes away a message in a list, you might want to inform them that the message has been deleted. You might even want to give them an option to undo the action. In Material Design, this is the job of a [`SnackBar`][]. This recipe implements a snackbar using the following steps: 1. Create a `Scaffold`. 2. Display a `SnackBar`. 3. Provide an optional action. ## 1. Create a `Scaffold` When creating apps that follow the Material Design guidelines, give your apps a consistent visual structure. In this example, display the `SnackBar` at the bottom of the screen, without overlapping other important widgets, such as the `FloatingActionButton`. The [`Scaffold`][] widget, from the [material library][], creates this visual structure and ensures that important widgets don't overlap. <?code-excerpt "lib/partial.dart (Scaffold)"?> ```dart return MaterialApp( title: 'SnackBar Demo', home: Scaffold( appBar: AppBar( title: const Text('SnackBar Demo'), ), body: const SnackBarPage(), ), ); ``` ## 2. Display a `SnackBar` With the `Scaffold` in place, display a `SnackBar`. First, create a `SnackBar`, then display it using `ScaffoldMessenger`. <?code-excerpt "lib/partial.dart (DisplaySnackBar)"?> ```dart const snackBar = SnackBar( content: Text('Yay! A SnackBar!'), ); // Find the ScaffoldMessenger in the widget tree // and use it to show a SnackBar. ScaffoldMessenger.of(context).showSnackBar(snackBar); ``` {{site.alert.note}} To learn more, watch this short Widget of the Week video on the ScaffoldMessenger widget: <iframe class="full-width" src="{{site.yt.embed}}/lytQi-slT5Y" title="Learn about the ScaffoldMessenger Flutter Widget" {{site.yt.set}}></iframe> {{site.alert.end}} ## 3. Provide an optional action You might want to provide an action to the user when the SnackBar is displayed. For example, if the user accidentally deletes a message, they might use an optional action in the SnackBar to recover the message. Here's an example of providing an additional `action` to the `SnackBar` widget: <?code-excerpt "lib/main.dart (SnackBarAction)"?> ```dart final snackBar = SnackBar( content: const Text('Yay! A SnackBar!'), action: SnackBarAction( label: 'Undo', onPressed: () { // Some code to undo the change. }, ), ); ``` ## Interactive example {{site.alert.note}} In this example, the SnackBar displays when a user taps a button. For more information on working with user input, see the [Gestures][] section of the cookbook. {{site.alert.end}} <?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 SnackBarDemo()); class SnackBarDemo extends StatelessWidget { const SnackBarDemo({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'SnackBar Demo', home: Scaffold( appBar: AppBar( title: const Text('SnackBar Demo'), ), body: const SnackBarPage(), ), ); } } class SnackBarPage extends StatelessWidget { const SnackBarPage({super.key}); @override Widget build(BuildContext context) { return Center( child: ElevatedButton( onPressed: () { final snackBar = SnackBar( content: const Text('Yay! A SnackBar!'), action: SnackBarAction( label: 'Undo', onPressed: () { // Some code to undo the change. }, ), ); // Find the ScaffoldMessenger in the widget tree // and use it to show a SnackBar. ScaffoldMessenger.of(context).showSnackBar(snackBar); }, child: const Text('Show SnackBar'), ), ); } } ``` <noscript> <img src="/assets/images/docs/cookbook/snackbar.gif" alt="SnackBar Demo" class="site-mobile-screenshot" /> </noscript> [Gestures]: /cookbook#gestures [`Scaffold`]: {{site.api}}/flutter/material/Scaffold-class.html [`SnackBar`]: {{site.api}}/flutter/material/SnackBar-class.html [material library]: {{site.api}}/flutter/material/material-library.html
website/src/cookbook/design/snackbars.md/0
{ "file_path": "website/src/cookbook/design/snackbars.md", "repo_id": "website", "token_count": 1661 }
1,321
--- title: Retrieve the value of a text field description: How to retrieve text from a text field. js: - defer: true url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js --- <?code-excerpt path-base="cookbook/forms/retrieve_input"?> In this recipe, learn how to retrieve the text a user has entered into a text field using the following steps: 1. Create a `TextEditingController`. 2. Supply the `TextEditingController` to a `TextField`. 3. Display the current value of the text field. ## 1. Create a `TextEditingController` To retrieve the text a user has entered into a text field, create a [`TextEditingController`][] and supply it to a `TextField` or `TextFormField`. {{site.alert.secondary}} **Important:** Call `dispose` of the `TextEditingController` when you've finished using it. This ensures that you discard any resources used by the object. {{site.alert.end}} <?code-excerpt "lib/starter.dart (Starter)" remove="return Container();"?> ```dart // Define a custom Form widget. class MyCustomForm extends StatefulWidget { const MyCustomForm({super.key}); @override State<MyCustomForm> createState() => _MyCustomFormState(); } // Define a corresponding State class. // This class holds the data related to the Form. class _MyCustomFormState extends State<MyCustomForm> { // Create a text controller and use it to retrieve the current value // of the TextField. final myController = TextEditingController(); @override void dispose() { // Clean up the controller when the widget is disposed. myController.dispose(); super.dispose(); } @override Widget build(BuildContext context) { // Fill this out in the next step. } } ``` ## 2. Supply the `TextEditingController` to a `TextField` Now that you have a `TextEditingController`, wire it up to a text field using the `controller` property: <?code-excerpt "lib/step2.dart (TextFieldController)"?> ```dart return TextField( controller: myController, ); ``` ## 3. Display the current value of the text field After supplying the `TextEditingController` to the text field, begin reading values. Use the [`text()`][] method provided by the `TextEditingController` to retrieve the String that the user has entered into the text field. The following code displays an alert dialog with the current value of the text field when the user taps a floating action button. <?code-excerpt "lib/step3.dart (FloatingActionButton)" replace="/^floatingActionButton\: //g"?> ```dart FloatingActionButton( // When the user presses the button, show an alert dialog containing // the text that the user has entered into the text field. onPressed: () { showDialog( context: context, builder: (context) { return AlertDialog( // Retrieve the text that the user has entered by using the // TextEditingController. content: Text(myController.text), ); }, ); }, tooltip: 'Show me the value!', child: const Icon(Icons.text_fields), ), ``` ## 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()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp( title: 'Retrieve Text Input', home: MyCustomForm(), ); } } // Define a custom Form widget. class MyCustomForm extends StatefulWidget { const MyCustomForm({super.key}); @override State<MyCustomForm> createState() => _MyCustomFormState(); } // Define a corresponding State class. // This class holds the data related to the Form. class _MyCustomFormState extends State<MyCustomForm> { // Create a text controller and use it to retrieve the current value // of the TextField. final myController = TextEditingController(); @override void dispose() { // Clean up the controller when the widget is disposed. myController.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Retrieve Text Input'), ), body: Padding( padding: const EdgeInsets.all(16), child: TextField( controller: myController, ), ), floatingActionButton: FloatingActionButton( // When the user presses the button, show an alert dialog containing // the text that the user has entered into the text field. onPressed: () { showDialog( context: context, builder: (context) { return AlertDialog( // Retrieve the text the that user has entered by using the // TextEditingController. content: Text(myController.text), ); }, ); }, tooltip: 'Show me the value!', child: const Icon(Icons.text_fields), ), ); } } ``` <noscript> <img src="/assets/images/docs/cookbook/retrieve-input.gif" alt="Retrieve Text Input Demo" class="site-mobile-screenshot" /> </noscript> [`text()`]: {{site.api}}/flutter/widgets/TextEditingController/text.html [`TextEditingController`]: {{site.api}}/flutter/widgets/TextEditingController-class.html
website/src/cookbook/forms/retrieve-input.md/0
{ "file_path": "website/src/cookbook/forms/retrieve-input.md", "repo_id": "website", "token_count": 1845 }
1,322
--- title: Cookbook description: > The Flutter cookbook provides recipes for many commonly performed tasks. show_breadcrumbs: false --- This cookbook contains recipes that demonstrate how to solve common problems while writing Flutter apps. Each recipe is self-contained and can be used as a reference to help you build up an application. ## Animation - [Animate a page route transition](/cookbook/animation/page-route-animation) - [Animate a widget using a physics simulation](/cookbook/animation/physics-simulation) - [Animate the properties of a container](/cookbook/animation/animated-container) - [Fade a widget in and out](/cookbook/animation/opacity-animation) ## Design - [Add a drawer to a screen](/cookbook/design/drawer) - [Display a snackbar](/cookbook/design/snackbars) - [Export fonts from a package](/cookbook/design/package-fonts) - [Update the UI based on orientation](/cookbook/design/orientation) - [Use a custom font](/cookbook/design/fonts) - [Use themes to share colors and font styles](/cookbook/design/themes) - [Work with tabs](/cookbook/design/tabs) ## Effects - [Create a download button](/cookbook/effects/download-button) - [Create a nested navigation flow](/cookbook/effects/nested-nav) - [Create a photo filter carousel](/cookbook/effects/photo-filter-carousel) - [Create a scrolling parallax effect](/cookbook/effects/parallax-scrolling) - [Create a shimmer loading effect](/cookbook/effects/shimmer-loading) - [Create a staggered menu animation](/cookbook/effects/staggered-menu-animation) - [Create a typing indicator](/cookbook/effects/typing-indicator) - [Create an expandable FAB](/cookbook/effects/expandable-fab) - [Create gradient chat bubbles](/cookbook/effects/gradient-bubbles) - [Drag a UI element](/cookbook/effects/drag-a-widget) ## Forms - [Build a form with validation](/cookbook/forms/validation) - [Create and style a text field](/cookbook/forms/text-input) - [Focus and text fields](/cookbook/forms/focus) - [Handle changes to a text field](/cookbook/forms/text-field-changes) - [Retrieve the value of a text field](/cookbook/forms/retrieve-input) ## Games - [Add achievements and leaderboards to your mobile game](/cookbook/games/achievements-leaderboard) - [Add multiplayer support via Firestore](/cookbook/games/firestore-multiplayer) - [Add ads to your mobile Flutter app or game](/cookbook/plugins/google-mobile-ads) ## Gestures - [Add Material touch ripples](/cookbook/gestures/ripples) - [Handle taps](/cookbook/gestures/handling-taps) - [Implement swipe to dismiss](/cookbook/gestures/dismissible) ## Images - [Display images from the internet](/cookbook/images/network-image) - [Fade in images with a placeholder](/cookbook/images/fading-in-images) ## Lists - [Create a grid list](/cookbook/lists/grid-lists) - [Create a horizontal list](/cookbook/lists/horizontal-list) - [Create lists with different types of items](/cookbook/lists/mixed-list) - [Place a floating app bar above a list](/cookbook/lists/floating-app-bar) - [Use lists](/cookbook/lists/basic-list) - [Work with long lists](/cookbook/lists/long-lists) - [Create a list with spaced items](/cookbook/lists/spaced-items) ## Maintenance - [Report errors to a service](/cookbook/maintenance/error-reporting) ## Navigation - [Animate a widget across screens](/cookbook/navigation/hero-animations) - [Navigate to a new screen and back](/cookbook/navigation/navigation-basics) - [Navigate with named routes](/cookbook/navigation/named-routes) - [Pass arguments to a named route](/cookbook/navigation/navigate-with-arguments) - [Set up app links for Android](/cookbook/navigation/set-up-app-links) - [Set up universal links for iOS](/cookbook/navigation/set-up-universal-links) - [Return data from a screen](/cookbook/navigation/returning-data) - [Send data to a new screen](/cookbook/navigation/passing-data) ## Networking - [Fetch data from the internet](/cookbook/networking/fetch-data) - [Make authenticated requests](/cookbook/networking/authenticated-requests) - [Send data to the internet](/cookbook/networking/send-data) - [Update data over the internet](/cookbook/networking/update-data) - [Delete data on the internet](/cookbook/networking/delete-data) - [Communicate with WebSockets](/cookbook/networking/web-sockets) - [Parse JSON in the background](/cookbook/networking/background-parsing) ## Persistence - [Persist data with SQLite](/cookbook/persistence/sqlite) - [Read and write files](/cookbook/persistence/reading-writing-files) - [Store key-value data on disk](/cookbook/persistence/key-value) ## Plugins - [Play and pause a video](/cookbook/plugins/play-video) - [Add ads to your mobile Flutter app or game](/cookbook/plugins/google-mobile-ads) - [Take a picture using the camera](/cookbook/plugins/picture-using-camera) ## Testing ### Integration - [An introduction to integration testing](/cookbook/testing/integration/introduction) - [Performance profiling](/cookbook/testing/integration/profiling) ### Unit - [An introduction to unit testing](/cookbook/testing/unit/introduction) - [Mock dependencies using Mockito](/cookbook/testing/unit/mocking) ### Widget - [An introduction to widget testing](/cookbook/testing/widget/introduction) - [Find widgets](/cookbook/testing/widget/finders) - [Handle scrolling](/cookbook/testing/widget/scrolling) - [Tap, drag, and enter text](/cookbook/testing/widget/tap-drag)
website/src/cookbook/index.md/0
{ "file_path": "website/src/cookbook/index.md", "repo_id": "website", "token_count": 1649 }
1,323
--- title: Send data to a new screen description: How to pass data to a new route. js: - defer: true url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js --- <?code-excerpt path-base="cookbook/navigation/passing_data"?> Often, you not only want to navigate to a new screen, but also pass data to the screen as well. For example, you might want to pass information about the item that's been tapped. Remember: Screens are just widgets. In this example, create a list of todos. When a todo is tapped, navigate to a new screen (widget) that displays information about the todo. This recipe uses the following steps: 1. Define a todo class. 2. Display a list of todos. 3. Create a detail screen that can display information about a todo. 4. Navigate and pass data to the detail screen. ## 1. Define a todo class First, you need a simple way to represent todos. For this example, create a class that contains two pieces of data: the title and description. <?code-excerpt "lib/main.dart (Todo)"?> ```dart class Todo { final String title; final String description; const Todo(this.title, this.description); } ``` ## 2. Create a list of todos Second, display a list of todos. In this example, generate 20 todos and show them using a ListView. For more information on working with lists, see the [Use lists][] recipe. ### Generate the list of todos <?code-excerpt "lib/main.dart (Generate)" replace="/^todos:/final todos =/g;/,$/;/g"?> ```dart final todos = List.generate( 20, (i) => Todo( 'Todo $i', 'A description of what needs to be done for Todo $i', ), ); ``` ### Display the list of todos using a ListView <?code-excerpt "lib/main_todoscreen.dart (ListViewBuilder)" replace="/^body: //g;/;$//g"?> ```dart ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), ); }, ), ``` So far, so good. This generates 20 todos and displays them in a ListView. ## 3. Create a Todo screen to display the list For this, we create a `StatelessWidget`. We call it `TodosScreen`. Since the contents of this page won't change during runtime, we'll have to require the list of todos within the scope of this widget. We pass in our `ListView.builder` as body of the widget we're returning to `build()`. This'll render the list on to the screen for you to get going! <?code-excerpt "lib/main_todoscreen.dart (TodosScreen)"?> ```dart class TodosScreen extends StatelessWidget { // Requiring the list of todos. const TodosScreen({super.key, required this.todos}); final List<Todo> todos; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Todos'), ), //passing in the ListView.builder body: ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), ); }, ), ); } } ``` With Flutter's default styling, you're good to go without sweating about things that you'd like to do later on! ## 4. Create a detail screen to display information about a todo Now, create the second screen. The title of the screen contains the title of the todo, and the body of the screen shows the description. Since the detail screen is a normal `StatelessWidget`, require the user to enter a `Todo` in the UI. Then, build the UI using the given todo. <?code-excerpt "lib/main.dart (detail)"?> ```dart class DetailScreen extends StatelessWidget { // In the constructor, require a Todo. const DetailScreen({super.key, required this.todo}); // Declare a field that holds the Todo. final Todo todo; @override Widget build(BuildContext context) { // Use the Todo to create the UI. return Scaffold( appBar: AppBar( title: Text(todo.title), ), body: Padding( padding: const EdgeInsets.all(16), child: Text(todo.description), ), ); } } ``` ## 5. Navigate and pass data to the detail screen With a `DetailScreen` in place, you're ready to perform the Navigation. In this example, navigate to the `DetailScreen` when a user taps a todo in the list. Pass the todo to the `DetailScreen`. To capture the user's tap in the `TodosScreen`, write an [`onTap()`][] callback for the `ListTile` widget. Within the `onTap()` callback, use the [`Navigator.push()`][] method. <?code-excerpt "lib/main.dart (builder)"?> ```dart body: ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), // When a user taps the ListTile, navigate to the DetailScreen. // Notice that you're not only creating a DetailScreen, you're // also passing the current todo through to it. onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => DetailScreen(todo: todos[index]), ), ); }, ); }, ), ``` ### 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'; class Todo { final String title; final String description; const Todo(this.title, this.description); } void main() { runApp( MaterialApp( title: 'Passing Data', home: TodosScreen( todos: List.generate( 20, (i) => Todo( 'Todo $i', 'A description of what needs to be done for Todo $i', ), ), ), ), ); } class TodosScreen extends StatelessWidget { const TodosScreen({super.key, required this.todos}); final List<Todo> todos; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Todos'), ), body: ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), // When a user taps the ListTile, navigate to the DetailScreen. // Notice that you're not only creating a DetailScreen, you're // also passing the current todo through to it. onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => DetailScreen(todo: todos[index]), ), ); }, ); }, ), ); } } class DetailScreen extends StatelessWidget { // In the constructor, require a Todo. const DetailScreen({super.key, required this.todo}); // Declare a field that holds the Todo. final Todo todo; @override Widget build(BuildContext context) { // Use the Todo to create the UI. return Scaffold( appBar: AppBar( title: Text(todo.title), ), body: Padding( padding: const EdgeInsets.all(16), child: Text(todo.description), ), ); } } ``` ## Alternatively, pass the arguments using RouteSettings Repeat the first two steps. ### Create a detail screen to extract the arguments Next, create a detail screen that extracts and displays the title and description from the `Todo`. To access the `Todo`, use the [`ModalRoute.of()`][] method. This method returns the current route with the arguments. <?code-excerpt "lib/main_routesettings.dart (DetailScreen)"?> ```dart class DetailScreen extends StatelessWidget { const DetailScreen({super.key}); @override Widget build(BuildContext context) { final todo = ModalRoute.of(context)!.settings.arguments as Todo; // Use the Todo to create the UI. return Scaffold( appBar: AppBar( title: Text(todo.title), ), body: Padding( padding: const EdgeInsets.all(16), child: Text(todo.description), ), ); } } ``` ### Navigate and pass the arguments to the detail screen Finally, navigate to the `DetailScreen` when a user taps a `ListTile` widget using `Navigator.push()`. Pass the arguments as part of the [`RouteSettings`][]. The `DetailScreen` extracts these arguments. <?code-excerpt "lib/main_routesettings.dart (builder)" replace="/^body: //g;/,$//g"?> ```dart ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), // When a user taps the ListTile, navigate to the DetailScreen. // Notice that you're not only creating a DetailScreen, you're // also passing the current todo through to it. onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => const DetailScreen(), // Pass the arguments as part of the RouteSettings. The // DetailScreen reads the arguments from these settings. settings: RouteSettings( arguments: todos[index], ), ), ); }, ); }, ) ``` ### Complete example <?code-excerpt "lib/main_routesettings.dart"?> ```dart import 'package:flutter/material.dart'; class Todo { final String title; final String description; const Todo(this.title, this.description); } void main() { runApp( MaterialApp( title: 'Passing Data', home: TodosScreen( todos: List.generate( 20, (i) => Todo( 'Todo $i', 'A description of what needs to be done for Todo $i', ), ), ), ), ); } class TodosScreen extends StatelessWidget { const TodosScreen({super.key, required this.todos}); final List<Todo> todos; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Todos'), ), body: ListView.builder( itemCount: todos.length, itemBuilder: (context, index) { return ListTile( title: Text(todos[index].title), // When a user taps the ListTile, navigate to the DetailScreen. // Notice that you're not only creating a DetailScreen, you're // also passing the current todo through to it. onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => const DetailScreen(), // Pass the arguments as part of the RouteSettings. The // DetailScreen reads the arguments from these settings. settings: RouteSettings( arguments: todos[index], ), ), ); }, ); }, ), ); } } class DetailScreen extends StatelessWidget { const DetailScreen({super.key}); @override Widget build(BuildContext context) { final todo = ModalRoute.of(context)!.settings.arguments as Todo; // Use the Todo to create the UI. return Scaffold( appBar: AppBar( title: Text(todo.title), ), body: Padding( padding: const EdgeInsets.all(16), child: Text(todo.description), ), ); } } ``` <noscript> <img src="/assets/images/docs/cookbook/passing-data.gif" alt="Passing Data Demo" class="site-mobile-screenshot" /> </noscript> [`ModalRoute.of()`]: {{site.api}}/flutter/widgets/ModalRoute/of.html [`Navigator.push()`]: {{site.api}}/flutter/widgets/Navigator/push.html [`onTap()`]: {{site.api}}/flutter/material/ListTile/onTap.html [`RouteSettings`]: {{site.api}}/flutter/widgets/RouteSettings-class.html [Use lists]: /cookbook/lists/basic-list
website/src/cookbook/navigation/passing-data.md/0
{ "file_path": "website/src/cookbook/navigation/passing-data.md", "repo_id": "website", "token_count": 4644 }
1,324
--- title: Add ads to your mobile Flutter app or game short-title: Show ads description: How to use the google_mobile_ads package to show ads in Flutter. --- <?code-excerpt path-base="cookbook/plugins/google_mobile_ads"?> {% comment %} This partly duplicates the AdMob documentation here: https://developers.google.com/admob/flutter/quick-start The added value of this page is that it's more straightforward for someone who just has a Flutter app or game and wants to add monetization to it. In short, this is a friendlier --- though not as comprehensive --- introduction to ads in Flutter. {% endcomment %} Many developers use advertising to monetize their mobile apps and games. This allows their app to be downloaded free of charge, which improves the app's popularity. ![An illustration of a smartphone showing an ad](/assets/images/docs/cookbook/ads-device.jpg){:.site-illustration} To add ads to your Flutter project, use [AdMob](https://admob.google.com/home/), Google's mobile advertising platform. This recipe demonstrates how to use the [`google_mobile_ads`]({{site.pub-pkg}}/google_mobile_ads) package to add a banner ad to your app or game. {{site.alert.note}} Apart from AdMob, the `google_mobile_ads` package also supports Ad Manager, a platform intended for large publishers. Integrating Ad Manager resembles integrating AdMob, but it won't be covered in this cookbook recipe. To use Ad Manager, follow the [Ad Manager documentation]({{site.developers}}/ad-manager/mobile-ads-sdk/flutter/quick-start). {{site.alert.end}} ## 1. Get AdMob App IDs 1. Go to [AdMob](https://admob.google.com/) and set up an account. This could take some time because you need to provide banking information, sign contracts, and so on. 2. With the AdMob account ready, create two *Apps* in AdMob: one for Android and one for iOS. 3. Open the **App settings** section. 4. Get the AdMob *App IDs* for both the Android app and the iOS app. They resemble `ca-app-pub-1234567890123456~1234567890`. Note the tilde (`~`) between the two numbers. {% comment %} https://support.google.com/admob/answer/7356431 for future reference {% endcomment %} ![Screenshot from AdMob showing the location of the App ID](/assets/images/docs/cookbook/ads-app-id.png) ## 2. Platform-specific setup Update your Android and iOS configurations to include your App IDs. {% comment %} Content below is more or less a copypaste from devsite: https://developers.google.com/admob/flutter/quick-start#platform_specific_setup {% endcomment %} ### Android Add your AdMob app ID to your Android app. 1. Open the app's `android/app/src/main/AndroidManifest.xml` file. 2. Add a new `<meta-data>` tag. 3. Set the `android:name` element with a value of `com.google.android.gms.ads.APPLICATION_ID`. 4. Set the `android:value` element with the value to your own AdMob app ID that you got in the previous step. Include them in quotes as shown: ```xml <manifest> <application> ... <!-- Sample AdMob app ID: ca-app-pub-3940256099942544~3347511713 --> <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/> </application> </manifest> ``` ### iOS Add your AdMob app ID to your iOS app. 1. Open your app's `ios/Runner/Info.plist` file. 2. Enclose `GADApplicationIdentifier` with a `key` tag. 3. Enclose your AdMob app ID with a `string` tag. You created this AdMob App ID in [step 1](#1-get-admob-app-ids). ```xml <key>GADApplicationIdentifier</key> <string>ca-app-pub-################~##########</string> ``` ## 3. Add the `google_mobile_ads` plugin To add the `google_mobile_ads` plugin as a dependency, run `flutter pub add`: ```terminal $ flutter pub add google_mobile_ads ``` {{site.alert.note}} Once you add the plugin, your Android app might fail to build with a `DexArchiveMergerException`: ```text Error while merging dex archives: The number of method references in a .dex file cannot exceed 64K. ``` To resolve this, execute the `flutter run` command in the terminal, not through an IDE plugin. The `flutter` tool can detect the issue and ask whether it should try to solve it. Answer `y`, and the problem goes away. You can return to running your app from an IDE after that. ![Screenshot of the `flutter` tool asking about multidex support](/assets/images/docs/cookbook/ads-multidex.png) {{site.alert.end}} ## 4. Initialize the Mobile Ads SDK You need to initialize the Mobile Ads SDK before loading ads. 1. Call `MobileAds.instance.initialize()` to initialize the Mobile Ads SDK. <?code-excerpt "lib/main.dart (main)"?> ```dart void main() async { WidgetsFlutterBinding.ensureInitialized(); unawaited(MobileAds.instance.initialize()); runApp(MyApp()); } ``` Run the initialization step at startup, as shown above, so that the AdMob SDK has enough time to initialize before it is needed. {{site.alert.note}} `MobileAds.instance.initialize()` returns a `Future` but, the way the SDK is built, you don't need to `await` it. If you try to load an ad before that `Future` is completed, the SDK will gracefully wait until the initialization, and _then_ load the ad. You can await the `Future` if you want to know the exact time when the AdMob SDK is ready. {{site.alert.end}} ## 5. Load a banner ad To show an ad, you need to request it from AdMob. To load a banner ad, construct a `BannerAd` instance, and call `load()` on it. {{site.alert.note}} The following code snippet refers to fields such a `adSize`, `adUnitId` and `_bannerAd`. This will all make more sense in a later step. {{site.alert.end}} <?code-excerpt "lib/my_banner_ad.dart (loadAd)"?> ```dart /// Loads a banner ad. void _loadAd() { final bannerAd = BannerAd( size: widget.adSize, adUnitId: widget.adUnitId, request: const AdRequest(), listener: BannerAdListener( // Called when an ad is successfully received. onAdLoaded: (ad) { if (!mounted) { ad.dispose(); return; } setState(() { _bannerAd = ad as BannerAd; }); }, // Called when an ad request failed. onAdFailedToLoad: (ad, error) { debugPrint('BannerAd failed to load: $error'); ad.dispose(); }, ), ); // Start loading. bannerAd.load(); } ``` To view a complete example, check out the last step of this recipe. ## 6. Show banner ad Once you have a loaded instance of `BannerAd`, use `AdWidget` to show it. ```dart AdWidget(ad: _bannerAd) ``` It's a good idea to wrap the widget in a `SafeArea` (so that no part of the ad is obstructed by device notches) and a `SizedBox` (so that it has its specified, constant size before and after loading). <?code-excerpt "lib/my_banner_ad.dart (build)"?> ```dart @override Widget build(BuildContext context) { return SafeArea( child: SizedBox( width: widget.adSize.width.toDouble(), height: widget.adSize.height.toDouble(), child: _bannerAd == null // Nothing to render yet. ? SizedBox() // The actual ad. : AdWidget(ad: _bannerAd!), ), ); } ``` You must dispose of an ad when you no longer need to access it. The best practice for when to call `dispose()` is either after the `AdWidget` is removed from the widget tree or in the `BannerAdListener.onAdFailedToLoad()` callback. <?code-excerpt "lib/my_banner_ad.dart (dispose)"?> ```dart _bannerAd?.dispose(); ``` ## 7. Configure ads To show anything beyond test ads, you have to register ad units. 1. Open [AdMob](https://admob.google.com/). 2. Create an *Ad unit* for each of the AdMob apps. ![Screenshot of the location of Ad Units in AdMob web UI](/assets/images/docs/cookbook/ads-ad-unit.png) This asks for the Ad unit's format. AdMob provides many formats beyond banner ads --- interstitials, rewarded ads, app open ads, and so on. The API for those is similar, and documented in the [AdMob documentation]({{site.developers}}/admob/flutter/quick-start) and through [official samples](https://github.com/googleads/googleads-mobile-flutter/tree/main/samples/admob). 3. Choose banner ads. 4. Get the *Ad unit IDs* for both the Android app and the iOS app. You can find these in the **Ad units** section. They look something like `ca-app-pub-1234567890123456/1234567890`. The format resembles the *App ID* but with a slash (`/`) between the two numbers. This distinguishes an *Ad unit ID* from an *App ID*. ![Screenshot of an Ad Unit ID in AdMob web UI](/assets/images/docs/cookbook/ads-ad-unit-id.png) 5. Add these *Ad unit IDs* to the constructor of `BannerAd`, depending on the target app platform. <?code-excerpt "lib/my_banner_ad.dart (adUnitId)"?> ```dart final String adUnitId = Platform.isAndroid // Use this ad unit on Android... ? 'ca-app-pub-3940256099942544/6300978111' // ... or this one on iOS. : 'ca-app-pub-3940256099942544/2934735716'; ``` ## 8. Final touches To display the ads in a published app or game (as opposed to debug or testing scenarios), your app must meet additional requirements: 1. Your app must be reviewed and approved before it can fully serve ads. Follow AdMob's [app readiness guidelines](https://support.google.com/admob/answer/10564477). For example, your app must be listed on at least one of the supported stores such as Google Play Store or Apple App Store. 2. You must [create an `app-ads.txt`](https://support.google.com/admob/answer/9363762) file and publish it on your developer website. ![An illustration of a smartphone showing an ad](/assets/images/docs/cookbook/ads-device.jpg){:.site-illustration} To learn more about app and game monetization, visit the official sites of [AdMob](https://admob.google.com/) and [Ad Manager](https://admanager.google.com/). ## 9. Complete example The following code implements a simple stateful widget that loads a banner ad and shows it. <?code-excerpt "lib/my_banner_ad.dart"?> ```dart import 'dart:io'; import 'package:flutter/widgets.dart'; import 'package:google_mobile_ads/google_mobile_ads.dart'; class MyBannerAdWidget extends StatefulWidget { /// The requested size of the banner. Defaults to [AdSize.banner]. final AdSize adSize; /// The AdMob ad unit to show. /// /// TODO: replace this test ad unit with your own ad unit final String adUnitId = Platform.isAndroid // Use this ad unit on Android... ? 'ca-app-pub-3940256099942544/6300978111' // ... or this one on iOS. : 'ca-app-pub-3940256099942544/2934735716'; MyBannerAdWidget({ super.key, this.adSize = AdSize.banner, }); @override State<MyBannerAdWidget> createState() => _MyBannerAdWidgetState(); } class _MyBannerAdWidgetState extends State<MyBannerAdWidget> { /// The banner ad to show. This is `null` until the ad is actually loaded. BannerAd? _bannerAd; @override Widget build(BuildContext context) { return SafeArea( child: SizedBox( width: widget.adSize.width.toDouble(), height: widget.adSize.height.toDouble(), child: _bannerAd == null // Nothing to render yet. ? SizedBox() // The actual ad. : AdWidget(ad: _bannerAd!), ), ); } @override void initState() { super.initState(); _loadAd(); } @override void dispose() { _bannerAd?.dispose(); super.dispose(); } /// Loads a banner ad. void _loadAd() { final bannerAd = BannerAd( size: widget.adSize, adUnitId: widget.adUnitId, request: const AdRequest(), listener: BannerAdListener( // Called when an ad is successfully received. onAdLoaded: (ad) { if (!mounted) { ad.dispose(); return; } setState(() { _bannerAd = ad as BannerAd; }); }, // Called when an ad request failed. onAdFailedToLoad: (ad, error) { debugPrint('BannerAd failed to load: $error'); ad.dispose(); }, ), ); // Start loading. bannerAd.load(); } } ``` {{site.alert.tip}} In many cases, you will want to load the ad _outside_ a widget. For example, you can load it in a `ChangeNotifier`, a BLoC, a controller, or whatever else you are using for app-level state. This way, you can preload a banner ad in advance, and have it ready to show for when the user navigates to a new screen. Verify that you have loaded the `BannerAd` instance before showing it with an `AdWidget`, and that you dispose of the instance when it is no longer needed. {{site.alert.end}}
website/src/cookbook/plugins/google-mobile-ads.md/0
{ "file_path": "website/src/cookbook/plugins/google-mobile-ads.md", "repo_id": "website", "token_count": 4659 }
1,325
--- title: Who is Dash? description: Learn more about the Flutter and Dart mascot, Dash. --- This is Dash: ![Dash by herself](/assets/images/dash/Dash.png){:width="50%"}<br> Dash is the mascot for the Dart language and the Flutter framework. {{site.alert.note}} You can now make your **own** digital Dash using [Dashatar][], a Flutter app for web and mobile! {{site.alert.end}} ![A sample of Dashatars](/assets/images/dash/Dashatars.png){:width="100%"}<br> ![GIF of Dash fainting created for Flutter Engage](/assets/images/dash/dash-fainting.gif) [Dashatar]: https://dashatar-dev.web.app/#/ ## How did it all start? As soon as Shams Zakhour started working as a Dart writer at Google in December 2013, she started advocating for a Dart mascot. After documenting Java for 14 years, she had observed how beloved the Java mascot, [Duke][], had become, and she wanted something similar for Dart. [Duke]: https://www.oracle.com/java/duke.html But the idea didn't gain momentum until 2017, when one of the Flutter engineers, Nina Chen, suggested it on an internal mailing list. The Flutter VP at the time, Joshy Joseph, approved the idea and asked the organizer for the [2018 Dart Conference][], Linda Rasmussen, to make it happen. [2018 Dart Conference]: https://events.dartlang.org/2018/dartconf/ Once Shams heard about these plans, she rushed to Linda and asked to own and drive the project to produce the plushies for the conference. Linda had already elicited some design sketches, which she handed off. Starting with the sketches, Shams located a vendor who could work within an aggressive deadline (competing with Lunar New Year), and started the process of creating the specs for the plushy. That's right, Dash was originally a **Dart** mascot, not a Flutter mascot. Here are some early mockups and one of the first prototypes: ![1st mockup made by Novicell.dk](/assets/images/dash/early-dash-sketches.png){:width="35%"} ![2nd mockup by Squishable.com](/assets/images/dash/early-dash-sketches2.jpg){:width="35%"}<br> ![Prototype 1](/assets/images/dash/early-dash-sketches3.jpg){:width="35%"} ![Playing with embroidery ideas](/assets/images/dash/early-dash-sketches4.jpg){:width="35%"}<br> ![First prototype](/assets/images/dash/early-dash-sketches5.jpg){:width="50%"}<br> The first prototype had uneven eyes ## Why a hummingbird? Early on, a hummingbird image was created for the Dart team to use for presentations and the web. The hummingbird represents that Dart is a speedy language. ![Early hummingbird drawing](/assets/images/dash/DartHummingbird.jpg){:width="35%"}<br> However, hummingbirds are pointed and angular and we wanted a cuddly plushy, so we chose a round hummingbird. Shams specified which color would go where, the tail shape, the tuft of hair, the eyes...all the little details. The vendor sent the specs to two manufacturers who returned the prototypes some weeks later. ![The first Dash prototypes](/assets/images/dash/dash-prototypes.jpg){:width="35%"} ![The first Dash prototypes](/assets/images/dash/dash-prototypes2.jpg){:width="35%"}<br> Introducing Dash at the January 2018 Dart Conference. <iframe width="541" height="350" src="{{site.yt.embed}}/R5vIUjRZaZA" title="Introducing Dash at the January 2018 Dart Conference" {{site.yt.set}}></iframe> While the manufacturing process was proceeding, Shams chose a name for the plushy: Dash, because it was an early code name for the Dart project, it was gender neutral, and it seemed appropriate for a hummingbird. Many boxes of Dash plushies arrived in southern California just in time for the conference. They were eagerly adopted by Dart _and_ Flutter enthusiasts. The people have spoken, so Dash is now the mascot for Flutter **and** Dart. ![Dash 1.0](/assets/images/dash/dash-1.0.jpg){:width="35%"}<br> Dash 1.0 ![Piles of Dashes awaiting conference goers](/assets/images/dash/dash-conference-swag.jpg){:width="50%"}<br> Conference swag Since the creation of Dash 1.0, we've made two more versions. Marketing slightly changed the Dart and Flutter color scheme after Dash 1.0 was created, so Dash 2.0 reflects the updated scheme (which removed the green color). Dash 2.1 is a smaller size and has a few more color tweaks. The smaller size is easier to ship, and fits better in a claw machine! ![Dash 2.0 and 2.1](/assets/images/dash/BigDashAndLittleDash.png){:width="50%"}<br> Dash 2.0 and 2.1 ![Flutter Interact claw machine](/assets/images/dash/DashClawMachine.png){:width="50%"}<br> ## Dash facts * Dash is female, but she doesn't mind being called _they_, _their_, _he_, or _him_. * Dash has an [Instagram account][]. * Dash has a **straight** beak. **Please, don't depict Dash with a curved beak.** * We also have Mega-Dash, a life-sized mascot who is currently resting in a Google office. ![Mega-Dash in the office](/assets/images/dash/MegaDashChilling.png){:width="50%"} Mega-Dash made her first appearance at the [Flutter Interact][] event in Brooklyn, New York, on December 11, 2019. <iframe width="560" height="315" src="{{site.yt.embed}}/EgBMGDtHZhE" title="Watch the Flutter Interact 2019 highlights" {{site.yt.set}}></iframe> * We also have a Dash puppet that Shams made from one of the first plushies. ![Nilay and the Dash puppet](/assets/images/dash/NilayDashPuppet.png){:width="50%"} A number of our YouTube videos feature the Dash puppet, voiced by Emily Fortuna, one of the early (and much loved) Flutter Developer Advocates. <iframe width="560" height="315" src="{{site.yt.embed}}/oyy_1CjNdBU" title="Building DashCast, a Flutter-based podcast app" {{site.yt.set}}></iframe> <iframe width="560" height="315" src="{{site.yt.embed}}/dsiLVNDJ3t0" title="Revisiting DashCast, a Flutter-based podcast app" {{site.yt.set}}></iframe> <br> !["Born to Hot Reload" jacket](/assets/images/dash/ShamsDashJacket.png){:width="35%"}<br> [Flutter Interact]: {{site.yt.playlist}}PLjxrf2q8roU0o0wKRJTjyN0pSUA6TI8lg [Instagram account]: https://www.instagram.com/dash_the_dartlang_plushy/
website/src/dash/index.md/0
{ "file_path": "website/src/dash/index.md", "repo_id": "website", "token_count": 1922 }
1,326
--- title: Create flavors of a Flutter app short-title: Flavors description: > How to create build flavors specific to different release types or development environments. --- ## What are flavors Have you ever wondered how to set up different environments in your Flutter app? Flavors (known as _build configurations_ in iOS and macOS), allow you (the developer) to create separate environments for your app using the same code base. For example, you might have one flavor for your full-fledged production app, another as a limited "free" app, another for testing experimental features, and so on. Say you want to make both free and paid versions of your Flutter app. You can use flavors to set up both app versions without writing two separate apps. For example, the free version of the app has basic functionality and ads. In contrast, the paid version has basic app functionality, extra features, different styles for paid users, and no ads. You also might use flavors for feature development. If you've built a new feature and want to try it out, you could set up a flavor to test it out. Your production code remains unaffected until you're ready to deploy your new feature. Flavors let you define compile-time configurations and set parameters that are read at runtime to customize your app's behavior. This document guides you through setting up Flutter flavors for iOS, macOS, and Android. ## Environment set up Prerequisites: * Xcode installed * An existing Flutter project To set up flavors in iOS and macOS, you'll define build configurations in Xcode. ## Creating flavors in iOS and macOS <ol markdown="1"> <li markdown="1"> Open your project in Xcode. </li> <li markdown=1> Select **Product** > **Scheme** > **New Scheme** from the menu to add a new `Scheme`. * A scheme describes how Xcode runs different actions. For the purposes of this guide, the example _flavor_ and _scheme_ are named `free`. The build configurations in the `free` scheme have the `-free` suffix. </li> <li markdown="1"> Duplicate the build configurations to differentiate between the default configurations that are already available and the new configurations for the `free` scheme. * Under the **Info** tab at the end of the **Configurations** dropdown list, click the plus button and duplicate each configuration name (Debug, Release, and Profile). Duplicate the existing configurations, once for each environment. ![Step 3 Xcode image](/assets/images/docs/flavors/step3-ios-build-config.png){:width="100%"} {{site.alert.note}} Your configurations should be based on your **Debug.xconfig** or **Release.xcconfig** file, not the **Pods-Runner.xcconfigs**. You can check this by expanding the configuration names. {{site.alert.end}} </li> <li markdown="1"> To match the free flavor, add `-free` at the end of each new configuration name. </li> <li markdown="1"> Change the `free` scheme to match the build configurations already created. * In the **Runner** project, click **Manage Schemes…** and a pop up window opens. * Double click the free scheme. In the next step (as shown in the screenshot), you'll modify each scheme to match its free build configuration: ![Step 5 Xcode image](/assets/images/docs/flavors/step-5-ios-scheme-free.png){:width="100%"} </li> </ol> ## Using flavors in iOS and macOS Now that you've set up your free flavor, you can, for example, add different product bundle identifiers per flavor. A _bundle identifier_ uniquely identifies your application. In this example, we set the **Debug-free** value to equal `com.flavor-test.free`. <ol markdown="1"> <li markdown="1"> Change the app bundle identifier to differentiate between schemes. In **Product Bundle Identifier**, append `.free` to each -free scheme value. ![Step 1 using flavors image.](/assets/images/docs/flavors/step-1-using-flavors-free.png){:width="100%"} </li> <li markdown=1> In the **Build Settings**, set the **Product Name** value to match each flavor. For example, add Debug Free. ![Step 2 using flavors image.](/assets/images/docs/flavors/step-2-using-flavors-free.png){:width="100%"} </li> <li markdown=1> Add the display name to **Info.plist**. Update the **Bundle Display Name** value to `$(PRODUCT_NAME)`. ![Step 3 using flavors image.](/assets/images/docs/flavors/step3-using-flavors.png){:width="100%"} </li> </ol> Now you have set up your flavor by making a `free` scheme in Xcode and setting the build configurations for that scheme. For more information, skip to the [Launching your app flavors][] section at the end of this document. ### Plugin configurations If your app uses a Flutter plugin, you need to update `ios/Podfile` (if developing for iOS) and `macos/Podfile` (if developing for macOS). 1. In `ios/Podfile` and `macos/Podfile`, change the default for **Debug**, **Profile**, and **Release** to match the Xcode build configurations for the `free` scheme. ```ruby project 'Runner', { 'Debug-free' => :debug, 'Profile-free' => :release, 'Release-free' => :release, } ``` ## Using flavors in Android Setting up flavors in Android can be done in your project's **build.gradle** file. 1. Inside your Flutter project, navigate to **android**/**app**/**build.gradle**. 2. Create a [`flavorDimension`][] to group your added product flavors. Gradle doesn't combine product flavors that share the same `dimension`. 3. Add a `productFlavors` object with the desired flavors along with values for **dimension**, **resValue**, and **applicationId** or **applicationIdSuffix**. * The name of the application for each build is located in **resValue**. * If you specify a **applicationIdSuffix** instead of a **applicationId**, it is appended to the "base" application id. ```gradle flavorDimensions "default" productFlavors { free { dimension "default" resValue "string", "app_name", "free flavor example" applicationIdSuffix ".free" } } ``` [`flavorDimension`]: {{site.android-dev}}/studio/build/build-variants#flavor-dimensions ## Setting up launch configurations Next, add a **launch.json** file; this allows you to run the command `flutter run --flavor [environment name]`. In VSCode, set up the launch configurations as follows: 1. In the root directory of your project, add a folder called **.vscode**. 2. Inside the **.vscode** folder, create a file named **launch.json**. 3. In the **launch.json** file, add a configuration object for each flavor. Each configuration has a **name**, **request**, **type**, **program**, and **args** key. ```json { "version": "0.2.0", "configurations": [ { "name": "free", "request": "launch", "type": "dart", "program": "lib/main_development.dart", "args": ["--flavor", "free", "--target", "lib/main_free.dart" ] } ], "compounds": [] } ``` You can now run the terminal command `flutter run --flavor free` or you can set up a run configuration in your IDE. {% comment %} TODO: When available, add an app sample. {% endcomment -%} ## Launching your app flavors 1. Once the flavors are set up, modify the Dart code in **lib** / **main.dart** to consume the flavors. 2. Test the setup using `flutter run --flavor free` at the command line, or in your IDE. For examples of build flavors for [iOS][], [macOS][], and [Android][], check out the integration test samples in the [Flutter repo][]. ## Retrieving your app's flavor at runtime From your Dart code, you can use the [`appFlavor`][] API to determine what flavor your app was built with. ## Conditionally bundling assets based on flavor If you aren't familiar with how to add assets to your app, see [Adding assets and images][]. If you have assets that are only used in a specific flavor in your app, you can configure them to only be bundled into your app when building for that flavor. This prevents your app bundle size from being bloated by unused assets. Here is an example: ```yaml flutter: assets: - assets/common/ - path: assets/free/ flavors: - free - path: assets/premium/ flavors: - premium ``` In this example, files within the `assets/common/` directory will always be bundled when app is built during `flutter run` or `flutter build`. Files within the `assets/free/` directory are bundled _only_ when the `--flavor` option is set to `free`. Similarly, files within the `assets/premium` directory are bundled _only_ if `--flavor` is set to `premium`. ## More information For more information on creating and using flavors, check out the following resources: * [Build flavors in Flutter (Android and iOS) with different Firebase projects per flavor Flutter Ready to Go][] * [Flavoring Flutter Applications (Android & iOS)][] * [Flutter Flavors Setup with multiple Firebase Environments using FlutterFire and Very Good CLI][] ### Packages For packages that support creating flavors, check out the following: * [`flutter_flavor`][] * [`flutter_flavorizr`][] [Launching your app flavors]: /deployment/flavors/#launching-your-app-flavors [Flutter repo]: {{site.repo.flutter}}/blob/master/dev/integration_tests/flavors/lib/main.dart [iOS]: {{site.repo.flutter}}/tree/master/dev/integration_tests/flavors/ios [macOS]: {{site.repo.flutter}}/tree/master/dev/integration_tests/flavors/macos [iOS (Xcode)]: {{site.repo.flutter}}/tree/master/dev/integration_tests/flavors/ios [`appFlavor`]: {{site.api}}/flutter/services/appFlavor-constant.html [Android]: {{site.repo.flutter}}/tree/master/dev/integration_tests/flavors/android [Adding assets and images]: /ui/assets/assets-and-images [Build flavors in Flutter (Android and iOS) with different Firebase projects per flavor Flutter Ready to Go]: {{site.medium}}/@animeshjain/build-flavors-in-flutter-android-and-ios-with-different-firebase-projects-per-flavor-27c5c5dac10b [Flavoring Flutter Applications (Android & iOS)]: {{site.medium}}/flutter-community/flavoring-flutter-applications-android-ios-ea39d3155346 [Flutter Flavors Setup with multiple Firebase Environments using FlutterFire and Very Good CLI]: https://codewithandrea.com/articles/flutter-flavors-for-firebase-apps/ [`flutter_flavor`]: {{site.pub}}/packages/flutter_flavor [`flutter_flavorizr`]: {{site.pub}}/packages/flutter_flavorizr
website/src/deployment/flavors.md/0
{ "file_path": "website/src/deployment/flavors.md", "repo_id": "website", "token_count": 3140 }
1,327
--- title: Introduction to declarative UI short-title: Declarative UI description: Explains the difference between a declarative and imperative programming style. --- <?code-excerpt path-base="get-started/flutter-for/declarative"?> _This introduction describes the conceptual difference between the declarative style used by Flutter, and the imperative style used by many other UI frameworks._ ## Why a declarative UI? Frameworks from Win32 to web to Android and iOS typically use an imperative style of UI programming. This might be the style you're most familiar with&mdash;where you manually construct a full-functioned UI entity, such as a UIView or equivalent, and later mutate it using methods and setters when the UI changes. In order to lighten the burden on developers from having to program how to transition between various UI states, Flutter, by contrast, lets the developer describe the current UI state and leaves the transitioning to the framework. This, however, requires a slight shift in thinking for how to manipulate UI. ## How to change UI in a declarative framework Consider a simplified example below: <img src="/assets/images/docs/declarativeUIchanges.png" alt="View B (contained by view A) morphs from containing two views, c1 and c2, to containing only view c3"> In the imperative style, you would typically go to ViewB's owner and retrieve the instance `b` using selectors or with `findViewById` or similar, and invoke mutations on it (and implicitly invalidate it). For example: ```java // Imperative style b.setColor(red) b.clearChildren() ViewC c3 = new ViewC(...) b.add(c3) ``` You might also need to replicate this configuration in the constructor of ViewB since the source of truth for the UI might outlive instance `b` itself. In the declarative style, view configurations (such as Flutter's Widgets) are immutable and are only lightweight "blueprints". To change the UI, a widget triggers a rebuild on itself (most commonly by calling `setState()` on StatefulWidgets in Flutter) and constructs a new Widget subtree. <?code-excerpt "lib/main.dart (declarative)"?> ```dart // Declarative style return ViewB( color: red, child: const ViewC(), ); ``` Here, rather than mutating an old instance `b` when the UI changes, Flutter constructs new Widget instances. The framework manages many of the responsibilities of a traditional UI object (such as maintaining the state of the layout) behind the scenes with RenderObjects. RenderObjects persist between frames and Flutter's lightweight Widgets tell the framework to mutate the RenderObjects between states. The Flutter framework handles the rest.
website/src/get-started/flutter-for/declarative.md/0
{ "file_path": "website/src/get-started/flutter-for/declarative.md", "repo_id": "website", "token_count": 683 }
1,328
## Android setup {{site.alert.note}} Flutter relies on a full installation of Android Studio to supply its Android platform dependencies. However, you can write your Flutter apps in a number of editors; a later step discusses that. {{site.alert.end}} ### Install Android Studio {% include_relative _help-link.md location='android-studio' section='#android-setup' %} 1. Download and install [Android Studio]({{site.android-dev}}/studio). 1. Start Android Studio, and go through the 'Android Studio Setup Wizard'. This installs the latest Android SDK, Android SDK Command-line Tools, and Android SDK Build-Tools, which are required by Flutter when developing for Android. 1. Run `flutter doctor` to confirm that Flutter has located your installation of Android Studio. If Flutter cannot locate it, run `flutter config --android-studio-dir=<directory>` to set the directory that Android Studio is installed to. ### Set up your Android device {% include_relative _help-link.md location='android-device' section='#android-setup' %} To prepare to run and test your Flutter app on an Android device, you need an Android device running Android 5.0 (API level 21) or higher. 1. Enable **Developer options** and **USB debugging** on your device. Detailed instructions are available in the [Android documentation]({{site.android-dev}}/studio/debug/dev-options). 1. [Optional] To leverage wireless debugging, enable **Wireless debugging** on your device. Detailed instructions are available in the [Android documentation]({{site.android-dev}}/studio/run/device#wireless). 1. Windows-only: Install the [Google USB Driver]({{site.android-dev}}/studio/run/win-usb). 1. Using a USB cable, plug your phone into your computer. If prompted on your device, authorize your computer to access your device. 1. In the terminal, run the `flutter devices` command to verify that Flutter recognizes your connected Android device. By default, Flutter uses the version of the Android SDK where your `adb` tool is based. If you want Flutter to use a different installation of the Android SDK, you must set the `ANDROID_SDK_ROOT` environment variable to that installation directory. ### Set up the Android emulator {% include_relative _help-link.md location='android-emulator' section='#android-setup' %} To prepare to run and test your Flutter app on the Android emulator, follow these steps: 1. Enable [VM acceleration]({{site.android-dev}}/studio/run/emulator-acceleration#accel-vm) on your machine. 1. Start **Android Studio**, click the **Device Manager** icon, and select **Create Device** under **Virtual** tab... * In older versions of Android Studio, you should instead launch **Android Studio > Tools > Android > AVD Manager** and select **Create Virtual Device...**. (The **Android** submenu is only present when inside an Android project.) * If you do not have a project open, you can choose **3-Dot Menu / More Actions > Virtual Device Manager** and select **Create Device...** 1. Choose a device definition and select **Next**. 1. Select one or more system images for the Android versions you want to emulate, and select **Next**. An _x86_ or _x86\_64_ image is recommended. 1. Under Emulated Performance, select **Hardware - GLES 2.0** to enable [hardware acceleration]({{site.android-dev}}/studio/run/emulator-acceleration). 1. Verify the AVD configuration is correct, and select **Finish**. For details on the above steps, see [Managing AVDs]({{site.android-dev}}/studio/run/managing-avds). 1. In Android Virtual Device Manager, click **Run** in the toolbar. The emulator starts up and displays the default canvas for your selected OS version and device. ### Agree to Android Licenses {% include_relative _help-link.md location='android-licenses' section='#android-setup' %} Before you can use Flutter, you must agree to the licenses of the Android SDK platform. This step should be done after you have installed the tools listed above. 1. Open an elevated console window and run the following command to begin signing licenses. ```terminal $ flutter doctor --android-licenses ``` 1. Review the terms of each license carefully before agreeing to them. 1. Once you are done agreeing with licenses, run `flutter doctor` again to confirm that you are ready to use Flutter.
website/src/get-started/install/_deprecated/_android-setup.md/0
{ "file_path": "website/src/get-started/install/_deprecated/_android-setup.md", "repo_id": "website", "token_count": 1251 }
1,329
--- title: Choose your development platform to get started short-title: Install description: Install Flutter and get started. Downloads available for Windows, macOS, Linux, and ChromeOS operating systems. os-list: [Windows, macOS, Linux, ChromeOS] --- <div class="card-deck mb-8"> {% for os in page.os-list %} <a class="card" id="install-{{os | remove: ' ' | downcase}}" href="/get-started/install/{{os | remove: ' ' | downcase}}"> <div class="card-body"> <header class="card-title text-center m-0"> <span class="d-block h1"> {% assign icon = os | downcase -%} <img src="/assets/images/docs/brand-svg/{{icon}}.svg" width="72" height="72" aria-hidden="true" alt="{{os}} logo"> </span> <span class="text-muted text-nowrap">{{os}}</span> </header> </div> </a> {% endfor %} </div> {% include docs/china-notice.md %}
website/src/get-started/install/index.md/0
{ "file_path": "website/src/get-started/install/index.md", "repo_id": "website", "token_count": 348 }
1,330
--- title: Uninstall Flutter description: How to remove the Flutter SDK. toc: true os-list: [Windows, macOS, Linux, ChromeOS] --- To remove all of Flutter from your {{os}} development machine, delete the directories that store Flutter and its configuration files. ## Uninstall the Flutter SDK Select your development platform from the following tabs. {% comment %} Nav tabs {% endcomment -%} <ul class="nav nav-tabs" id="base-os-tabs" role="tablist"> {% for os in page.os-list %} {% assign id = os | downcase -%} <li class="nav-item"> <a class="nav-link {%- if id == 'windows' %} active {% endif %}" id="{{id}}-tab" href="#{{id}}" role="tab" aria-controls="{{id}} {{id}}-dl {{id}}-pub" aria-selected="true">{{os}}</a> </li> {% endfor -%} </ul> {% comment %} Tab panes {% endcomment -%} <div class="tab-content"> {% for os in page.os-list %} {% assign id = os | downcase -%} {% case os %} {% when 'Windows' -%} {% assign dirinstall='C:\user\{username}\dev\' %} {% assign localappdata='%LOCALAPPDATA%\' %} {% assign appdata='%APPDATA%\' %} {% assign ps-localappdata='$env:LOCALAPPDATA\' %} {% assign ps-appdata='$env:APPDATA\' %} {% assign unzip='Expand-Archive' %} {% assign path='C:\user\{username}\dev' %} {% assign prompt='C:\>' %} {% assign terminal='PowerShell' %} {% assign rm = 'Remove-Item -Recurse -Force -Path' %} {% capture rm-sdk %}Remove-Item -Recurse -Force -Path '{{dirinstall}}flutter'{% endcapture %} {% capture dart-files %} {{localappdata}}.dartServer {{appdata}}.dart {{appdata}}.dart-tool {% endcapture %} {% capture rm-dart-files %} {{prompt}} {{rm}} {{ps-localappdata}}.dartServer,{{ps-appdata}}.dart,{{ps-appdata}}.dart-tool {% endcapture %} {% capture flutter-files %}{{appdata}}.flutter-devtools{% endcapture %} {% capture rm-flutter-files %} {{prompt}} {{rm}} {{ps-appdata}}.flutter-devtools {% endcapture %} {% capture rm-pub-dir %} {{prompt}} {{rm}} {{ps-localappdata}}Pub\Cache {% endcapture %} {% else -%} {% assign dirinstall='~/development' %} {% assign dirconfig='~/' %} {% assign path='~/development/' %} {% assign prompt='$' %} {% assign rm = 'rm -rf ' %} {% assign rm-sdk = rm | append: dirinstall | append: '/flutter' %} {% capture dart-files %} {{dirconfig}}.dart {{dirconfig}}.dart-tool {{dirconfig}}.dartServer {% endcapture %} {% capture rm-dart-files %} {{prompt}} {{rm}} {{dirconfig}}.dart* {% endcapture %} {% capture flutter-files %} {{dirconfig}}.flutter {{dirconfig}}.flutter-devtools {{dirconfig}}.flutter_settings {% endcapture %} {% capture rm-flutter-files %} {{prompt}} {{rm}} {{dirconfig}}.flutter* {% endcapture %} {% capture rm-pub-dir %} {{prompt}} {{rm}} {{dirconfig}}.pub-cache {% endcapture %} {% endcase -%} <div class="tab-pane {%- if id == 'windows' %} active {% endif %}" id="{{id}}" role="tabpanel" aria-labelledby="{{id}}-tab" markdown="1"> This guide presumes that you installed Flutter in `{{path}}` on {{os}}. To uninstall the SDK, remove the `flutter` directory. ```terminal {{prompt}} {{rm-sdk}} ``` ## Remove configuration and package directories {:.no_toc} Flutter and Dart install additional directories in your home directory. These contain configuration files and package downloads. Each of the following procedures are _optional_. ### Remove Flutter configuration files {:.no_toc} If you don't want to preserve your Flutter configuration, remove the following directories from your home directory. ```nocode {{ flutter-files | strip }} ``` To remove these directories, run the following command. ```terminal {{rm-flutter-files | strip}} ``` ### Remove Dart configuration files {:.no_toc} If you don't want to preserve your Dart configuration, remove the following directories from your home directory. ```nocode {{ dart-files | strip}} ``` To remove these directories, run the following command. ```terminal {{rm-dart-files | strip}} ``` ### Remove pub package files {:.no_toc} {{site.alert.important}} If you want to remove Flutter but not Dart, don't complete this section. {{site.alert.end}} If you don't want to preserve your pub packages, remove the `.pub-cache` directory from your home directory. ```terminal {{rm-pub-dir | strip}} ``` {% case os %} {% when 'Windows','macOS' -%} {% include docs/install/reqs/{{os | downcase}}/unset-path.md terminal=terminal -%} {% endcase %} </div> {% endfor -%} </div> {% comment %} End: Tab panes. {% endcomment -%} ## Reinstall Flutter You can [reinstall Flutter](/get-started/install) at any time. If you removed the configuration directories, reinstalling Flutter restores them to default settings.
website/src/get-started/uninstall/index.md/0
{ "file_path": "website/src/get-started/uninstall/index.md", "repo_id": "website", "token_count": 1624 }
1,331
--- title: Concurrency and isolates description: Multithreading in Flutter using Dart isolates. --- <?code-excerpt path-base="development/concurrency/isolates/"?> All Dart code runs in [isolates]({{site.dart-site}}/language/concurrency), which are similar to threads, but differ in that isolates have their own isolated memory. They do not share state in any way, and can only communicate by messaging. By default, Flutter apps do all of their work on a single isolate – the main isolate. In most cases, this model allows for simpler programming and is fast enough that the application's UI doesn't become unresponsive. Sometimes though, applications need to perform exceptionally large computations that can cause "UI jank" (jerky motion). If your app is experiencing jank for this reason, you can move these computations to a helper isolate. This allows the underlying runtime environment to run the computation concurrently with the main UI isolate's work and takes advantage of multi-core devices. Each isolate has its own memory and its own event loop. The event loop processes events in the order that they're added to an event queue. On the main isolate, these events can be anything from handling a user tapping in the UI, to executing a function, to painting a frame on the screen. The following figure shows an example event queue with 3 events waiting to be processed. ![The main isolate diagram](/assets/images/docs/development/concurrency/basics-main-isolate.png){:width="50%"} For smooth rendering, Flutter adds a "paint frame" event to the event queue 60 times per second(for a 60Hz device). If these events aren't processed on time, the application experiences UI jank, or worse, become unresponsive altogether. ![Event jank diagram](/assets/images/docs/development/concurrency/event-jank.png){:width="50%"} Whenever a process can't be completed in a frame gap, the time between two frames, it's a good idea to offload the work to another isolate to ensure that the main isolate can produce 60 frames per second. When you spawn an isolate in Dart, it can process the work concurrently with the main isolate, without blocking it. You can read more about how isolates and the event loop work in Dart on the [concurrency page][] of the Dart documentation. [concurrency page]: {{site.dart-site}}/language/concurrency <iframe width="560" height="315" src="{{site.yt.embed}}/vl_AaCgudcY" title="Learn about Isolates and Loop Events in Flutter" {{site.yt.set}}></iframe> ## Common use cases for isolates There is only one hard rule for when you should use isolates, and that's when large computations are causing your Flutter application to experience UI jank. This jank happens when there is any computation that takes longer than Flutter's frame gap. ![Event jank diagram](/assets/images/docs/development/concurrency/event-jank.png){:width="50%"} Any process _could_ take longer to complete, depending on the implementation and the input data, making it impossible to create an exhaustive list of when you need to consider using isolates. That said, isolates are commonly used for the following: - Reading data from a local database - Sending push notifications - Parsing and decoding large data files - Processing or compressing photos, audio files, and video files - Converting audio and video files - When you need asynchronous support while using FFI - Applying filtering to complex lists or filesystems ## Message passing between isolates Dart's isolates are an implementation of the [Actor model][]. They can only communicate with each other by message passing, which is done with [`Port` objects][]. When messages are "passed" between each other, they are generally copied from the sending isolate to the receiving isolate. This means that any value passed to an isolate, even if mutated on that isolate, doesn't change the value on the original isolate. The only [objects that aren't copied when passed][] to an isolate are immutable objects that can't be changed anyway, such a String or an unmodifiable byte. When you pass an immutable object between isolates, a reference to that object is sent across the port, rather than the object being copied, for better performance. Because immutable objects can't be updated, this effectively retains the actor model behavior. [`Port` objects]: {{site.dart.api}}/stable/dart-isolate/ReceivePort-class.html [objects that aren't copied when passed]: {{site.dart.api}}/stable/dart-isolate/SendPort/send.html An exception to this rule is when an isolate exits when it sends a message using the `Isolate.exit` method. Because the sending isolate won't exist after sending the message, it can pass ownership of the message from one isolate to the other, ensuring that only one isolate can access the message. The two lowest-level primitives that send messages are `SendPort.send`, which makes a copy of a mutable message as it sends, and `Isolate.exit`, which sends the reference to the message. Both `Isolate.run` and `compute` use `Isolate.exit` under the hood. ## Short-lived isolates The easiest way to move a process to an isolate in Flutter is with the `Isolate.run` method. This method spawns an isolate, passes a callback to the spawned isolate to start some computation, returns a value from the computation, and then shuts the isolate down when the computation is complete. This all happens concurrently with the main isolate, and doesn't block it. ![Isolate diagram](/assets/images/docs/development/concurrency/isolate-bg-worker.png){:width="50%"} The `Isolate.run` method requires a single argument, a callback function, that is run on the new isolate. This callback's function signature must have exactly one required, unnamed argument. When the computation completes, it returns the callback's value back to the main isolate, and exits the spawned isolate. For example, consider this code that loads a large JSON blob from a file, and converts that JSON into custom Dart objects. If the json decoding process wasn't off loaded to a new isolate, this method would cause the UI to become unresponsive for several seconds. <?code-excerpt "lib/main.dart (isolate-run)"?> ```dart // Produces a list of 211,640 photo objects. // (The JSON file is ~20MB.) Future<List<Photo>> getPhotos() async { final String jsonString = await rootBundle.loadString('assets/photos.json'); final List<Photo> photos = await Isolate.run<List<Photo>>(() { final List<Object?> photoData = jsonDecode(jsonString) as List<Object?>; return photoData.cast<Map<String, Object?>>().map(Photo.fromJson).toList(); }); return photos; } ``` For a complete walkthrough of using Isolates to parse JSON in the background, see [this cookbook recipe][]. [this cookbook recipe]: /cookbook/networking/background-parsing ## Stateful, longer-lived isolates Short-live isolates are convenient to use, but there is performance overhead required to spawn new isolates, and to copy objects from one isolate to another. If you're doing the same computation using `Isolate.run` repeatedly, you might have better performance by creating isolates that don't exit immediately. To do this, you can use a handful of lower-level isolate-related APIs that `Isolate.run` abstracts: - [`Isolate.spawn()`][] and [`Isolate.exit()`][] - [`ReceivePort`][] and [`SendPort`][] - [`send()`][] method When you use the `Isolate.run` method, the new isolate immediately shuts down after it returns a single message to the main isolate. Sometimes, you'll need isolates that are long lived, and can pass multiple messages to each other over time. In Dart, you can accomplish this with the Isolate API and Ports. These long-lived isolates are colloquially known as _background workers_. Long-lived isolates are useful when you have a specific process that either needs to be run repeatedly throughout the lifetime of your application, or if you have a process that runs over a period of time and needs to yield multiple return values to the main isolate. Or, you might use [worker_manager][] to manage long-lived isolates. [worker_manager]: {{site.pub-pkg}}/worker_manager ### ReceivePorts and SendPorts Set up long-lived communication between isolates with two classes (in addition to Isolate): [`ReceivePort`][] and [`SendPort`][]. These ports are the only way isolates can communicate with each other. `Ports` behave similarly to `Streams`, in which the `StreamController` or `Sink` is created in one isolate, and the listener is set up in the other isolate. In this analogy, the `StreamConroller` is called a `SendPort`, and you can "add" messages with the `send()` method. `ReceivePort`s are the listeners, and when these listeners receive a new message, they call a provided callback with the message as an argument. For an in-depth explanation on setting up two-way communication between the main isolate and a worker isolate, follow the examples in the [Dart documentation][]. [Dart documentation]: {{site.dart-site}}/language/concurrency ## Using platform plugins in isolates As of Flutter 3.7, you can use platform plugins in background isolates. This opens many possibilities to offload heavy, platform-dependent computations to an isolate that won't block your UI. For example, imagine you're encrypting data using a native host API (such as an Android API on Android, an iOS API on iOS, and so on). Previously, [marshaling data][] to the host platform could waste UI thread time, and can now be done in a background isolate. Platform channel isolates use the [`BackgroundIsolateBinaryMessenger`][] API. The following snippet shows an example of using the `shared_preferences` package in a background isolate. <?code-excerpt "lib/isolate_binary_messenger.dart"?> ```dart import 'dart:isolate'; import 'package:flutter/services.dart'; import 'package:shared_preferences/shared_preferences.dart'; void main() { // Identify the root isolate to pass to the background isolate. RootIsolateToken rootIsolateToken = RootIsolateToken.instance!; Isolate.spawn(_isolateMain, rootIsolateToken); } Future<void> _isolateMain(RootIsolateToken rootIsolateToken) async { // Register the background isolate with the root isolate. BackgroundIsolateBinaryMessenger.ensureInitialized(rootIsolateToken); // You can now use the shared_preferences plugin. SharedPreferences sharedPreferences = await SharedPreferences.getInstance(); print(sharedPreferences.getBool('isDebug')); } ``` ## Limitations of Isolates If you're coming to Dart from a language with multithreading, it's reasonable to expect isolates to behave like threads, but that isn't the case. Isolates have their own global fields, and can only communicate with message passing, ensuring that mutable objects in an isolate are only ever accessible in a single isolate. Therefore, isolates are limited by their access to their own memory. For example, if you have an application with a global mutable variable called `configuration`, it is copied as a new global field in a spawned isolate. If you mutate that variable in the spawned isolate, it remains untouched in the main isolate. This is true even if you pass the `configuration` object as a message to the new isolate. This is how isolates are meant to function, and it's important to keep in mind when you consider using isolates. ### Web platforms and compute Dart web platforms, including Flutter web, don't support isolates. If you're targeting the web with your Flutter app, you can use the `compute` method to ensure your code compiles. The [`compute()`][] method runs the computation on the main thread on the web, but spawns a new thread on mobile devices. On mobile and desktop platforms `await compute(fun, message)` is equivalent to `await Isolate.run(() => fun(message))`. For more information on concurrency on the web, check out the [concurrency documentation][] on dart.dev. [concurrency documentation]: {{site.dart-site}}/language/concurrency ### No `rootBundle` access or `dart:ui` methods All UI tasks and Flutter itself are coupled to the main isolate. Therefore, you can't access assets using `rootBundle` in spawned isolates, nor can you perform any widget or UI work in spawned isolates. ### Limited plugin messages from host platform to Flutter With background isolate platform channels, you can use platform channels in isolates to send messages to the host platform (for example Android or iOS), and receive responses to those messages. However, you can't receive unsolicited messages from the host platform. As an example, you can't set up a long-lived Firestore listener in a background isolate, because Firestore uses platform channels to push updates to Flutter, which are unsolicited. You can, however, query Firestore for a response in the background. ## More information For more information on isolates, check out the following resources: - If you're using many isolates, consider the [IsolateNameServer][] class in Flutter, or the pub package that clones the functionality for Dart applications not using Flutter. - Dart's Isolates are an implementation of the [Actor model][]. - [isolate_agents][] is a package that abstracts Ports and make it easier to create long-lived isolates. - Read more about the `BackgroundIsolateBinaryMessenger` API [announcement][]. [announcement]: {{site.flutter-medium}}/introducing-background-isolate-channels-7a299609cad8 [Actor model]: https://en.wikipedia.org/wiki/Actor_model [isolate_agents]: {{site.medium}}/@gaaclarke/isolate-agents-easy-isolates-for-flutter-6d75bf69a2e7 [marshaling data]: https://en.wikipedia.org/wiki/Marshalling_(computer_science) [`compute()`]: {{site.api}}/flutter/foundation/compute.html [`Isolate.spawn()`]: {{site.dart.api}}/stable/dart-isolate/Isolate/spawn.html [`Isolate.exit()`]: {{site.dart.api}}/stable/dart-isolate/Isolate/exit.html [`ReceivePort`]: {{site.dart.api}}/stable/dart-isolate/ReceivePort-class.html [`SendPort`]: {{site.dart.api}}/stable/dart-isolate/SendPort-class.html [`send()`]: {{site.dart.api}}/stable/dart-isolate/SendPort/send.html [`BackgroundIsolateBinaryMessenger`]: {{site.api}}/flutter/services/BackgroundIsolateBinaryMessenger-class.html [IsolateNameServer]: {{site.api}}/flutter/dart-ui/IsolateNameServer-class.html
website/src/perf/isolates.md/0
{ "file_path": "website/src/perf/isolates.md", "repo_id": "website", "token_count": 3831 }
1,332
--- title: Add Android devtools for Flutter from Web on Windows start description: Configure your Windows system to develop Flutter mobile apps for Android. short-title: Starting from Web on Windows --- To add Android as a Flutter app target for Windows, follow this procedure. ## Install Android Studio 1. Allocate a minimum of 7.5 GB of storage for Android Studio. Consider allocating 10 GB of storage for an optimal configuration. 1. Install [Android Studio][] {{site.appmin.android_studio}} to debug and compile Java or Kotlin code for Android. Flutter requires the full version of Android Studio. {% include docs/install/compiler/android.md target='desktop' devos='windows' attempt="first" -%} {% include docs/install/flutter-doctor.md target='Android' devos='Windows' config='WindowsAndroidWeb' %} [Android Studio]: https://developer.android.com/studio/install#win
website/src/platform-integration/android/install-android/install-android-from-web-on-windows.md/0
{ "file_path": "website/src/platform-integration/android/install-android/install-android-from-web-on-windows.md", "repo_id": "website", "token_count": 254 }
1,333
--- title: iOS debugging description: iOS-specific debugging techniques for Flutter apps --- Due to security around [local network permissions in iOS 14 or later][], you must accept a permission dialog box to enable Flutter debugging functionalities such as hot-reload and DevTools. ![Screenshot of "allow network connections" dialog](/assets/images/docs/development/device-connect.png) This affects debug and profile builds only and won't appear in release builds. You can also allow this permission by enabling **Settings > Privacy > Local Network > Your App**. [local network permissions in iOS 14 or later]: {{site.apple-dev}}/news/?id=0oi77447
website/src/platform-integration/ios/ios-debugging.md/0
{ "file_path": "website/src/platform-integration/ios/ios-debugging.md", "repo_id": "website", "token_count": 164 }
1,334
--- title: Automatic platform adaptations description: Learn more about Flutter's platform adaptiveness. --- {{site.alert.note}} As of the Flutter 3.16 release, Material 3 replaces Material 2 as the default theme on all Flutter apps that use Material. {{site.alert.end}} ## Adaptation philosophy In general, two cases of platform adaptiveness exist: 1. Things that are behaviors of the OS environment (such as text editing and scrolling) and that would be 'wrong' if a different behavior took place. 2. Things that are conventionally implemented in apps using the OEM's SDKs (such as using parallel tabs on iOS or showing an [android.app.AlertDialog][] on Android). This article mainly covers the automatic adaptations provided by Flutter in case 1 on Android and iOS. For case 2, Flutter bundles the means to produce the appropriate effects of the platform conventions but doesn't adapt automatically when app design choices are needed. For a discussion, see [issue #8410][] and the [Material/Cupertino adaptive widget problem definition][]. For an example of an app using different information architecture structures on Android and iOS but sharing the same content code, see the [platform_design code samples][]. {{site.alert.info}} Preliminary guides addressing case 2 are being added to the UI components section. You can request additional guides by commenting on [issue #8427][]. {{site.alert.end}} ## Page navigation Flutter provides the navigation patterns seen on Android and iOS and also automatically adapts the navigation animation to the current platform. ### Navigation transitions On **Android**, the default [`Navigator.push()`][] transition is modeled after [`startActivity()`][], which generally has one bottom-up animation variant. On **iOS**: * The default [`Navigator.push()`][] API produces an iOS Show/Push style transition that animates from end-to-start depending on the locale's RTL setting. The page behind the new route also parallax-slides in the same direction as in iOS. * A separate bottom-up transition style exists when pushing a page route where [`PageRoute.fullscreenDialog`][] is true. This represents iOS's Present/Modal style transition and is typically used on fullscreen modal pages. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img style="border-radius: 12px;" src="/assets/images/docs/platform-adaptations/navigation-android.gif" class="figure-img img-fluid" alt="An animation of the bottom-up page transition on Android" /> <figcaption class="figure-caption"> Android page transition </figcaption> </figure> </div> <div class="col-sm text-center"> <figure class="figure"> <img style="border-radius: 22px;" src="/assets/images/docs/platform-adaptations/navigation-ios.gif" class="figure-img img-fluid" alt="An animation of the end-start style push page transition on iOS" /> <figcaption class="figure-caption"> iOS push transition </figcaption> </figure> </div> <div class="col-sm text-center"> <figure class="figure"> <img style="border-radius: 22px;" src="/assets/images/docs/platform-adaptations/navigation-ios-modal.gif" class="figure-img img-fluid" alt="An animation of the bottom-up style present page transition on iOS" /> <figcaption class="figure-caption"> iOS present transition </figcaption> </figure> </div> </div> </div> ### Platform-specific transition details On **Android**, Flutter uses the [`ZoomPageTransitionsBuilder`][] animation. When the user taps on an item, the UI zooms in to a screen that features that item. When the user taps to go back, the UI zooms out to the previous screen. On **iOS** when the push style transition is used, Flutter's bundled [`CupertinoNavigationBar`][] and [`CupertinoSliverNavigationBar`][] nav bars automatically animate each subcomponent to its corresponding subcomponent on the next or previous page's `CupertinoNavigationBar` or `CupertinoSliverNavigationBar`. <div class="container"> <div class="row"> <div class="col-sm"> <figure class="figure text-center"> <object style="border-radius: 12px; height: 400px;" class="figure-img img-fluid" height="400" width="185" alt="An animation of the page transition on Android" data="/assets/images/docs/platform-adaptations/android-zoom-animation.png"></object> <figcaption class="figure-caption"> Android </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img style="border-radius: 22px;" src="/assets/images/docs/platform-adaptations/navigation-ios-nav-bar.gif" class="figure-img img-fluid" alt="An animation of the nav bar transitions during a page transition on iOS" /> <figcaption class="figure-caption"> iOS Nav Bar </figcaption> </figure> </div> </div> </div> ### Back navigation On **Android**, the OS back button, by default, is sent to Flutter and pops the top route of the [`WidgetsApp`][]'s Navigator. On **iOS**, an edge swipe gesture can be used to pop the top route. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img style="border-radius: 12px;" src="/assets/images/docs/platform-adaptations/navigation-android-back.gif" class="figure-img img-fluid" alt="A page transition triggered by the Android back button" /> <figcaption class="figure-caption"> Android back button </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img style="border-radius: 22px;" src="/assets/images/docs/platform-adaptations/navigation-ios-back.gif" class="figure-img img-fluid" alt="A page transition triggered by an iOS back swipe gesture" /> <figcaption class="figure-caption"> iOS back swipe gesture </figcaption> </figure> </div> </div> </div> ## Scrolling Scrolling is an important part of the platform's look and feel, and Flutter automatically adjusts the scrolling behavior to match the current platform. ### Physics simulation Android and iOS both have complex scrolling physics simulations that are difficult to describe verbally. Generally, iOS's scrollable has more weight and dynamic friction but Android has more static friction. Therefore iOS gains high speed more gradually but stops less abruptly and is more slippery at slow speeds. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/scroll-soft.gif" class="figure-img img-fluid rounded" alt="A soft fling where the iOS scrollable slid longer at lower speed than Android" /> <figcaption class="figure-caption"> Soft fling comparison </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/scroll-medium.gif" class="figure-img img-fluid rounded" alt="A medium force fling where the Android scrollable reached speed faster and stopped more abruptly after reaching a longer distance" /> <figcaption class="figure-caption"> Medium fling comparison </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/scroll-strong.gif" class="figure-img img-fluid rounded" alt="A strong fling where the Android scrollable reach speed faster and reached significantly more distance" /> <figcaption class="figure-caption"> Strong fling comparison </figcaption> </figure> </div> </div> </div> ### Overscroll behavior On **Android**, scrolling past the edge of a scrollable shows an [overscroll glow indicator][] (based on the color of the current Material theme). On **iOS**, scrolling past the edge of a scrollable [overscrolls][] with increasing resistance and snaps back. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/scroll-overscroll.gif" class="figure-img img-fluid rounded" alt="Android and iOS scrollables being flung past their edge and exhibiting platform specific overscroll behavior" /> <figcaption class="figure-caption"> Dynamic overscroll comparison </figcaption> </figure> </div> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/scroll-static-overscroll.gif" class="figure-img img-fluid rounded" alt="Android and iOS scrollables being overscrolled from a resting position and exhibiting platform specific overscroll behavior" /> <figcaption class="figure-caption"> Static overscroll comparison </figcaption> </figure> </div> </div> </div> ### Momentum On **iOS**, repeated flings in the same direction stacks momentum and builds more speed with each successive fling. There is no equivalent behavior on *Android*. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/scroll-momentum-ios.gif" class="figure-img img-fluid rounded" alt="Repeated scroll flings building momentum on iOS" /> <figcaption class="figure-caption"> iOS scroll momentum </figcaption> </figure> </div> </div> </div> ### Return to top On **iOS**, tapping the OS status bar scrolls the primary scroll controller to the top position. There is no equivalent behavior on **Android**. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img style="border-radius: 22px;" src="/assets/images/docs/platform-adaptations/scroll-tap-to-top-ios.gif" class="figure-img img-fluid" alt="Tapping the status bar scrolls the primary scrollable back to the top" /> <figcaption class="figure-caption"> iOS status bar tap to top </figcaption> </figure> </div> </div> </div> ## Typography When using the Material package, the typography automatically defaults to the font family appropriate for the platform. Android uses the Roboto font. iOS uses the San Francisco font. When using the Cupertino package, the [default theme][] uses the San Francisco font. The San Francisco font license limits its usage to software running on iOS, macOS, or tvOS only. Therefore a fallback font is used when running on Android if the platform is debug-overridden to iOS or the default Cupertino theme is used. You might choose to adapt the text styling of Material widgets to match the default text styling on iOS. You can see widget-specific examples in the [UI Component section][]. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/typography-android.png" class="figure-img img-fluid rounded" alt="Roboto font on Android" /> <figcaption class="figure-caption"> Roboto on Android </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/typography-ios.png" class="figure-img img-fluid rounded" alt="San Francisco font on iOS" /> <figcaption class="figure-caption"> San Francisco on iOS </figcaption> </figure> </div> </div> </div> ## Iconography When using the Material package, certain icons automatically show different graphics depending on the platform. For instance, the overflow button's three dots are horizontal on iOS and vertical on Android. The back button is a simple chevron on iOS and has a stem/shaft on Android. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/iconography-android.png" class="figure-img img-fluid rounded" alt="Android appropriate icons" /> <figcaption class="figure-caption"> Icons on Android </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/iconography-ios.png" class="figure-img img-fluid rounded" alt="iOS appropriate icons" /> <figcaption class="figure-caption"> Icons on iOS </figcaption> </figure> </div> </div> </div> The material library also provides a set of platform-adaptive icons through [`Icons.adaptive`]. ## Haptic feedback The Material and Cupertino packages automatically trigger the platform appropriate haptic feedback in certain scenarios. For instance, a word selection via text field long-press triggers a 'buzz' vibrate on Android and not on iOS. Scrolling through picker items on iOS triggers a 'light impact' knock and no feedback on Android. ## Text editing Flutter also makes the below adaptations while editing the content of text fields to match the current platform. ### Keyboard gesture navigation On **Android**, horizontal swipes can be made on the soft keyboard's <kbd>space</kbd> key to move the cursor in Material and Cupertino text fields. On **iOS** devices with 3D Touch capabilities, a force-press-drag gesture could be made on the soft keyboard to move the cursor in 2D via a floating cursor. This works on both Material and Cupertino text fields. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-keyboard-move-android.gif" class="figure-img img-fluid rounded" alt="Moving the cursor via the space key on Android" /> <figcaption class="figure-caption"> Android space key cursor move </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-keyboard-move-ios.gif" class="figure-img img-fluid rounded" alt="Moving the cursor via 3D Touch drag on the keyboard on iOS" /> <figcaption class="figure-caption"> iOS 3D Touch drag cursor move </figcaption> </figure> </div> </div> </div> ### Text selection toolbar With **Material on Android**, the Android style selection toolbar is shown when a text selection is made in a text field. With **Material on iOS** or when using **Cupertino**, the iOS style selection toolbar is shown when a text selection is made in a text field. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-toolbar-android.png" class="figure-img img-fluid rounded" alt="Android appropriate text toolbar" /> <figcaption class="figure-caption"> Android text selection toolbar </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-toolbar-ios.png" class="figure-img img-fluid rounded" alt="iOS appropriate text toolbar" /> <figcaption class="figure-caption"> iOS text selection toolbar </figcaption> </figure> </div> </div> </div> ### Single tap gesture With **Material on Android**, a single tap in a text field puts the cursor at the location of the tap. A collapsed text selection also shows a draggable handle to subsequently move the cursor. With **Material on iOS** or when using **Cupertino**, a single tap in a text field puts the cursor at the nearest edge of the word tapped. Collapsed text selections don't have draggable handles on iOS. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-single-tap-android.gif" class="figure-img img-fluid rounded" alt="Moving the cursor to the tapped position on Android" /> <figcaption class="figure-caption"> Android tap </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-single-tap-ios.gif" class="figure-img img-fluid rounded" alt="Moving the cursor to the nearest edge of the tapped word on iOS" /> <figcaption class="figure-caption"> iOS tap </figcaption> </figure> </div> </div> </div> ### Long-press gesture With **Material on Android**, a long press selects the word under the long press. The selection toolbar is shown upon release. With **Material on iOS** or when using **Cupertino**, a long press places the cursor at the location of the long press. The selection toolbar is shown upon release. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-long-press-android.gif" class="figure-img img-fluid rounded" alt="Selecting a word via long press on Android" /> <figcaption class="figure-caption"> Android long press </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-long-press-ios.gif" class="figure-img img-fluid rounded" alt="Selecting a position via long press on iOS" /> <figcaption class="figure-caption"> iOS long press </figcaption> </figure> </div> </div> </div> ### Long-press drag gesture With **Material on Android**, dragging while holding the long press expands the words selected. With **Material on iOS** or when using **Cupertino**, dragging while holding the long press moves the cursor. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-long-press-drag-android.gif" class="figure-img img-fluid rounded" alt="Expanding word selection via long press drag on Android" /> <figcaption class="figure-caption"> Android long press drag </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-long-press-drag-ios.gif" class="figure-img img-fluid rounded" alt="Moving the cursor via long press drag on iOS" /> <figcaption class="figure-caption"> iOS long press drag </figcaption> </figure> </div> </div> </div> ### Double tap gesture On both Android and iOS, a double tap selects the word receiving the double tap and shows the selection toolbar. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/text-double-tap-android.gif" class="figure-img img-fluid rounded" alt="Selecting a word via double tap on Android" /> <figcaption class="figure-caption"> Android double tap </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/text-double-tap-ios.gif" class="figure-img img-fluid rounded" alt="Selecting a word via double tap on iOS" /> <figcaption class="figure-caption"> iOS double tap </figcaption> </figure> </div> </div> </div> ## UI components This section includes preliminary recommendations on how to adapt Material widgets to deliver a natural and compelling experience on iOS. Your feedback is welcomed on [issue #8427][]. ### Widgets with .adaptive() constructors Several widgets support `.adaptive()` constructors. The following table lists these widgets. Adaptive constructors substitute the corresponding Cupertino components when the app is run on an iOS device. Widgets in the following table are used primarily for input, selection, and to display system information. Because these controls are tightly integrated with the operating system, users have been trained to recognize and respond to them. Therefore, we recommend that you follow platform conventions. | Material Widget | Cupertino Widget | Adaptive Constructor | |---|---|---|---|---| |<img width=160 src="/assets/images/docs/platform-adaptations/m3-switch.png" class="figure-img img-fluid rounded" alt="Switch in Material 3" /><br/>`Switch`|<img src="/assets/images/docs/platform-adaptations/hig-switch.png" class="figure-img img-fluid rounded" alt="Switch in HIG" /><br/>`CupertinoSwitch`|[`Switch.adaptive()`][]| |<img src="/assets/images/docs/platform-adaptations/m3-slider.png" width =160 class="figure-img img-fluid rounded" alt="Slider in Material 3" /><br/>`Slider`|<img src="/assets/images/docs/platform-adaptations/hig-slider.png" width =160 class="figure-img img-fluid rounded" alt="Slider in HIG" /><br/>`CupertinoSlider`|[`Slider.adaptive()`][]| |<img src="/assets/images/docs/platform-adaptations/m3-progress.png" width = 100 class="figure-img img-fluid rounded" alt="Circular progress indicator in Material 3" /><br/>`CircularProgressIndicator`|<img src="/assets/images/docs/platform-adaptations/hig-progress.png" class="figure-img img-fluid rounded" alt="Activity indicator in HIG" /><br/>`CupertinoActivityIndicator`|[`CircularProgressIndicator.adaptive()`][]| | <img src="/assets/images/docs/platform-adaptations/m3-checkbox.png" class="figure-img img-fluid rounded" alt=" Checkbox in Material 3" /> <br/>`Checkbox`| <img src="/assets/images/docs/platform-adaptations/hig-checkbox.png" class="figure-img img-fluid rounded" alt="Checkbox in HIG" /> <br/> `CupertinoCheckbox`|[`Checkbox.adaptive()`][]| |<img src="/assets/images/docs/platform-adaptations/m3-radio.png" class="figure-img img-fluid rounded" alt="Radio in Material 3" /> <br/>`Radio`|<img src="/assets/images/docs/platform-adaptations/hig-radio.png" class="figure-img img-fluid rounded" alt="Radio in HIG" /><br/>`CupertinoRadio`|[`Radio.adaptive()`][]| ### Top app bar and navigation bar Since Android 12, the default UI for top app bars follows the design guidelines defined in [Material 3][mat-appbar]. On iOS, an equivalent component called "Navigation Bars" is defined in [Apple's Human Interface Guidelines][hig-appbar] (HIG). <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/mat-appbar.png" class="figure-img img-fluid rounded" alt=" Top App Bar in Material 3 " /> <figcaption class="figure-caption"> Top App Bar in Material 3 </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/hig-appbar.png" class="figure-img img-fluid rounded" alt="Navigation Bar in Human Interface Guidelines" /> <figcaption class="figure-caption"> Navigation Bar in Human Interface Guidelines </figcaption> </figure> </div> </div> </div> Certain properties of app bars in Flutter apps should be adapted, like system icons and page transitions. These are already automatically adapted when using the Material `AppBar` and `SliverAppBar` widgets. You can also further customize the properties of these widgets to better match iOS platform styles, as shown below. ```dart // Map the text theme to iOS styles TextTheme cupertinoTextTheme = TextTheme( headlineMedium: CupertinoThemeData() .textTheme .navLargeTitleTextStyle // fixes a small bug with spacing .copyWith(letterSpacing: -1.5), titleLarge: CupertinoThemeData().textTheme.navTitleTextStyle) ... // Use iOS text theme on iOS devices ThemeData( textTheme: Platform.isIOS ? cupertinoTextTheme : null, ... ) ... // Modify AppBar properties AppBar( surfaceTintColor: Platform.isIOS ? Colors.transparent : null, shadowColor: Platform.isIOS ? CupertinoColors.darkBackgroundGray : null, scrolledUnderElevation: Platform.isIOS ? .1 : null, toolbarHeight: Platform.isIOS ? 44 : null, ... ), ``` But, because app bars are displayed alongside other content in your page, it's only recommended to adapt the styling so long as its cohesive with the rest of your application. You can see additional code samples and a further explanation in [the GitHub discussion on app bar adaptations][appbar-post]. ### Bottom navigation bars Since Android 12, the default UI for bottom navigation bars follow the design guidelines defined in [Material 3][mat-navbar]. On iOS, an equivalent component called "Tab Bars" is defined in [Apple's Human Interface Guidelines][hig-tabbar] (HIG). <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/mat-navbar.png" class="figure-img img-fluid rounded" alt="Bottom Navigation Bar in Material 3 " /> <figcaption class="figure-caption"> Bottom Navigation Bar in Material 3 </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/hig-tabbar.png" class="figure-img img-fluid rounded" alt="Tab Bar in Human Interface Guidelines" /> <figcaption class="figure-caption"> Tab Bar in Human Interface Guidelines </figcaption> </figure> </div> </div> </div> Since tab bars are persistent across your app, they should match your own branding. However, if you choose to use Material's default styling on Android, you might consider adapting to the default iOS tab bars. To implement platform-specific bottom navigation bars, you can use Flutter's `NavigationBar` widget on Android and the `CupertinoTabBar` widget on iOS. Below is a code snippet you can adapt to show a platform-specific navigation bars. ```dart final Map<String, Icon> _navigationItems = { 'Menu': Platform.isIOS ? Icon(CupertinoIcons.house_fill) : Icon(Icons.home), 'Order': Icon(Icons.adaptive.share), }; ... Scaffold( body: _currentWidget, bottomNavigationBar: Platform.isIOS ? CupertinoTabBar( currentIndex: _currentIndex, onTap: (index) { setState(() => _currentIndex = index); _loadScreen(); }, items: _navigationItems.entries .map<BottomNavigationBarItem>( (entry) => BottomNavigationBarItem( icon: entry.value, label: entry.key, )) .toList(), ) : NavigationBar( selectedIndex: _currentIndex, onDestinationSelected: (index) { setState(() => _currentIndex = index); _loadScreen(); }, destinations: _navigationItems.entries .map<Widget>((entry) => NavigationDestination( icon: entry.value, label: entry.key, )) .toList(), )); ``` ### Text fields Since Android 12, text fields follow the [Material 3][m3-text-field] (M3) design guidelines. On iOS, Apple's [Human Interface Guidelines][hig-text-field] (HIG) define an equivalent component. <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/m3-text-field.png" class="figure-img img-fluid rounded" alt="Text Field in Material 3" /> <figcaption class="figure-caption"> Text Field in Material 3 </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/hig-text-field.png" class="figure-img img-fluid rounded" alt="Text Field in Human Interface Guidelines" /> <figcaption class="figure-caption"> Text Field in HIG </figcaption> </figure> </div> </div> </div> Since text fields require user input, their design should follow platform conventions. To implement a platform-specific `TextField` in Flutter, you can adapt the styling of the Material `TextField`. ```dart Widget _createAdaptiveTextField() { final _border = OutlineInputBorder( borderSide: BorderSide(color: CupertinoColors.lightBackgroundGray), ); final iOSDecoration = InputDecoration( border: _border, enabledBorder: _border, focusedBorder: _border, filled: true, fillColor: CupertinoColors.white, hoverColor: CupertinoColors.white, contentPadding: EdgeInsets.fromLTRB(10, 0, 0, 0), ); return Platform.isIOS ? SizedBox( height: 36.0, child: TextField( decoration: iOSDecoration, ), ) : TextField(); } ``` To learn more about adapting text fields, check out [the GitHub discussion on text fields][text-field-post]. You can leave feedback or ask questions in the discussion. ### Alert dialog Since Android 12, the default UI of alert dialogs (also known as a "basic dialog") follows the design guidelines defined in [Material 3][m3-dialog] (M3). On iOS, an equivalent component called "alert" is defined in Apple's [Human Interface Guidelines][hig-alert] (HIG). <div class="container"> <div class="row"> <div class="col-sm text-center"> <figure class="figure"> <img src="/assets/images/docs/platform-adaptations/m3-alert.png" class="figure-img img-fluid rounded" alt="Basic Dialog in Material 3" /> <figcaption class="figure-caption"> Basic Dialog in M3 </figcaption> </figure> </div> <div class="col-sm"> <figure class="figure text-center"> <img src="/assets/images/docs/platform-adaptations/cupertino-alert.png" class="figure-img img-fluid rounded" alt="Alert in Human Interface Guidelines" /> <figcaption class="figure-caption"> Alert in HIG </figcaption> </figure> </div> </div> </div> Since alert dialogs are often tightly integrated with the operating system, their design generally needs to follow the platform conventions. This is especially important when a dialog is used to request user input about security, privacy, and destructive operations (e.g., deleting files permanently). As an exception, a branded alert dialog design can be used on non-critical user flows to highlight specific information or messages. To implement platform-specific alert dialogs, you can use Flutter's `AlertDialog` widget on Android and the `CupertinoAlertDialog` widget on iOS. Below is a code snippet you can adapt to show a platform-specific alert dialog. ```dart void _showAdaptiveDialog( context, { required Text title, required Text content, required List<Widget> actions, }) { Platform.isIOS || Platform.isMacOS ? showCupertinoDialog<String>( context: context, builder: (BuildContext context) => CupertinoAlertDialog( title: title, content: content, actions: actions, ), ) : showDialog( context: context, builder: (BuildContext context) => AlertDialog( title: title, content: content, actions: actions, ), ); } ``` To learn more about adapting alert dialogs, check out [the GitHub discussion on dialog adaptations][alert-post]. You can leave feedback or ask questions in the discussion. [issue #8410]: {{site.repo.flutter}}/issues/8410#issuecomment-468034023 [android.app.AlertDialog]: {{site.android-dev}}/reference/android/app/AlertDialog.html [`ZoomPageTransitionsBuilder`]: {{site.api}}/flutter/material/ZoomPageTransitionsBuilder-class.html [`CupertinoNavigationBar`]: {{site.api}}/flutter/cupertino/CupertinoNavigationBar-class.html [`CupertinoSliverNavigationBar`]: {{site.api}}/flutter/cupertino/CupertinoSliverNavigationBar-class.html [default theme]: {{site.repo.flutter}}/blob/master/packages/flutter/lib/src/cupertino/text_theme.dart [Material/Cupertino adaptive widget problem definition]: http://bit.ly/flutter-adaptive-widget-problem [`Navigator.push()`]: {{site.api}}/flutter/widgets/Navigator/push.html [overscroll glow indicator]: {{site.api}}/flutter/widgets/GlowingOverscrollIndicator-class.html [overscrolls]: {{site.api}}/flutter/widgets/BouncingScrollPhysics-class.html [`PageRoute.fullscreenDialog`]: {{site.api}}/flutter/widgets/PageRoute-class.html [platform_design code samples]: {{site.repo.samples}}/tree/main/platform_design [`Icons.adaptive`]: {{site.api}}/flutter/material/PlatformAdaptiveIcons-class.html [slides and clip-reveals up]: {{site.api}}/flutter/material/OpenUpwardsPageTransitionsBuilder-class.html [slides up and fades in]: {{site.api}}/flutter/material/FadeUpwardsPageTransitionsBuilder-class.html [`startActivity()`]: {{site.android-dev}}/reference/android/app/Activity.html#startActivity(android.content.Intent [`WidgetsApp`]: {{site.api}}/flutter/widgets/WidgetsApp-class.html [issue #8427]: {{site.repo.this}}/issues/8427 [m3-dialog]: {{site.material}}/components/dialogs/overview [hig-alert]: {{site.apple-dev}}/design/human-interface-guidelines/components/presentation/alerts/ [alert-post]: {{site.repo.uxr}}/discussions/92 [appbar-post]: {{site.repo.uxr}}/discussions/93 [mat-appbar]: {{site.material}}/components/top-app-bar/overview [hig-appbar]: {{site.apple-dev}}/design/human-interface-guidelines/components/navigation-and-search/navigation-bars/ [`Checkbox.adaptive()`]: {{site.api}}/flutter/material/Checkbox/Checkbox.adaptive.html [`Radio.adaptive()`]: {{site.api}}/flutter/material/Radio/Radio.adaptive.html [`Switch.adaptive()`]: {{site.api}}/flutter/material/Switch/Switch.adaptive.html [`Slider.adaptive()`]: {{site.api}}/flutter/material/Slider/Slider.adaptive.html [`CircularProgressIndicator.adaptive()`]: {{site.api}}/flutter/material/CircularProgressIndicator/CircularProgressIndicator.adaptive.html [UI Component section]: {{site.api}}/platform-integration/platform-adaptations/#ui-components [mat-navbar]: {{site.material}}/components/navigation-bar/overview [hig-tabbar]: {{site.apple-dev}}/design/human-interface-guidelines/components/navigation-and-search/tab-bars/ [text-field-post]: {{site.repo.uxr}}/discussions/95 [m3-text-field]: {{site.material}}/components/text-fields/overview [hig-text-field]: {{site.apple-dev}}/design/human-interface-guidelines/text-fields
website/src/platform-integration/platform-adaptations.md/0
{ "file_path": "website/src/platform-integration/platform-adaptations.md", "repo_id": "website", "token_count": 12300 }
1,335
--- title: Support for WebAssembly (Wasm) description: >- Current status of Flutter's experimental support for WebAssembly (Wasm). short-title: Wasm last-update: March 13, 2024 --- **_Last updated {{page.last-update}}_** The Flutter and Dart teams are excited to add [WebAssembly](https://webassembly.org/) as a compilation target when building applications for the web. Development of WebAssembly support for Dart and Flutter remains ongoing, which will potentially result in frequent changes. Revisit this page for the latest updates. {{site.alert.note}} **Support for Wasm is now in beta!** : WebAssembly support for Flutter web is available on the Flutter [`beta`][] and [`main`][] channels. **Dart's next-gen Web interop is now stable!** : Migrate your packages to [`package:web`][] and [`dart:js_interop`][] to make them compatible with Wasm. Read the [Requires JS-interop](#js-interop-wasm) section to learn more. {{site.alert.end}} [`beta`]: {{site.github}}/flutter/flutter/wiki/flutter-build-release-channels#beta [`main`]: {{site.github}}/flutter/flutter/wiki/flutter-build-release-channels#master-aka-main [`package:web`]: {{site.pub-pkg}}/web [`dart:js_interop`]: {{site.dart.api}}/{{site.dart.sdk.channel}}/dart-js_interop ### Background To run a Flutter app that has been compiled to Wasm, you need a browser that supports [WasmGC][]. The Wasm standard plans to add WasmGC to help garbage-collected languages like Dart execute code in an efficient manner. [Chromium and V8][] released stable support for WasmGC in Chromium 119. Note that Chrome on iOS uses WebKit, which doesn't yet [support WasmGC][]. Firefox announced stable support for WasmGC in Firefox 120, but currently does not work due to a [known limitation](#known-limitations). [WasmGC]: https://github.com/WebAssembly/gc/tree/main/proposals/gc [Chromium and V8]: https://chromestatus.com/feature/6062715726462976 [support WasmGC]: https://bugs.webkit.org/show_bug.cgi?id=247394 [issue]: https://bugzilla.mozilla.org/show_bug.cgi?id=1788206 ### Try it out To try a pre-built Flutter web app using Wasm, check out the [Material 3 WasmGC preview demo](https://flutterweb-wasm.web.app/). To experiment with Wasm in your own apps, follow the steps below. #### Switch to the Flutter `beta` channel and upgrade Wasm compilation is available on the latest builds of the `beta` channel (preferred) or `main`. To learn more about Flutter build release channels and how to switch to the `beta` channel, check out the [Flutter wiki](https://github.com/flutter/flutter/wiki/Flutter-build-release-channels). To then ensure you are running the latest version, run `flutter upgrade`. To verify if your Flutter install supports Wasm, run `flutter build web --help`. At the bottom of the output, you should find experimental Wasm options like: ```console Experimental options --wasm Compile to WebAssembly rather than JavaScript. See https://flutter.dev/wasm for more information. --[no-]strip-wasm Whether to strip the resulting wasm file of static symbol names. (defaults to on) ``` #### Pick a (simple) Flutter web application Try the default template [sample app][], or choose any Flutter application that has been migrated to be [compatible with Wasm](#js-interop-wasm). [sample app]: /get-started/test-drive #### Modify `index.html` Before building with Wasm, you'll need to modify the bootstrap logic in your app's `web/index.html` file. ```html <!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title>Flutter web app</title> <script src="flutter.js"></script> </head> <body> <script> {% raw %}{{flutter_build_config}}{% endraw %} _flutter.loader.load(); </script> </body> </html> ``` This feature is under development. The current syntax (`flutter.js`, `{% raw %}{{flutter_build_config}}{% endraw %}`, `_flutter.loader.load()`) is a temporary solution in the `beta` and `main` channels now, but will be replaced by the actual syntax in an upcoming stable release. Stay tuned! #### Run `flutter build web --wasm` To build a web application with Wasm, add the `--wasm` flag to the existing `flutter build web` command. ```console flutter build web --wasm ``` The command sends its output to the `build/web` directory relative to package root. #### Serve the output locally with an HTTP server If you don't have a local HTTP server installed, you can use the [`dhttpd` package]({{site.pub-pkg}}/dhttpd): ```terminal flutter pub global activate dhttpd ``` Then change to the `build/web` directory and run the server with special headers: ```terminal $ cd build/web $ dhttpd '--headers=Cross-Origin-Embedder-Policy=credentialless;Cross-Origin-Opener-Policy=same-origin' Server started on port 8080 ``` #### Load it in a browser As of {{page.last-update}}, [only **Chromium-based browsers**](#chrome-119-or-later) (Version 119 or later) are able to run Flutter/Wasm content. If your configured browser meets the requirements, open [`localhost:8080`](http://localhost:8080) in the browser to view the app. If the application doesn't load: 1. Check the developer console for errors. 1. Validate a successful build with the typical JavaScript output. ### Known limitations Wasm support currently has some limitations. The following list covers some common issues. #### Chrome 119 or later As mentioned in [Load it in a browser](#load-it-in-a-browser), to run Flutter web apps compiled to Wasm, use _Chrome 119 or later_. Some earlier versions supported WasmGC with specific flags enabled, but WasmGC encodings changed once the feature was stabilized. To ensure compatibility, run the latest version of the Flutter `main` channel and the latest version of Chrome. - **Why not Firefox?** Firefox versions 120 and later were previously able to run Flutter/Wasm, but they're [currently experiencing a bug][] that is blocking compatibility with Wasm. - **Why not Safari?** Safari does not support WasmGC yet; [this bug][] tracks their implementation efforts. {{site.alert.warning}} Flutter compiled to Wasm can't run on the iOS version of any browser. All browsers on iOS are required to use WebKit, and can't use their own browser engine. {{site.alert.end}} [currently experiencing a bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=1788206 [this bug]: https://bugs.webkit.org/show_bug.cgi?id=247394 #### Requires JS-interop to access browser and JS APIs {#js-interop-wasm} To support compilation to Wasm, [Dart has shifted][JS interop] how it enables interop with browser and JavaScript APIs. This shift prevents Dart code that uses `dart:html` or `package:js` from compiling to Wasm. Instead, Dart now provides new, lightweight interop solutions built around static JS interop: - [`package:web`][], which replaces `dart:html` (and other web libraries) - [`dart:js_interop`][], which replaces `package:js` and `dart:js` Most packages owned by the Dart and Flutter teams have been migrated to be compatible with Wasm support in Flutter, such as [`package:url_launcher`][]. To learn how to migrate your packages and applications to the new solutions, check out the [JS interop][] documentation and [`package:web` migration guide][]. To check if a Wasm build failed due to incompatible APIs, review the error output. These often return soon after a build invocation. An API-related error should resemble the following: ```plaintext Target dart2wasm failed: Exception: ../../../../.pub-cache/hosted/pub.dev/url_launcher_web-2.0.16/lib/url_launcher_web.dart:6:8: Error: Dart library 'dart:html' is not available on this platform. import 'dart:html' as html; ^ Context: The unavailable library 'dart:html' is imported through these packages: web_plugin_registrant.dart => package:url_launcher_web => dart:html web_plugin_registrant.dart => package:url_launcher_web => package:flutter_web_plugins => dart:html web_plugin_registrant.dart => package:flutter_web_plugins => dart:html ``` [`package:url_launcher`]: {{site.pub-pkg}}/url_launcher [`package:web` migration guide]: {{site.dart-site}}/interop/js-interop/package-web [JS interop]: {{site.dart-site}}/interop/js-interop #### Only build support Neither `flutter run` nor [DevTools](/tools/devtools) support Wasm at the moment. ### Learn more Check out Flutter's [existing web support]({{site.main-url}}/multi-platform/web). Work on Flutter and Dart Wasm support continues. Once finished, your existing Flutter web apps shouldn't need much work to support Wasm. If you want to learn more, watch this talk from our team at Wasm I/O 2023: [Flutter, Dart, and WasmGC: A new model for web applications](https://youtu.be/Nkjc9r0WDNo). To follow the latest changes in the Flutter and Dart WebAssembly effort, revisit [flutter.dev/wasm]({{site.main-url}}/wasm).
website/src/platform-integration/web/wasm.md/0
{ "file_path": "website/src/platform-integration/web/wasm.md", "repo_id": "website", "token_count": 2825 }
1,336
--- title: Archive of What's new description: >- A list of previous what's new updates on docs.flutter.dev and related documentation sites. --- This page contains of archived announcements of what's new on the Flutter website and blog. For information on the latest releases, check out the [current what's new][] page. [current what's new]: /release/whats-new ## 15 November 2023: 3.16 release Flutter 3.16 is live! For more information, check out the [Flutter 3.16 blog post][3.16-umbrella] and the technical [What's new in Flutter 3.16][] blog post. You might also check out [Dart 3.2 release][]. **Docs updated or added since the 3.13 release** * As of this release, the **default theme for Material Flutter apps is Material 3**. Unless you explicitly specify Material 2 (with `useMaterial3: false`) in your app's theme, your app _will_ look different once you've updated. * While the Flutter Casual Games Toolkit isn't technically _part_ of the 3.16 release, we've release a significant update of the toolkit _alongside_ the 3.16 release. This update includes three completely new games code templates, three new games cookbook recipes, and a general reorganization of our games toolkit docs. For more information, check out [Casual Games Toolkit][] and make sure to look at the side nav! * The Impeller runtime is now **available for Android on Vulkan devices** behind the `--enable-impeller` flag. For more information, check out the [Impeller rendering engine][impeller] page. * You can now add Apple iOS app extensions to your Flutter app when running on iOS. To learn more, check out [Adding iOS app extensions][ios-app-ext]. **Articles** The following articles were published on the [Flutter Medium][] publication since Flutter 3.13: * [How IBM is creating a Flutter Center of Excellence][ibm] * [Introducing the Flutter Consulting Directory][fcd] * [Developing Flutter apps for large screens][ls] * [Dart & Flutter DevTools Extensions][dt-ext] * [Building your next casual game with Flutter][games-2] [3.16-umbrella]: {{site.flutter-medium}}/flutter-3-16-dart-3-2-high-level-umbrella-post-b9218b17f0f7 [Casual Games Toolkit]: /resources/games-toolkit [Dart 3.2 release]: {{site.medium}}/dartlang/dart-3-2-c8de8fe1b91f [dt-ext]: {{site.flutter-medium}}/dart-flutter-devtools-extensions-c8bc1aaf8e5f [fcd]: {{site.flutter-medium}}/introducing-the-flutter-consulting-directory-f6fc4c1d2ba3 [games-2]: {{site.flutter-medium}}/building-your-next-casual-game-with-flutter-716ef457e440 [ibm]: {{site.flutter-medium}}/how-ibm-is-creating-a-flutter-center-of-excellence-3c6a3c025441 [impeller]: /perf/impeller [ls]: {{site.flutter-medium}}/developing-flutter-apps-for-large-screens-53b7b0e17f10 [ios-app-ext]: /platform-integration/ios/app-extensions [What's new in Flutter 3.16]: {{site.flutter-medium}}/whats-new-in-flutter-3-16-dba6cb1015d1 ## 16 August 2023: 3.13 release Flutter 3.13 is live! For more information, check out the [Flutter 3.13 blog post][blog-general]. You might also check out [Dart 3.1 & a retrospective on functional style programming in Dart 3][]. In addition to new docs since the last release, we have been incrementally releasing a revamped version of the docs.flutter.dev website. Specifically, we have reorganized (flattened) the information architecture (IA) and have incorporated some of our most popular cookbook recipes into the sidenav. [Let us know what you think!][file-issue] **Docs updated or added since the 3.10 release** * A rewrite and rename that completes the [Use a native language debugger][oem] page. This page covers how to connect both a native debugger and a Dart debugger to your app for Android _and_ iOS. (The previous version of this page was out of date and didn't cover iOS.) * A new [Layout/Scrolling][scrolling-overview] overview page. (In fact, scrolling is also a new section of the IA.) * We have sunsetted the Happy Paths recommendations in favor of the [Flutter Favorites program][]. Look for additions to Flutter Favorites very soon! * The Impeller runtime is now available for macOS behind a flag. For more information, check out the [Impeller rendering engine][impeller] page. * As always, this release includes a few [breaking changes][breaking-changes]. The following links have more information, including info on how to migrate to the new APIs: * [Removing the `ignoreSemantics` property from `IgnorePointer`, `AbsorbPointer`, and `SliverIgnorePointer`][pointer] * [The `Editable.onCaretChanged` callback is removed][editable-onCaretChanged] * Also check out the [deprecated APIs since 3.10][deprecated-3.10] [blog-general]: {{site.flutter-medium}}/whats-new-in-flutter-3-13-479d9b11df4d [Dart 3.1 & a retrospective on functional style programming in Dart 3]: {{site.medium}}/dartlang/dart-3-1-a-retrospective-on-functional-style-programming-in-dart-3-a1f4b3a7cdda [Flutter Favorites program]: /packages-and-plugins/favorites [breaking-changes]: /release/breaking-changes [deprecated-3.10]: /release/breaking-changes/3-10-deprecations [editable-onCaretChanged]: /release/breaking-changes/editable-text-scroll-into-view [oem]: /testing/native-debugging?tab=from-vscode-to-xcode-ios [pointer]: /release/breaking-changes/ignoringsemantics-migration [scrolling-overview]: /ui/layout/scrolling **Codelabs and workshops** The following codelab has been published since Flutter 3.10: * [Adding a Home Screen widget to your Flutter app][home-screen] [home-screen]: {{site.codelabs}}/flutter-home-screen-widgets **Articles** The following articles were published on the [Flutter Medium][] publication since Flutter 3.10: * [The Future of iOS development with Flutter][] * [How it's made: I/O Flip][] * [Flutter 2023 Q1 survey results][] [Flutter 2023 Q1 survey results]: {{site.flutter-medium}}/flutter-2023-q1-survey-api-breaking-changes-deep-linking-and-more-7ff692f974e0 [How it's made: I/O Flip]: {{site.flutter-medium}}/how-its-made-i-o-flip-da9d8184ef57 [The Future of iOS development with Flutter]: {{site.flutter-medium}}/the-future-of-ios-development-with-flutter-833aa9779fac **What's coming** Things that are coming soon-ish to a stable release: **Material 3** You've probably heard by now that [Material 3][] is coming. It's been available on Flutter for some time now, by setting `useMaterial3: true` in your code. By the next stable release in Q4, Material 3 will be enabled by default. Now would be a good time to start migrating your code. Most all of the example code on this website has been updated to use Material 3. For more information, check out the following resources: * [Flutter 3.13 blog post][blog-material] * [Material Design for Flutter][] page **Impeller for Android** Progress continues on Impeller for Android. For more information, check out the [Flutter 3.13 blog post][blog-impeller]. **New scrolling APIs** We have been working on updating our scrolling APIs. The rework will eventually result in 2D scrolling support for trees and tables, even diagonal scrolling! Flutter 3.13 also provides new Sliver classes for fancy scrolling. For more information, check out the [Flutter 3.13 blog post][blog-scrolling]. **Updates to the Games toolkit** We are working on updates to the Flutter Games toolkit, including the sample code, additional docs, and a new video. The Games toolkit is developed independently of the Flutter SDK, so stay tuned for updates as they are ready. For more information, check out the [Flutter 3.13 blog post][blog-games]. [blog-games]: {{site.flutter-medium}}/whats-new-in-flutter-3-13-479d9b11df4d#30b2 [blog-impeller]: {{site.flutter-medium}}/whats-new-in-flutter-3-13-479d9b11df4d#a7be [blog-material]: {{site.flutter-medium}}/whats-new-in-flutter-3-13-479d9b11df4d#4c90 [blog-scrolling]: {{site.flutter-medium}}/whats-new-in-flutter-3-13-479d9b11df4d#02dc [Material 3]: {{site.material}} [Material Design for Flutter]: /ui/design/material <hr> ## 10 May 2023: Google I/O 2023: 3.10 release Flutter 3.10 is live! This release contains many updates and improvements. This page lists the documentation changes, but you can also check out the [3.10 blog post][] and the [3.10 release notes][]. You might also check out [Introducing Dart 3][]. [3.10 blog post]: {{site.flutter-medium}}/whats-new-in-flutter-3-10-b21db2c38c73 [3.10 release notes]: /release/release-notes/release-notes-3.10.0 [Introducing Dart 3]: {{site.medium}}/dartlang/announcing-dart-3-53f065a10635 **Docs updated or added since the 3.7 release** * Added section on [wireless debugging][] for iOS or Android to the add-to-app module guide. You can debug your iOS or Android app on a physical device over Wi-Fi. * Updated the [Material Widget Catalog][] to cover Material 3. * Added the new [canvasKitVariant runtime configuration][] setting. This web initialization option lets you configure which version of CanvasKit to download. * Updated the [Impeller][] reference. iOS apps now default to the Impeller renderer. * Added the [Android Java Gradle migration][] guide on resolving an incompatibility between Java 17 and Gradle releases prior to 7.3. * Updated the [DevTools][] reference material. * Updated the [WebAssembly support][] reference with guidelines on trying out preview support. * Added guide on [adding iOS app extensions][] to Flutter apps. This release enables using native iOS app extensions with your Flutter apps. * Added guide on [testing Flutter plugins][]. * Added guide on [fonts and typography][]. * Added guide on restoring state on [Android][] and [iOS][] Flutter apps. * Added a section about [sharing iOS and macOS plugin implementations][]. * Added a guide on adapting the Material [alert dialog][], [top app bar and navigation bar][], and [bottom navigation bar][] widgets to the current platform as a start of UI component platform adaptation guidelines. * Introduced the [Anatomy of an app][] section in the Architectural overview. * Added provenance information per SLSA to all downloads in the [SDK archive page][]. Provenance guarantees that the built artifact comes from the expected source. [wireless debugging]: /add-to-app/debugging [Material Widget Catalog]: /ui/widgets/material [canvasKitVariant runtime configuration]: /platform-integration/web/initialization#initializing-the-engine [Android Java Gradle migration]: /release/breaking-changes/android-java-gradle-migration-guide [DevTools]: /tools/devtools/overview [WebAssembly support]: /platform-integration/web/wasm [adding iOS app extensions]: /platform-integration/ios/app-extensions [testing Flutter plugins]: /testing/testing-plugins [fonts and typography]: /ui/design/text/typography [Android]: /platform-integration/android/restore-state-android [iOS]: /platform-integration/ios/restore-state-ios [sharing iOS and macOS plugin implementations]: /packages-and-plugins/developing-packages#shared-ios-and-macos-implementations [alert dialog]: /platform-integration/platform-adaptations#alert-dialog [top app bar and navigation bar]: /platform-integration/platform-adaptations#top-app-bar-and-navigation-bar [bottom navigation bar]: /platform-integration/platform-adaptations#bottom-navigation-bars [Anatomy of an app]: /resources/architectural-overview#anatomy-of-an-app [SDK archive page]: /release/archive **Codelabs** The following codelabs have been published since Flutter 3.7: * [Records and Patterns in Dart 3][]<br> Discover Dart 3's new records and patterns features. Learn how you can use them in a Flutter app to help you write more readable and maintainable Dart code. * [Building next generation UIs in Flutter][]<br> Learn how to build a Flutter app that uses the power of `flutter_animate`, fragment shaders, and particle fields. You will craft a user interface that evokes those science fiction movies and TV shows we all love watching when we aren't coding. * [Create haikus about Google products with the PaLM API and Flutter][]<br> **NEW** Learn how to build an app that uses the PaLM API to generate haikus based on Google product names. The PaLM API gives you access to Google's state-of-the-art large language models. [Building next generation UIs in Flutter]: {{site.codelabs}}/codelabs/flutter-next-gen-uis#0 [Records and Patterns in Dart 3]: {{site.codelabs}}/codelabs/dart-patterns-records [Create haikus about Google products with the PaLM API and Flutter]: {{site.codelabs}}/haiku-generator **Articles** The Flutter team published the following articles on the [Flutter Medium][] publication since Flutter 3.7: * [Flutter in 2023: strategy and roadmap][] * [Wonderous nominated for Webby Award][] [Wonderous nominated for Webby Award]: {{site.flutter-medium}}/wonderous-nominated-for-webby-award-8e00e2a648c2 [Flutter in 2023: strategy and roadmap]: {{site.flutter-medium}}/flutter-in-2023-strategy-and-roadmap-60efc8d8b0c7 ## 25 Jan 2023: Flutter Forward: 3.7 release Flutter 3.7 is live! This release contains many updates and improvements. This page lists the documentation changes, but you can also check out the [3.7 blog post][] and the [3.7 release notes][]. You might also check out [What's next for Flutter][] and [Introducing Dart 3 alpha][]. [3.7 blog post]: {{site.flutter-medium}}/whats-new-in-flutter-3-7-38cbea71133c [3.7 release notes]: /release/release-notes/release-notes-3.7.0 [Introducing Dart 3 alpha]: {{site.medium}}/dartlang/dart-3-alpha-f1458fb9d232 [What's next for Flutter]: {{site.flutter-medium}}/whats-next-for-flutter-b94ce089f49c **Docs updated or added since the 3.3 release** * You can now pass configuration information to the engine in the `initializeEngine` method. For more information, check out [Customizing web app initialization][]. * [Creating Flavors for Flutter][] Learn how to create a flavor in Flutter (also known as a _build configuration_ in iOS). * Internationalization support has been revamped and the [Internationalizing Flutter apps][] page is updated. * The DevTools memory debugging tool has been completely overhauled and the corresponding page, [Using the memory view][], is rewritten. * This release includes numerous improvements to Flutter's support for custom fragment shaders. For more information, see the new [Writing and using fragment shaders][] page. * Some security tools falsely report security vulnerabilities in Flutter apps. The new [Security false positives][] page lists the known false positives and why you can ignore them. * You can now invoke a platform channel from any isolate, including background isolates. For more information, check out [Writing custom platform-specific code][] and the [Introducing isolate background channels][] article on Medium. * We've updated our Swift documentation. New and updated pages include: * [Flutter for SwiftUI developers][] - updated * [Add a Flutter screen to an iOS app][] - updated for SwiftUI * [Flutter concurrency for Swift developers][] - new * [Learning Dart as a Swift developer][] on dart.dev - new * As of Xcode 14, Apple no longer supports bitcode. Two of our pages, [Adding an iOS clip target][] and the [Flutter FAQ][], are updated to reflect this fact. * For developers who enjoy living on the bleeding edge, you might want to try Flutter's future rendering engine, Impeller. Because Impeller isn't yet ready for a stable release, you can find more information on our [Flutter GitHub wiki][Impeller]. {% comment %} * Missing docs (xxx): * Frame analysis tab in Performance view - Kenzie * Menu bars (M3) - Greg Spencer No docs yet (other than API docs) * Cascading menus (M3) - Greg Spencer No docs yet (other than API docs) * Custom context menus - Justin No docs yet (he volunteered to do something after 3.7) * CupertinoListSelection, CupertinoListTile (new Cupertino) - Mitchell Goodwin * AnimatedGrid, AnimatedSliverGrid (new widgets) - Kate * Material 3 - what had been worked on? started? who in eng owns this? * Global selection improvements - ChunHeng Tai (chtai) * magnification property (who owns this? - I asked Justin) No docs yet (other than API docs) <https://main-api.flutter.dev/flutter/material/TextField/magnifierConfiguration.html> * Implementing iOS PlatformView BackdropFilter. (Blur) - Leigha and Chris Yang <https://docs.google.com/document/d/1V7Jc_RGaknrBBPPBBKB8lT7f3PKhYr8sin35MSMFAf4/edit> * Memory management updates - Zach Anderson * toImageSync - new API for rendering improvement - Zach Anderson Nope, nothing available * Font asset hot reload - Jonah {% endcomment -%} [Add a Flutter screen to an iOS app]: /add-to-app/ios/add-flutter-screen [Adding an iOS clip target]: /platform-integration/ios/ios-app-clip [Creating Flavors for Flutter]: /deployment/flavors [Customizing web app initialization]: /platform-integration/web/initialization [Flutter concurrency for Swift developers]: /get-started/flutter-for/dart-swift-concurrency [Flutter FAQ]: /resources/faq [Flutter for SwiftUI developers]: /get-started/flutter-for/swiftui-devs [Internationalizing Flutter apps]: /ui/accessibility-and-internationalization/internationalization [Introducing isolate background channels]: {{site.medium}}/flutter/introducing-background-isolate-channels-7a299609cad8 [Learning Dart as a Swift developer]: {{site.dart-site}}/guides/language/coming-from/swift-to-dart [Security false positives]: /reference/security-false-positives [Using the memory view]: /tools/devtools/memory [Writing and using fragment shaders]: /ui/design/graphics/fragment-shaders [Writing custom platform-specific code]: /platform-integration/platform-channels **Codelabs and workshops** We have new codelabs since the last stable release: * [Your first Flutter app][]<br> Learn about Flutter as you build an application that generates cool-sounding names, such as "newstay", "lightstream", "mainbrake", or "graypine". The user can ask for the next name, favorite the current one, and review the list of favorited names on a separate page. The final app is responsive to different screen sizes. (Note that this codelab replaces the previous "Write your first Flutter codelab for mobile, part 1 and part 2.") * [Using FFI in a Flutter plugin][]<br> Dart's FFI (foreign function interface) allows Flutter apps to use of existing native libraries that expose a C API. Dart supports FFI on Android, iOS, Windows, macOS, and Linux. * [Building a game with Flutter and Flame][]<br> Learn how to build a platformer game with Flutter and Flame! In the Doodle Dash game, inspired by Doodle Jump, you play as either Dash (the Flutter mascot), or her best friend Sparky (the Firebase mascot), and try to reach as high as possible by jumping on platforms. * [Add a user authentication flow to a Flutter app using FirebaseUI][]<br> Learn how to add Firebase Authentication to your Flutter app using the FlutterFire UI package. You'll add both email/password and Google Sign In authorization to a Flutter app. You'll also learn how to set up a Firebase project, and use the FlutterFire CLI to initialize Firebase in your Flutter app. * [Local development for your Flutter apps using the Firebase Emulator Suite][]<br> Learn how to use the Firebase Emulator Suite with Flutter during local development, including how to use email-password authentication with the Emulator Suite, and how to read and write data to the Firestore emulator. Also, you'll import and export data from the emulators, to work with the same faked data each time you return to development. In addition, we've updated all of our existing codelabs to support multiplatform. The [codelabs & workshops][] page is updated to reflect the latest available codelabs. [Add a user authentication flow to a Flutter app using FirebaseUI]: {{site.firebase}}/codelabs/firebase-auth-in-flutter-apps [Building a game with Flutter and Flame]: {{site.codelabs}}/codelabs/flutter-flame-game [codelabs & workshops]: /codelabs [Local development for your Flutter apps using the Firebase Emulator Suite]: {{site.firebase}}/codelabs/get-started-firebase-emulators-and-flutter [Using FFI in a Flutter plugin]: {{site.codelabs}}/codelabs/flutter-ffigen [Your first Flutter app]: {{site.codelabs}}/codelabs/flutter-codelab-first **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [What's next for Flutter][] * [Adapting Wonderous to larger device formats][] * [What's new in Flutter 3.7][3.7 blog post] * [Announcing the Flutter News Toolkit][] * [How it's made: Holobooth][] * [Playful typography with Flutter][] * [Material 3 for Flutter][] * [Introducing background isolate channels][] * [How can we improve the Flutter experience for desktop?][] * [What we learned from the Flutter Q3 2022 survey][] * [Supporting six platforms with two keyboards][] * [Studying developer's usage of IDEs for Flutter development][] [Announcing the Flutter News Toolkit]: {{site.flutter-medium}}/announcing-the-flutter-news-toolkit-180a0d32c012 [Adapting Wonderous to larger device formats]: {{site.flutter-medium}}/adapting-wonderous-to-larger-device-formats-ac51e1c00bc0 [How can we improve the Flutter experience for desktop?]: {{site.medium}}/flutter/how-can-we-improve-the-flutter-experience-for-desktop-70b34bff9392 [How it's made: Holobooth]: {{site.flutter-medium}}/how-its-made-holobooth-6473f3d018dd [Introducing background isolate channels]: {{site.flutter-medium}}/introducing-background-isolate-channels-7a299609cad8 [Material 3 for Flutter]: {{site.flutter-medium}}/material-3-for-flutter-d417a8a65564 [Playful typography with Flutter]: {{site.medium}}/flutter/playful-typography-with-flutter-f030385058b4 [Studying developer's usage of IDEs for Flutter development]: {{site.medium}}/flutter/studying-developers-usage-of-ides-for-flutter-development-4c0a648a48 [Supporting six platforms with two keyboards]: {{site.medium}}/flutter/what-we-learned-from-the-flutter-q3-2022-survey-9b78803accd2 [What we learned from the Flutter Q3 2022 survey]: {{site.medium}}/flutter/what-we-learned-from-the-flutter-q3-2022-survey-9b78803accd2 ## 31 Aug 2022: Flutter Vikings: 3.3 release Flutter 3.3 is live! For more information, see [What's new in Flutter 3.3][], and [Dart 2.18: Objective-C & Swift interop][] (free articles on Medium), and the [Flutter 3.3 release notes][3.3 release notes]. [3.3 release notes]: /release/release-notes/release-notes-3.3.0 [Dart 2.18: Objective-C & Swift interop]: {{site.medium}}/dartlang/dart-2-18-f4b3101f146c [What's new in Flutter 3.3]: {{site.medium}}/flutter/whats-new-in-flutter-3-3-893c7b9af1ff **Docs updated or added since the 3.0 release** * The [navigation and routing overview][] page has been rewritten with more guidance on using `Navigator` and `Router` together, named routes, and using a routing package. * The [URL strategies][] page has also been updated to reflect a more streamlined API. * For apps not published to the Microsoft Store, you can now set the app's executable's file and product versions in the pubspec file. For more information, see [Build and release a Windows desktop app][]. * If you are developing software for iOS 16 and higher, you must enable [Developer mode][]. The [macOS install][] page is updated with this information. * As described in the [3.3 release notes][], you should catch all errors and exceptions in your app by setting the `PlatformDispatcher.onError` callback, instead of using a custom `Zone`. The [Handling errors in Flutter][] page has been updated with this advice. [Build and release a Windows desktop app]: /deployment/windows [Developer mode]: {{site.apple-dev}}/documentation/xcode/enabling-developer-mode-on-a-device [Handling errors in Flutter]: /testing/errors [macOS install]: /get-started/install/macos/mobile-ios#configure-xcode [navigation and routing overview]: /ui/navigation [URL strategies]: /ui/navigation/url-strategies ## 11 May 2022: Google I/O 2022: Flutter 3 release Flutter 3 is live!!! For more information, see [Introducing Flutter 3][], [What's new in Flutter 3][], and [Dart 2.17: Productivity and integration][] (free articles on Medium), and the [Flutter 3 release notes][]. [Dart 2.17: Productivity and integration]: {{site.medium}}/dartlang/dart-2-17-b216bfc80c5d [Flutter 3 release notes]: /release/release-notes/release-notes-3.0.0 [Introducing Flutter 3]: {{site.medium}}/flutter/introducing-flutter-3-5eb69151622f [What's new in Flutter 3]: {{site.medium}}/flutter/whats-new-in-flutter-3-8c74a5bc32d0 **Docs updated or added since the 2.10 release** * We have launched the Casual Games Toolkit to help you build games with Flutter. Learn more on the [Games page][] and the [Games doc page][]. * Are you struggling to level up as a Flutter developer? We have created the Happy paths project to help. Learn more on the Happy paths page. (Note, this program has been discontinued in favor of the [Flutter Favorite Program][].) * Are you a web developer who would like more control over your app's launch process? Check out the new page, [Customizing web app initialization][], which has been added to the newly updated and collected web docs under `/platform-integration/web`. * Flutter 3 supports Apple Silicon processors. We've updated the [macOS install page][] to offer an Apple Silicon download button. * In Flutter 3, the macOS and Linux platforms have reached stable, in addition to Windows. You can now develop your app to run on any or all of these platforms. As a result, the [Desktop][] (and related) pages are updated. * The [Performance best practices][] page has largely been rewritten and moved to be more visible. The changes include additional advice on avoiding jank, including how to minimize layout passes caused by intrinsics, and techniques to minimize calls to `saveLayer()`. * Firebase's Flutter docs have been overhauled. Check out the newly updated [Flutter Firebase get started guide][]. * The [dart.dev][] site has its own [what's new][dart-whats-new] page, but one new page of note is the guide, [Learning Dart as a JavaScript developer][js-to-dart]. Stay tuned for similar articles on Swift and C#. [dart-whats-new]: {{site.dart-site}}/guides/whats-new [dart.dev]: {{site.dart-site}} [Desktop]: /platform-integration/desktop [Flutter Firebase get started guide]: {{site.firebase}}/docs/flutter/setup [Games page]: {{site.main-url}}/games [Games doc page]: /resources/games-toolkit [js-to-dart]: {{site.dart-site}}/guides/language/coming-from/js-to-dart [macOS install page]: /get-started/install/macos **Codelabs and workshops** We have a new codelab since the last stable release: * [Take your Flutter app from boring to beautiful][] Learn how to use features in Material 3 to make your more beautiful _and_ more responsive. Also, check out the workshops written by our GDEs and available on the [Flutter community blog][]. [Flutter community blog]: {{site.medium}}/@flutter_community/622b52f70173 [Take your Flutter app from boring to beautiful]: {{site.codelabs}}/codelabs/flutter-boring-to-beautiful **Videos** Google I/O 2022 is over, but you can still check out the Flutter-specific updates and talks from Google I/O on the [videos] page. [videos]: /resources/videos --- ## 03 Feb 2022: Windows Support: 2.10 release Desktop support for Microsoft Windows (a central feature of the 2.10 release) is live! For more information, see [Announcing Flutter for Windows][] and [What's new in Flutter 2.10][], free articles on Medium. <iframe width="560" height="315" src="{{site.yt.embed}}/g-0B_Vfc9qM" title="Learn how Flutter can develop Windows native apps" {{site.yt.set}}></iframe> [Announcing Flutter for Windows]: {{site.flutter-medium}}/announcing-flutter-for-windows-6979d0d01fed [What's new in Flutter 2.10]: {{site.flutter-medium}}/whats-new-in-flutter-2-10-5aafb0314b12 --- ## 08 Dec 2021: 2.8 release Flutter 2.8 is live! For details, see [Announcing Flutter 2.8][] and [What's new in Flutter 2.8][]. [Announcing Flutter 2.8]: {{site.flutter-medium}}/announcing-flutter-2-8-31d2cb7e19f5 [What's new in Flutter 2.8]: {{site.flutter-medium}}/whats-new-in-flutter-2-8-d085b763d181 ## 08 Sep 2021: 2.5 release Flutter 2.5 is live! For details, see [What's new in Flutter 2.5][]. We've made significant changes to flutter/website repo to make it easier to use and maintain. If you contribute to this repo, see the [README][] file for more information. **Docs updated or added since the 2.2 release** * A new page on [Using Actions and Shortcuts][]. **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [Raster thread performance optimization tips][] * [Writing a good code sample][] * [GSoC'21: Creating a desktop sample for Flutter][] * [Flutter Hot Reload][] * [What can we do to better improve Flutter?][] * [Adding Flutter to your existing iOS and Android codebases][] * [Google I/O Spotlight: Flutter in action at ByteDance][] * [Improving Platform Channel Performance in Flutter][] [Adding Flutter to your existing iOS and Android codebases]: {{site.flutter-medium}}/adding-flutter-to-your-existing-ios-and-android-codebases-3e2c5a4797c1 [What's new in Flutter 2.5]: {{site.flutter-medium}}/whats-new-in-flutter-2-5-6f080c3f3dc [Flutter Hot Reload]: {{site.flutter-medium}}/flutter-hot-reload-f3c5994e2cee [Google I/O Spotlight: Flutter in action at ByteDance]: {{site.flutter-medium}}/google-i-o-spotlight-flutter-in-action-at-bytedance-c22f4b6dc9ef [GSoC'21: Creating a desktop sample for Flutter]: {{site.flutter-medium}}/gsoc-21-creating-a-desktop-sample-for-flutter-7d77e74812d6 [Improving Platform Channel Performance in Flutter]: {{site.flutter-medium}}/improving-platform-channel-performance-in-flutter-e5b4e5df04af [Raster thread performance optimization tips]: {{site.flutter-medium}}/raster-thread-performance-optimization-tips-e949b9dbcf06 [README]: {{site.repo.this}}/#flutter-website [Using Actions and Shortcuts]: /ui/interactivity/actions-and-shortcuts [What can we do to better improve Flutter?]: {{site.flutter-medium}}/what-can-we-do-better-to-improve-flutter-q2-2021-user-survey-results-1037fb8f057b [Writing a good code sample]: {{site.flutter-medium}}/writing-a-good-code-sample-323358edd9f3 --- ## 18 May 2021: Google I/O 2021: 2.2 release Flutter 2.2 is live! For details, see [Announcing Flutter 2.2][] and [What's New in Flutter 2.2][]. We continue migrating code on the website to use null safety, but that work is not yet completed. **Docs updated or added since the 2.0 release** * A new page on [Building adaptive apps][]. * A new page describing how to use [Google APIs][] with Flutter. * A new landing page for [Embedded Support for Flutter][]. * A new page on setting up and using [Deferred components][] on Android. * Significant updates to the DevTools [Memory view page][]. * The [desktop][] page is updated to reflect the progress on desktop support, particularly the new support for Windows UWP. {% comment %} * migration guides (drag gestures and package:flutter_lints, depending) {% endcomment %} **Codelabs** New codelabs since the last stable release: * [Adding in-app purchases to your Flutter app][] * [Build Voice Bots for Android with Dialogflow Essentials & Flutter][] * [Get to know Firebase for Flutter][] **Workshops** For Google I/O 2021, we have added a new Flutter/Dart learning tool that is based on DartPad: **Workshops!** These workshops are designed to be instructor led. The instructor-led videos are available on the Flutter and Firebase YouTube channels: * [Building your first Flutter app][] * [Firebase for Flutter][] * [Flutter and Dialogflow voice bots][] * [Inherited widgets][] * [Null safety][] * [Slivers][] To see the event list of "all things Flutter" at I/O, see the [Google 2021 I/O Flutter][] page. You can author your own DartPad workshops! If you are interested, check out the following resources: * [DartPad Workshop Authoring Guide][] * [DartPad Sharing Guide (using a Gist file)][] * [Embedding DartPad in your web page][] [Google 2021 I/O Flutter]: https://events.google.com/io/program/content?4=topic_flutter **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [How It's Made: I/O Photo Booth][] * [Which factors affected users' decisions to adopt Flutter? - Q1 2021 user survey results][Q1 2021 survey] [Adding in-app purchases to your Flutter app]: {{site.codelabs}}/codelabs/flutter-in-app-purchases [Announcing Flutter 2.2]: {{site.flutter-medium}}/announcing-flutter-2-2-at-google-i-o-2021-92f0fcbd7ef9 [Building adaptive apps]: /ui/layout/responsive/building-adaptive-apps [Build Voice Bots for Android with Dialogflow Essentials & Flutter]: {{site.codelabs}}/codelabs/dialogflow-flutter [Building your first Flutter app]: {{site.yt.watch}}?v=Z6KZ3cTGBWw [DartPad Sharing Guide (using a Gist file)]: {{site.github}}/dart-lang/dart-pad/wiki/Sharing-Guide [DartPad Workshop Authoring Guide]: {{site.github}}/dart-lang/dart-pad/wiki/Workshop-Authoring-Guide [Deferred components]: /perf/deferred-components [Embedded Support for Flutter]: /embedded [Embedding DartPad in your web page]: {{site.github}}/dart-lang/dart-pad/wiki/Embedding-Guide [Firebase for Flutter]: {{site.yt.watch}}?v=4wunbF29Kkg [Flutter and Dialogflow voice bots]: {{site.yt.watch}}?v=O7JfSF3CJ84 [Get to know Firebase for Flutter]: {{site.firebase}}/codelabs/firebase-get-to-know-flutter#0 [Google APIs]: /data-and-backend/google-apis [How It's Made: I/O Photo Booth]: {{site.flutter-medium}}/how-its-made-i-o-photo-booth-3b8355d35883 [Inherited widgets]: {{site.yt.watch}}?v=LFcGPS6cGrY [Memory view page]: /tools/devtools/memory [Null safety]: {{site.yt.watch}}?v=HdKwuHQvArY [Slivers]: {{site.yt.watch}}?v=YY-_yrZdjGc [Q1 2021 survey]: {{site.flutter-medium}}/which-factors-affected-users-decisions-to-adopt-flutter-q1-2021-user-survey-results-563e61fc68c9 [What's New in Flutter 2.2]: {{site.flutter-medium}}/whats-new-in-flutter-2-2-fd00c65e2039 --- ## 03 Mar 2021: Flutter Engage: 2.0 release Flutter 2 is live!!! For more information, see [Announcing Flutter 2][], [What's new in Flutter 2][], [Flutter web support hits the stable milestone][], [Announcing Dart 2.12][], and the [Flutter 2 release notes][]. **Docs updated or added since the 1.22 release** * A new [Who is Dash?][] page! * Information about monetizing your apps has been collected in the new [Flutter Ads][] landing page. * Added a new page explaining the [Flutter Fix][] feature and how to use it. * New and updated web pages, including: * [Web support for Flutter][] * [Configuring the URL strategy on the web][] * [Web FAQ][] * The [Desktop support for Flutter][] page is updated, as well as other pages on the site that discuss desktop support. * The [DevTools][] docs have been updated. The most significant updates are to the following page: * [Flutter inspector][] * Added a page on how to [implement deep linking][] for mobile and web. * Updated the [Creating responsive and adaptive apps][] page. * Many pages (including all codelabs on flutter.dev) and examples are updated to be null safe. * Added two new add to app pages: * [Using multiple Flutter instances][] * [Adding a Flutter view to an Android app][] * Added a page on how to [write integration tests using the integration_test package][]. * Significant updates to the [internationalization][] page. * New and updated [performance][] pages, including: * [Performance metrics][] * [Performance faq][] * [More thoughts about performance][] **Codelabs** Many of our codelabs have been updated to null safety. We've also added a new codelab since the last stable release: * [Adding AdMob banner and native inline ads to a Flutter app][] For a complete list, see [Flutter codelabs][]. **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [Flutter performance updates in the first half of 2020][perf-H1-2020] * [Are you happy with Flutter? - Q4 2020 user survey results][Q4] * [Join us for #30DaysOfFlutter][] * [Providing operating system compatibility on a large scale][comp] * [Updates on Flutter Testing][] * [Announcing Dart null safety beta][] * [Deprecation Lifetime in Flutter][] * [New ad formats for Flutter][] * [Accessible expression with Material Icons and Flutter][] * [Dart sound null safety: technical preview 2][] * [Flutter on the web, slivers, and platform-specific issues: user survey results from Q3 2020][Q3] * [Testable Flutter and Cloud Firestore][] * [Performance testing on the web][] [Accessible expression with Material Icons and Flutter]: {{site.flutter-medium}}/accessible-expression-with-material-icons-and-flutter-e3f3f622200b [Adding AdMob banner and native inline ads to a Flutter app]: {{site.codelabs}}/codelabs/admob-inline-ads-in-flutter [Adding a Flutter view to an Android app]: /add-to-app/android/add-flutter-view [Announcing Dart null safety beta]: {{site.flutter-medium}}/announcing-dart-null-safety-beta-4491da22077a [Announcing Dart 2.12]: {{site.medium}}/dartlang/announcing-dart-2-12-499a6e689c87 [Announcing Flutter 2]: {{site.google-blog}}/2021/03/announcing-flutter-2.html [comp]: {{site.flutter-medium}}/providing-operating-system-compatibility-on-a-large-scale-374cc2fb0dad [Configuring the URL strategy on the web]: /ui/navigation/url-strategies [Creating responsive and adaptive apps]: /ui/layout/responsive/adaptive-responsive [Dart sound null safety: technical preview 2]: {{site.flutter-medium}}/null-safety-flutter-tech-preview-cb5c98aba187 [Deprecation Lifetime in Flutter]: {{site.flutter-medium}}/deprecation-lifetime-in-flutter-e4d76ee738ad [Desktop support for Flutter]: /platform-integration/desktop [Flutter Ads]: {{site.main-url}}/monetization [Flutter 2 release notes]: /release/release-notes/release-notes-2.0.0 [Flutter Fix]: /tools/flutter-fix [Flutter inspector]: /tools/devtools/inspector [Flutter web support hits the stable milestone]: {{site.flutter-medium}}/flutter-web-support-hits-the-stable-milestone-d6b84e83b425 [implement deep linking]: /ui/navigation/deep-linking [internationalization]: /ui/accessibility-and-internationalization/internationalization [Join us for #30DaysOfFlutter]: {{site.flutter-medium}}/join-us-for-30daysofflutter-9993e3ec847b [More thoughts about performance]: /perf/appendix [New ad formats for Flutter]: {{site.flutter-medium}}/new-ads-beta-inline-banner-and-native-support-for-the-flutter-mobile-ads-plugin-e48a7e9a0e64 [perf-H1-2020]: {{site.flutter-medium}}/flutter-performance-updates-in-the-first-half-of-2020-5c597168b6bb [performance]: /perf [Performance faq]: /perf/faq [Performance metrics]: /perf/metrics [Performance testing on the web]: {{site.flutter-medium}}/performance-testing-on-the-web-25323252de69 [Q3]: {{site.flutter-medium}}/flutter-on-the-web-slivers-and-platform-specific-issues-user-survey-results-from-q3-2020-f8034236b2a8 [Q4]: {{site.flutter-medium}}/are-you-happy-with-flutter-q4-2020-user-survey-results-41cdd90aaa48 [Testable Flutter and Cloud Firestore]: {{site.flutter-medium}}/flutter/testable-flutter-and-cloud-firestore-1cf2fbbce97b [Updates on Flutter Testing]: {{site.flutter-medium}}/updates-on-flutter-testing-f54aa9f74c7e [Using multiple Flutter instances]: /add-to-app/multiple-flutters [Web FAQ]: /platform-integration/web/faq [Web support for Flutter]: /platform-integration/web [What's new in Flutter 2]: {{site.flutter-medium}}/whats-new-in-flutter-2-0-fe8e95ecc65 [Who is Dash?]: /dash [write integration tests using the integration_test package]: /testing/integration-tests --- ## 01 Oct 2020: 1.22 release Flutter 1.22 is live! For details, see [Announcing Flutter 1.22][]. **Docs updated or added to flutter.dev since the 1.20 release** * Updated the [Developing for iOS 14][] page with details about targeting iOS 14 with Flutter, including some Add-to-App, deep linking, and notification considerations. * Added a page on how to [add an iOS App Clip][], a new iOS 14 feature that supports running lightweight, no-install apps under 10 MB. * Added a page that describes how to [migrate your app to use the new icon glyphs available in `CupertinoIcons`][cupertino-icons]. * Added a page that describes the new implementation for Platform Views and how to use them to host native [Android views] and [iOS views][] in your Flutter app platform-views. This feature has enabled the [google_maps_flutter][] and [webview_flutter][] plugins to be updated to production-ready release 1.0. * Added a page that describes how to use the new [App Size tool][] in Dart DevTools. **Codelabs** We've added a new codelab since the last stable release: * [Building Beautiful Transitions with Material Motion for Flutter][]<br> Learn how to use the Material [animations][] package to add prebuilt transitions to a Material app called Reply. For a complete list, see [Flutter codelabs][]. **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [Learning Flutter's new navigation and routing][] * [Integration testing with flutter_driver][] * [Announcing Flutter Windows Alpha][] * [Handling web gestures in Flutter][] * [Supporting iOS 14 and Xcode 12 with Flutter][] * [Learn testing with the new Flutter sample][] * [Platform channel examples][] * [Updates on Flutter and Firebase][] [add an iOS App Clip]: /platform-integration/ios/ios-app-clip [animations]: {{site.pub}}/packages/animations [Announcing Flutter 1.22]: {{site.flutter-medium}}/announcing-flutter-1-22-44f146009e5f [Announcing Flutter Windows Alpha]: {{site.flutter-medium}}/announcing-flutter-windows-alpha-33982cd0f433 [App Size tool]: /tools/devtools/app-size [Building Beautiful Transitions with Material Motion for Flutter]: {{site.codelabs}}/codelabs/material-motion-flutter [cupertino-icons]: /release/breaking-changes/cupertino-icons-1.0.0 [Developing for iOS 14]: /platform-integration/ios/ios-debugging [google_maps_flutter]: {{site.pub}}/packages/google_maps_flutter [Handling web gestures in Flutter]: {{site.flutter-medium}}/handling-web-gestures-in-flutter-e16946a04745 [Integration testing with flutter_driver]: {{site.flutter-medium}}/integration-testing-with-flutter-driver-36f66ede5cf2 [Learn testing with the new Flutter sample]: {{site.flutter-medium}}/learn-testing-with-the-new-flutter-sample-gsoc20-work-product-e872c7f6492a [Learning Flutter's new navigation and routing]: {{site.flutter-medium}}/learning-flutters-new-navigation-and-routing-system-7c9068155ade [Platform channel examples]: {{site.flutter-medium}}/platform-channel-examples-7edeaeba4a66 [Android views]: /platform-integration/android/platform-views [iOS views]: /platform-integration/ios/platform-views [Supporting iOS 14 and Xcode 12 with Flutter]: {{site.flutter-medium}}/supporting-ios-14-and-xcode-12-with-flutter-15fe0062e98b [Updates on Flutter and Firebase]: {{site.flutter-medium}}/updates-on-flutter-and-firebase-8076f70bc90e [webview_flutter]: {{site.pub}}/packages/webview_flutter ## 05 Aug 2020: 1.20 release Flutter 1.20 is live! For details, see [Announcing Flutter 1.20][]. **Docs updated or added to flutter.dev** * [Flutter architectural overview][], a deep dive into Flutter's architecture, was added to the site just a few days after the 1.20 release. * [Reducing shader compilation jank on mobile][] is added to the performance docs. * [Developing for iOS 14 beta][] outlines some issues you might run into if developing for devices running iOS 14 beta. * New instructions for [installing Flutter on Linux using snapd.][] * Updated the [Desktop support][] page to reflect that Linux desktop apps (as well as macOS) are available as alpha. * Several new Flutter books have been published. The [Flutter books][] page is updated. * The [codelabs landing][] page has been updated. A deep dive into null safety has been added to dart.dev: * [Understanding null safety][] **Codelabs** [Flutter Day][] was held on 6/25/2020. In preparation for the event, we wrote new codelabs and updated existing codelabs. New codelabs include: * [Adding Admob Ads to a Flutter app][] * [How to write a Flutter plugin][] * [Multi-platform Firestore Flutter][] * [Using a plugin with a Flutter web app][] * [Write a Flutter desktop application][] For a complete list, see [Flutter codelabs][]. **Articles** We've published the following articles on the [Flutter Medium][] publication since the last stable release: * [Announcing Adobe XD support for Flutter][] * [What are the important & difficult tasks for Flutter devs? - Q1 2020 survey results][q1-2020] * [Optimizing performance in Flutter web apps with tree shaking and deferred loading][shaking] * [Flutter Package Ecosystem Update][] * [Improving perceived performance with image placeholders, precaching, and disabled navigation transitions][web-perf] * [Two Months of #FlutterGoodNewsWednesday][] * [Handling 404: Page not found error in Flutter][] * [Flutter and Desktop apps][] * [What's new with the Slider widget?][] * [New tools for Flutter developers, built in Flutter][dev-tools] * [Canonical enables Linux desktop app support with Flutter][ubuntu] * [Enums with Extensions in Dart][] * [Managing issues in a large-scale open source project][] * [What we learned from the Flutter Q2 2020 survey][] * [Building performant Flutter widgets][] * [How to debug layout issues with the Flutter Inspector][] * [Going deeper with Flutter's web support][] * [Flutter Performance Updates in 2019][] [Adding Admob Ads to a Flutter app]: {{site.codelabs}}/codelabs/admob-ads-in-flutter/ [Announcing Adobe XD Support for Flutter]: {{site.flutter-medium}}/announcing-adobe-xd-support-for-flutter-4b3dd55ff40e [Announcing Flutter 1.20]: {{site.flutter-medium}}/announcing-flutter-1-20-2aaf68c89c75 [Building performant Flutter widgets]: {{site.flutter-medium}}/building-performant-flutter-widgets-3b2558aa08fa [codelabs landing]: /codelabs [Desktop support]: /platform-integration/desktop [dev-tools]: {{site.flutter-medium}}/new-tools-for-flutter-developers-built-in-flutter-a122cb4eec86 [Developing for iOS 14 beta]: /platform-integration/ios/ios-debugging [Enums with Extensions in Dart]: {{site.flutter-medium}}/enums-with-extensions-dart-460c42ea51f7 [Flutter and Desktop apps]: {{site.flutter-medium}}/flutter-and-desktop-3a0dd0f8353e [Flutter architectural overview]: /resources/architectural-overview [Flutter books]: /resources/books [Flutter codelabs]: /codelabs [Flutter Day]: https://events.withgoogle.com/flutter-day/ [Flutter Package Ecosystem Update]: {{site.flutter-medium}}/flutter-package-ecosystem-update-d50645f2d7bc [Flutter Performance Updates in 2019]: {{site.flutter-medium}}/going-deeper-with-flutters-web-support-66d7ad95eb5224 [Going deeper with Flutter's web support]: {{site.flutter-medium}}/going-deeper-with-flutters-web-support-66d7ad95eb52 [Handling 404: Page not found error in Flutter]: {{site.flutter-medium}}/handling-404-page-not-found-error-in-flutter-731f5a9fba29 [How to write a Flutter plugin]: {{site.codelabs}}/codelabs/write-flutter-plugin [installing Flutter on Linux using snapd.]: /get-started/install/linux [Managing issues in a large-scale open source project]: {{site.flutter-medium}}/managing-issues-in-a-large-scale-open-source-project-b3be6eecae2b [How to debug layout issues with the Flutter Inspector]: {{site.flutter-medium}}/how-to-debug-layout-issues-with-the-flutter-inspector-87460a7b9db [Multi-platform Firestore Flutter]: {{site.codelabs}}/codelabs/friendlyeats-flutter/ [q1-2020]: {{site.flutter-medium}}/what-are-the-important-difficult-tasks-for-flutter-devs-q1-2020-survey-results-a5ef2305429b [Reducing shader compilation jank on mobile]: /perf/shader [shaking]: {{site.flutter-medium}}/optimizing-performance-in-flutter-web-apps-with-tree-shaking-and-deferred-loading-535fbe3cd674 [Two Months of #FlutterGoodNewsWednesday]: {{site.flutter-medium}}/two-months-of-fluttergoodnewswednesday-a12e60bab782 [ubuntu]: {{site.flutter-medium}}/announcing-flutter-linux-alpha-with-canonical-19eb824590a9 [Understanding null safety]: {{site.dart-site}}/null-safety/understanding-null-safety [Using a plugin with a Flutter web app]: {{site.codelabs}}/codelabs/web-url-launcher/ [web-perf]: {{site.flutter-medium}}/improving-perceived-performance-with-image-placeholders-precaching-and-disabled-navigation-6b3601087a2b [What's new with the Slider widget?]: {{site.flutter-medium}}/whats-new-with-the-slider-widget-ce48a22611a3 [What we learned from the Flutter Q2 2020 survey]: {{site.flutter-medium}}/what-we-learned-from-the-flutter-q2-2020-survey-a4f1fc8faac9 [Write a Flutter desktop application]: {{site.codelabs}}/codelabs/flutter-github-graphql-client/ ## 06 May 2020: Work-From-Home: 1.17 release Flutter 1.17 is live! For more information, see [Announcing Flutter 1.17][]. Docs added and updated since the last announcement include: * Added a new page on [Understanding constraints][], contributed by Marcelo Glasberg, a Flutter community member. * The [animations landing page][] has been re-written. This page now includes the animation decision tree that helps you figure out which animation approach is right for your needs. It also includes information on the new [package for pre-canned Material widget animations][]. * The [hot reload][] page has been re-written. We hope you find it to be clearer! * The [Desktop][] page has been updated and now includes information on setting up entitlements and using the App Sandbox on macOS. * The plugin docs are updated to cover the new Android Plugin APIs and also to describe Federated Plugins. Affected pages include: * [Developing packages and plugins][] * [Developing plugin packages][] * [Supporting the new Android plugin APIs][] * [Writing custom platform-specific code][] * Added an [Obfuscating Dart code][] page. (Moved from the wiki and updated as of 1.16.2.) * Added a page on using Xcode 11.4 and how to manually update your project. The tooling, which automatically updates your configuration when possible, might direct you to this page if it detects that it's needed. * Added a page on [Managing plugins and dependencies in add-to-app][add2app] when developing for Android. Other newness: * We've published a number of articles on the [Flutter Medium][] publication since the last stable release: * [Custom implicit animations in Flutter…with TweenAnimationBuilder][] * [Directional animations with build-in explicit animations][] * [When should I use AnimatedBuilder or AnimatedWidget?][] * [Improving Flutter with your opinion - Q4 2019 survey results][] * [How to write a Flutter web plugin, Part 2][] * [It's Time: The Flutter Clock contest results][] * [How to float an overlay widget over a (possibly transformed) UI widget][] * [How to embed a Flutter application in a website using DartPad][] * [Flutter web: Navigating URLs using named routes][] * [How to choose which Flutter animation widget is right for you?][] * [Announcing a free Flutter introductory course][] * [Announcing CodePen support for Flutter][] * [Animation deep dive][] * [Flutter Spring 2020 update][] * [Introducing Google Fonts for Flutter v 1.0.0!][] * [Flutter web support updates][] * [Modern Flutter plugin development][] [add2app]: /add-to-app/android/plugin-setup [Animation deep dive]: {{site.flutter-medium}}/animation-deep-dive-39d3ffea111f [animations landing page]: /ui/animations [Announcing a free Flutter introductory course]: {{site.flutter-medium}}/learn-flutter-for-free-c9bc3b898c4d [Announcing CodePen support for Flutter]: {{site.flutter-medium}}/announcing-codepen-support-for-flutter-bb346406fe50 [Announcing Flutter 1.17]: {{site.flutter-medium}}/announcing-flutter-1-17-4182d8af7f8e [Custom implicit animations in Flutter…with TweenAnimationBuilder]: {{site.flutter-medium}}/custom-implicit-animations-in-flutter-with-tweenanimationbuilder-c76540b47185 [Developing packages and plugins]: /packages-and-plugins/developing-packages [Developing plugin packages]: /packages-and-plugins/developing-packages#federated-plugins [Directional animations with build-in explicit animations]: {{site.flutter-medium}}/directional-animations-with-built-in-explicit-animations-3e7c5e6fbbd7 [Flutter Medium]: {{site.medium}}/flutter [Flutter Spring 2020 update]: {{site.flutter-medium}}/spring-2020-update-f723d898d7af [Flutter web: Navigating URLs using named routes]: {{site.flutter-medium}}/web-navigating-urls-using-named-routes-307e1b1e2050 [Flutter web support updates]: {{site.flutter-medium}}/web-support-updates-8b14bfe6a908 [hot reload]: /tools/hot-reload [How to choose which Flutter animation widget is right for you?]: {{site.flutter-medium}}/how-to-choose-which-flutter-animation-widget-is-right-for-you-79ecfb7e72b5 [How to embed a Flutter application in a website using DartPad]: {{site.flutter-medium}}/how-to-embed-a-flutter-application-in-a-website-using-dartpad-b8fd0ee8c4b9 [How to float an overlay widget over a (possibly transformed) UI widget]: {{site.flutter-medium}}/how-to-float-an-overlay-widget-over-a-possibly-transformed-ui-widget-1d15ca7667b6 [How to write a Flutter web plugin, Part 2]: {{site.flutter-medium}}/how-to-write-a-flutter-web-plugin-part-2-afdddb69ece6 [Improving Flutter with your opinion - Q4 2019 survey results]: {{site.flutter-medium}}/improving-flutter-with-your-opinion-q4-2019-survey-results-ba0e6721bf23 [Introducing Google Fonts for Flutter v 1.0.0!]: {{site.flutter-medium}}/introducing-google-fonts-for-flutter-v-1-0-0-c0e993617118 [It's Time: The Flutter Clock contest results]: {{site.flutter-medium}}/its-time-the-flutter-clock-contest-results-dcebe2eb3957 [Obfuscating Dart code]: /deployment/obfuscate [package for pre-canned Material widget animations]: {{site.pub}}/packages/animations [Modern Flutter plugin development]: {{site.flutter-medium}}/modern-flutter-plugin-development-4c3ee015cf5a [Supporting the new Android plugin APIs]: /release/breaking-changes/plugin-api-migration [Understanding constraints]: /ui/layout/constraints [When should I use AnimatedBuilder or AnimatedWidget?]: {{site.flutter-medium}}/when-should-i-useanimatedbuilder-or-animatedwidget-57ecae0959e8 ## 11 Dec 2019: Flutter Interact: 1.12 release Flutter 1.12 is live! For more information, see [Flutter: the first UI platform designed for ambient computing][], [Announcing Flutter 1.12: What a year!][] and the [Flutter 1.12.13][] release notes. Docs added and updated since the last announcement include: * To accompany an updated implementation of add-to-app, we have added documentation on how to [add Flutter to an existing app][] for both iOS and Android. * If you own plugin code, we encourage you to update to the new plugin APIs for Android. For more information, see [Migrating your plugin to the new Android APIs][]. * Web support has moved to the beta channel. For more information, see [Web support for Flutter][] and [Web support for Flutter goes beta][] on the Medium publication. Also, the [building a web app with Flutter][] page is updated. * A new [write your first Flutter app on the web][] codelab is added to the [Get started][] docs, and includes instructions on setting breakpoints in DevTools! * We've introduced a program for recommending particular Dart and Flutter plugins and packages. Learn more about the [Flutter Favorite program][]. * A new [implicit animations][] codelab is available featuring DartPad. (To run it, you don't need to download any software!) * Alpha support for MacOS (desktop) is now available in release 1.13 on the master and dev channels. For more information, see [Desktop support for Flutter][]. * The iOS section of the [app size][] page is updated to reflect the inclusion of bitcode. * An alpha release of Flutter Layout Explorer, a new feature (and part of the Flutter inspector) that allows you to explore a visual representation of your layout is available. For more information, see the [Flutter Layout Explorer][] docs. Other newness: * A brand-new version of [Flutter Gallery][]. Happy Fluttering! [add Flutter to an existing app]: /add-to-app [Announcing Flutter 1.12: What a year!]: {{site.flutter-medium}}/announcing-flutter-1-12-what-a-year-22c256ba525d [app size]: /perf/app-size#ios [building a web app with Flutter]: /platform-integration/web/building [Flutter: the first UI platform designed for ambient computing]: {{site.google-blog}}/2019/12/flutter-ui-ambient-computing.html?m=1 [Flutter Favorite program]: /packages-and-plugins/favorites [Flutter 1.12.13]: /release/release-notes/release-notes-1.12.13 [Flutter Gallery]: {{site.gallery-archive}} [Flutter Layout Explorer]: /tools/devtools/inspector#flutter-layout-explorer [Flutter Medium publication]: {{site.medium}}/flutter [Migrating your plugin to the new Android APIs]: /release/breaking-changes/plugin-api-migration [implicit animations]: /codelabs/implicit-animations [Web support for Flutter goes beta]: {{site.flutter-medium}}/web-support-for-flutter-goes-beta-35b64a1217c0 [write your first Flutter app on the web]: /get-started/codelab-web [Get started]: /get-started/install ## 10 Sep 2019: 1.9 release Flutter 1.9 is live! For more information, see [Flutter news from GDD China: uniting Flutter on web and mobile, and introducing Flutter 1.9][] and the [1.9.1 release notes][]. For the 1.9 release, Flutter's web support has been merged ("unforked") into the main repo. **Web support hasn't reached beta, and is not ready to be used in production.** Web and desktop support (which is also coming), will impact the website, which was originally written exclusively for developing Flutter mobile apps. Some website updates are available now (and listed below), but more will be coming. New and updated docs on the site include: * We've revamped the [Showcase][] page. * The Flutter layout codelab has been rewritten and uses the updated DartPad, the browser-based tool for running Dart code. DartPad now supports Flutter! [Try it out]({{site.dartpad}}) and let us know what you think. * A new page on [using the dart:ffi library][] to bind your app to native code (a feature currently under development). * The Performance view tool, which allows you to record and profile a session from your Dart/Flutter application, has been enabled in DevTools. For more information, see the [Performance view][] page. * A new page on [building a web application][]. * A new page on [creating responsive apps][] in Flutter. * A new page on [preparing a web app for release][]. * A new [web FAQ][]. * The [Flutter for web][] page is updated. Other relevant docs: * Error messages have been improved in SDK 1.9. For more information, read [Improving Flutter's Error Messages][] on the [Flutter Medium publication][]. * If you already have a web app that depends on the flutter_web package, the following instructions tell you how to migrate to the flutter package: [Upgrading from package:flutter_web to the Flutter SDK][]. * A new [`ToggleButtons`][] widget, described in the API docs. [ToggleButtons demo][] * A new [`ColorFiltered`][] widget, also described in the API docs. [ColorFiltered demo][] * New behavior for the [`SelectableText`][] widget. Happy Fluttering! [1.9.1 release notes]: /release/release-notes/release-notes-1.9.1 [building a web application]: /platform-integration/web/building [`ColorFiltered`]: {{site.api}}/flutter/widgets/ColorFiltered-class.html [ColorFiltered demo]: {{site.github}}/csells/flutter_color_filter [creating responsive apps]: /ui/layout/responsive/adaptive-responsive [Flutter for web]: /platform-integration/web [Flutter news from GDD China: uniting Flutter on web and mobile, and introducing Flutter 1.9]: {{site.google-blog}}/2019/09/flutter-news-from-gdd-china-flutter1.9.html?m=1 [Improving Flutter's Error Messages]: {{site.flutter-medium}}/improving-flutters-error-messages-e098513cecf9 [Performance view]: /tools/devtools/performance [preparing a web app for release]: /deployment/web [`SelectableText`]: {{site.api}}/flutter/material/SelectableText-class.html [Showcase]: {{site.main-url}}/showcase [`ToggleButtons`]: {{site.api}}/flutter/material/ToggleButtons-class.html [ToggleButtons demo]: {{site.github}}/csells/flutter_toggle_buttons [Upgrading from package:flutter_web to the Flutter SDK]: {{site.repo.flutter}}/wiki/Upgrading-from-package:flutter_web-to-the-Flutter-SDK [using the dart:ffi library]: /platform-integration/android/c-interop ## 09 Jul 2019: 1.7 release Flutter 1.7 is live! For more information, see [Announcing Flutter 1.7][] on the [Flutter Medium Publication][], and the [1.7.8 release notes][]. New and updated docs on the site include: * The [Preparing an Android app for release][] page is updated to discuss how to build an Android release using an app bundle, as well as how to create separate APK files for both 32-bit and 64-bit devices. * The [DevTools][] docs are migrated to flutter.dev. If you haven't tried this browser-based suite of debugging, performance, memory, and inspection tools that work with both Flutter and Dart apps and can be launched from Android Studio/IntelliJ _and_ VS Code, please check it out! * The [Simple app state management][] page is updated. The example code in the page now uses the 3.0 release of the Provider package. * A new animation recipe, [Animate a page route transition][] has been added to the [Cookbook][]. * The [Debugging][], [Flutter's build modes][], [Performance best practices][], and [Performance profiling][] pages are updated to reflect DevTools. A [Debugging apps programmatically][] page has also been added. The Flutter 1.7 release includes the new [`RangeSlider`][] component, which allows the user to select both the upper and lower endpoints in a range of values. For information about this component and how to customize it, see [Material RangeSlider in Flutter]. [1.7.8 release notes]: /release/release-notes/release-notes-1.7.8 [Animate a page route transition]: /cookbook/animation/page-route-animation [Announcing Flutter 1.7]: {{site.flutter-medium}}/announcing-flutter-1-7-9cab4f34eacf [Cookbook]: /cookbook [Debugging]: /testing/debugging [Debugging apps programmatically]: /testing/code-debugging [Flutter's build modes]: /testing/build-modes [Material RangeSlider in Flutter]: {{site.flutter-medium}}/material-range-slider-in-flutter-a285c6e3447d [Performance best practices]: /perf/best-practices [Performance profiling]: /perf/ui-performance [Preparing an Android app for release]: /deployment/android [`RangeSlider`]: {{site.api}}/flutter/material/RangeSlider-class.html [Simple app state management]: /data-and-backend/state-mgmt/simple ## 07 May 2019: Google I/O 2019: 1.5 release [Flutter 1.5][] is live! For more information on updates, see the [1.5.4 release notes][] or [download the release][]. We are updating DartPad to work with Flutter. Try the new Basic Flutter layout codelab and tell us what you think! [download the release]: /release/archive [Flutter 1.5]: {{site.google-blog}}/2019/05/Flutter-io19.html [1.5.4 release notes]: /release/release-notes/release-notes-1.5.4 ## 26 Feb 2019: 1.2 release Flutter released [version 1.2][] at Mobile World Congress (MWC) in Barcelona. For more information, see the [1.2.1 release notes][] or [download the release][]. In addition, here are some recent new and updated docs: * We've updated our [state management advice][]. New pages include an [introduction][], [thinking declaratively][], [ephemeral vs app state][], [simple app state management][], and [different state management options]. Documenting state management is a tricky thing, as there is no one-size-fits-all approach. We'd love your feedback on these new docs! * A new page on [Performance best practices][]. * Also at MWC, we announced a preview version of the new Dart DevTools for profiling and debugging Dart and Flutter apps. You can find the docs on the DevTools wiki (Note: since moved to [this site][].) In particular, check out the DevTool's [widget inspector][] for debugging your UI, or the [timeline view][] for profiling your Flutter application. Try them out and let us know what you think! * An update to the [Performance profiling][] page that incorporates the new Dart DevTools UI. * Updates to the [Android Studio/IntelliJ][] and [VS Code][] pages incorporating info from the new Dart DevTools UI. If you have questions or comments about any of these docs, [file an issue][file-issue]. [Android Studio/IntelliJ]: /tools/android-studio [different state management options]: /data-and-backend/state-mgmt/options [ephemeral vs app state]: /data-and-backend/state-mgmt/ephemeral-vs-app [file-issue]: {{site.repo.this}}/issues [introduction]: /data-and-backend/state-mgmt/intro [1.2.1 release notes]: /release/release-notes/release-notes-1.2.1 [state management advice]: /data-and-backend/state-mgmt/intro [thinking declaratively]: /data-and-backend/state-mgmt/declarative [this site]: /tools/devtools [timeline view]: /tools/devtools/performance [VS Code]: /tools/vs-code [widget inspector]: /tools/devtools/inspector [version 1.2]: {{site.google-blog}}/2019/02/launching-flutter-12-at-mobile-world.html ## 05 Nov 2018: new website Welcome to the revamped Flutter website! We've spent the last few months redesigning the website and how its information is organized. We hope you can more easily find the docs you are looking for. Some of the changes to the website include: * Revised [front][] page * Revised [showcase][] page * Revised [community][] page * Revised navigation in the left side bar * Table of contents on the right side of most pages Some of the new content includes: * Deep dive on Flutter internals, [Inside Flutter][] * [Technical videos][] * [State management][] * [Background Dart processes][] * [Flutter's build modes][] {% comment %} * How to connect [a native debugger _and_ a Dart debugger to your app] (not yet complete) {% endcomment %} If you have questions or comments about the revamped site, [file an issue][]. [a native debugger _and_ a Dart debugger to your app]: /testing/oem-debuggers [Background Dart processes]: /packages-and-plugins/background-processes [community]: {{site.main-url}}/community [file an issue]: {{site.repo.this}}/issues [front]: / [Inside Flutter]: /resources/inside-flutter [State management]: /data-and-backend/state-mgmt [Technical videos]: /resources/videos
website/src/release/archive-whats-new.md/0
{ "file_path": "website/src/release/archive-whats-new.md", "repo_id": "website", "token_count": 20725 }
1,337
--- title: Android ActivityControlSurface attachToActivity signature change description: > attachToActivity activity parameter changed to ExclusiveAppComponent instead of Activity. --- ## Summary {{site.alert.note}} If you use standard Android embedding Java classes like [`FlutterActivity`][] or [`FlutterFragment`][], and don't manually embed a [`FlutterView`][] inside your own custom `Activity` (this should be uncommon), you can stop reading. {{site.alert.end}} A new [`ActivityControlSurface`][] method: ```java void attachToActivity( @NonNull ExclusiveAppComponent<Activity> exclusiveActivity, @NonNull Lifecycle lifecycle); ``` is replacing the now deprecated method: ```java void attachToActivity(@NonNull Activity activity, @NonNull Lifecycle lifecycle); ``` The existing deprecated method with the `Activity` parameter was removed in Flutter 2. ## Context In order for custom Activities to also supply the `Activity` lifecycle events Flutter plugins expect using the [`ActivityAware`][] interface, the [`FlutterEngine`][] exposed a [`getActivityControlSurface()`][] API. This allows custom Activities to signal to the engine (with which it has a `(0|1):1` relationship) that it was being attached or detached from the engine. {{site.alert.note}} This lifecycle signaling is done automatically when you use the engine's bundled [`FlutterActivity`][] or [`FlutterFragment`][], which should be the most common case. {{site.alert.end}} However, the previous API had the flaw that it didn't enforce exclusion between activities connecting to the engine, thus enabling `n:1` relationships between the activity and the engine, causing lifecycle cross-talk issues. ## Description of change After [Issue #21272][], instead of attaching your activity to the [`FlutterEngine`][] by using the: ```java void attachToActivity(@NonNull Activity activity, @NonNull Lifecycle lifecycle); ``` API, which is now deprecated, instead use: ```java void attachToActivity( @NonNull ExclusiveAppComponent<Activity> exclusiveActivity, @NonNull Lifecycle lifecycle); ``` An `ExclusiveAppComponent<Activity>` interface is now expected instead of an `Activity`. The `ExclusiveAppComponent<Activity>` provides a callback in case your exclusive activity is being replaced by another activity attaching itself to the `FlutterEngine`. ```java void detachFromActivity(); ``` API remains unchanged and you're still expected to call it when your custom activity is being destroyed naturally. ## Migration guide If you have your own activity holding a [`FlutterView`][], replace calls to: ```java void attachToActivity(@NonNull Activity activity, @NonNull Lifecycle lifecycle); ``` with calls to: ```java void attachToActivity( @NonNull ExclusiveAppComponent<Activity> exclusiveActivity, @NonNull Lifecycle lifecycle); ``` on the [`ActivityControlSurface`][] that you obtained by calling [`getActivityControlSurface()`][] on the [`FlutterEngine`][]. Wrap your activity with an `ExclusiveAppComponent<Activity>` and implement the callback method: ```java void detachFromFlutterEngine(); ``` to handle your activity being replaced by another activity being attached to the [`FlutterEngine`][]. Generally, you want to perform the same detaching operations as performed when the activity is being naturally destroyed. ## Timeline Landed in version: 1.23.0-7.0.pre<br> In stable release: 2.0.0 ## References Motivating bug: [Issue #66192][]—Non exclusive UI components attached to the FlutterEngine causes event crosstalk [`ActivityAware`]: {{site.api}}/javadoc/io/flutter/embedding/engine/plugins/activity/ActivityAware.html [`ActivityControlSurface`]: {{site.api}}/javadoc/io/flutter/embedding/engine/plugins/activity/ActivityControlSurface.html [`FlutterActivity`]: {{site.api}}/javadoc/io/flutter/embedding/android/FlutterActivity.html [`FlutterEngine`]: {{site.api}}/javadoc/io/flutter/embedding/engine/FlutterEngine.html [`FlutterFragment`]: {{site.api}}/javadoc/io/flutter/embedding/android/FlutterFragment.html [`FlutterView`]: {{site.api}}/javadoc/io/flutter/view/FlutterView.html [`getActivityControlSurface()`]: {{site.api}}/javadoc/io/flutter/embedding/engine/FlutterEngine.html#getActivityControlSurface-- [Issue #66192]: {{site.repo.flutter}}/issues/66192. [Issue #21272]: {{site.repo.engine}}/pull/21272
website/src/release/breaking-changes/android-activity-control-surface-attach.md/0
{ "file_path": "website/src/release/breaking-changes/android-activity-control-surface-attach.md", "repo_id": "website", "token_count": 1284 }
1,338
--- title: Deprecate textScaleFactor in favor of TextScaler description: >- The new class, TextScaler, replaces the textScaleFactor scalar in preparation for Android 14 nonlinear text scaling support. --- ## Summary In preparation for adopting the [Android 14 nonlinear font scaling][] feature, all occurrences of `textScaleFactor` in the Flutter framework have been deprecated and replaced by `TextScaler`. ## Context Many platforms allow users to scale textual contents up or down globally in system preferences. In the past, the scaling strategy was captured as a single `double` value named `textScaleFactor`, as text scaling was proportional: `scaledFontSize = textScaleFactor x unScaledFontSize`. For example, when `textScaleFactor` is 2.0 and the developer-specified font size is 14.0, the actual font size is 2.0 x 14.0 = 28.0. With the introduction of [Android 14 nonlinear font scaling][], larger text gets scaled at a lesser rate as compared to smaller text, to prevent excessive scaling of text that is already large. The `textScaleFactor` scalar value used by "proportional" scaling is not enough to represent this new scaling strategy. The [Replaces `textScaleFactor` with `TextScaler`][] pull request introduced a new class `TextScaler` to replace `textScaleFactor` in preparation for this new feature. Nonlinear text scaling is introduced in a different pull request. ## Description of change Introducing a new interface `TextScaler`, which represents a text scaling strategy. ```dart abstract class TextScaler { double scale(double fontSize); double get textScaleFactor; // Deprecated. } ``` Use the `scale` method to scale font sizes instead of `textScaleFactor`. The `textScaleFactor` getter provides an estimated `textScaleFactor` value, it is for backward compatibility purposes and is already marked as deprecated, and will be removed in a future version of Flutter. The new class has replaced `double textScaleFactor` (`double textScaleFactor` -> `TextScaler textScaler`), in the following APIs: ### Painting library | Affected APIs | Error Message | |-----------------------------------------------------------------------------------|--------------------------------------------------------| | `InlineSpan.build({ double textScaleFactor = 1.0 })` argument | The named parameter 'textScaleFactor' isn't defined. | | `TextStyle.getParagraphStyle({ double TextScaleFactor = 1.0 })` argument | The named parameter 'textScaleFactor' isn't defined. | | `TextStyle.getTextStyle({ double TextScaleFactor = 1.0 })` argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `TextPainter({ double TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `TextPainter.textScaleFactor` getter and setter | 'textScaleFactor' is deprecated and shouldn't be used. | | `TextPainter.computeWidth({ double TextScaleFactor = 1.0 })` argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `TextPainter.computeMaxIntrinsicWidth({ double TextScaleFactor = 1.0 })` argument | 'textScaleFactor' is deprecated and shouldn't be used. | ### Rendering library | Affected APIs | Error Message | |--------------------------------------------------------------------------|--------------------------------------------------------| | `RenderEditable({ double TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `RenderEditable.textScaleFactor` getter and setter | 'textScaleFactor' is deprecated and shouldn't be used. | | `RenderParagraph({ double TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `RenderParagraph.textScaleFactor` getter and setter | 'textScaleFactor' is deprecated and shouldn't be used. | ### Widgets library | Affected APIs | Error Message | |-------------------------------------------------------------------------|---------------------------------------------------------------| | `MediaQueryData({ double TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `MediaQueryData.textScaleFactor` getter | 'textScaleFactor' is deprecated and shouldn't be used. | | `MediaQueryData.copyWith({ double? TextScaleFactor })` argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `MediaQuery.maybeTextScaleFactorOf(BuildContext context)` static method | 'maybeTextScaleFactorOf' is deprecated and shouldn't be used. | | `MediaQuery.textScaleFactorOf(BuildContext context)` static method | 'textScaleFactorOf' is deprecated and shouldn't be used. | | `RichText({ double TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `RichText.textScaleFactor` getter | 'textScaleFactor' is deprecated and shouldn't be used. | | `Text({ double? TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `Text.rich({ double? TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `Text.textScaleFactor` getter | 'textScaleFactor' is deprecated and shouldn't be used. | | `EditableText({ double? TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `EditableText.textScaleFactor` getter | 'textScaleFactor' is deprecated and shouldn't be used. | ### Material library | Affected APIs | Error Message | |-------------------------------------------------------------------------------|--------------------------------------------------------| | `SelectableText({ double? TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `SelectableText.rich({ double? TextScaleFactor = 1.0 })` constructor argument | 'textScaleFactor' is deprecated and shouldn't be used. | | `SelectableText.textScaleFactor` getter | 'textScaleFactor' is deprecated and shouldn't be used. | ## Migration guide Widgets provided by the Flutter framework are already migrated. Migration is needed only if you're using any of the deprecated symbols listed in the previous tables. ### Migrating your APIs that expose `textScaleFactor` Before: ```dart abstract class _MyCustomPaintDelegate { void paint(PaintingContext context, Offset offset, double textScaleFactor) { } } ``` After: ```dart abstract class _MyCustomPaintDelegate { void paint(PaintingContext context, Offset offset, TextScaler textScaler) { } } ``` ### Migrating code that consumes `textScaleFactor` If you're not currently using `textScaleFactor` directly, but rather passing it to a different API that receives a `textScaleFactor`, and the receiver API has already been migrated, then it's relatively straightforward: Before: ```dart RichText( textScaleFactor: MediaQuery.textScaleFactorOf(context), ... ) ``` After: ```dart RichText( textScaler: MediaQuery.textScalerOf(context), ... ) ``` If the API that provides `textScaleFactor` hasn't been migrated, consider waiting for the migrated version. If you wish to compute the scaled font size yourself, use `TextScaler.scale` instead of the `*` binary operator: Before: ```dart final scaledFontSize = textStyle.fontSize * MediaQuery.textScaleFactorOf(context); ``` After: ```dart final scaledFontSize = MediaQuery.textScalerOf(context).scale(textStyle.fontSize); ``` If you are using `textScaleFactor` to scale dimensions that are not font sizes, there are no generic rules for migrating the code to nonlinear scaling, and it might require the UI to be implemented differently. Reusing the `MyTooltipBox`example: ```dart MyTooltipBox( size: chatBoxSize * textScaleFactor, child: RichText(..., style: TextStyle(fontSize: 20)), ) ``` You could choose to use the "effective" text scale factor by applying the `TextScaler` on the font size 20: `chatBoxSize * textScaler.scale(20) / 20`, or redesign the UI and let the widget assume its own intrinsic size. ### Overriding the text scaling strategy in a widget subtree To override the existing `TextScaler` used in a widget subtree, override the `MediaQuery` like so: Before: ```dart MediaQuery( data: MediaQuery.of(context).copyWith(textScaleFactor: 2.0), child: child, ) ``` After: ```dart MediaQuery( data: MediaQuery.of(context).copyWith(textScaler: _myCustomTextScaler), child: child, ) ``` However, it's rarely needed to create a custom `TextScaler` subclass. `MediaQuery.withNoTextScaling` (which creates a widget that disables text scaling altogether for its child subtree), and `MediaQuery.withClampedTextScaling` (which creates a widget that restricts the scaled font size to within the range `[minScaleFactor * fontSize, maxScaleFactor * fontSize]`), are convenience methods that cover common cases where the text scaling strategy needs to be overridden. #### Examples **Disabling Text Scaling For Icon Fonts** Before: ```dart MediaQuery( data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0), child: IconTheme( data: .., child: icon, ), ) ``` After: ```dart MediaQuery.withNoTextScaling( child: IconTheme( data: ... child: icon, ), ) ``` **Preventing Contents From Overscaling** Before: ```dart final mediaQueryData = MediaQuery.of(context); MediaQuery( data: mediaQueryData.copyWith(textScaleFactor: math.min(mediaQueryData.textScaleFactor, _kMaxTitleTextScaleFactor), child: child, ) ``` After: ```dart MediaQuery.withClampedTextScaling( maxScaleFactor: _kMaxTitleTextScaleFactor, child: title, ) ``` **Disabling Nonlinear Text Scaling** If you want to temporarily opt-out of nonlinear text scaling on Android 14 until your app is fully migrated, put a modified `MediaQuery` at the top of your app's widget tree: ```dart runApp( Builder(builder: (context) { final mediaQueryData = MediaQuery.of(context); final mediaQueryDataWithLinearTextScaling = mediaQueryData .copyWith(textScaler: TextScaler.linear(mediaQueryData.textScaler.textScaleFactor)); return MediaQuery(data: mediaQueryDataWithLinearTextScaling, child: realWidgetTree); }), ); ``` This trick uses the deprecated `textScaleFactor` API and will stop working once it's removed from the Flutter API. ## Timeline Landed in version: 3.13.0-4.0.pre<br> In stable release: 3.16 ## References API documentation: * [`TextScaler`][] * [`MediaQuery.textScalerOf`][] * [`MediaQuery.maybeTextScalerOf`][] * [`MediaQuery.withNoTextScaling`][] * [`MediaQuery.withClampedTextScaling`][] Relevant issues: * [New font scaling system (Issue 116231)][] Relevant PRs: * [Replaces `textScaleFactor` with `TextScaler`][] [Android 14 nonlinear font scaling]: {{site.android-dev}}/about/versions/14/features#non-linear-font-scaling [`TextScaler`]: {{site.api}}/flutter/painting/TextScaler-class.html [`MediaQuery.textScalerOf`]: {{site.api}}/flutter/widgets/MediaQuery/textScalerOf.html [`MediaQuery.maybeTextScalerOf`]: {{site.api}}/flutter/widgets/MediaQuery/maybeTextScalerOf.html [`MediaQuery.withNoTextScaling`]: {{site.api}}/flutter/widgets/MediaQuery/withNoTextScaling.html [`MediaQuery.withClampedTextScaling`]: {{site.api}}/flutter/widgets/MediaQuery/withClampedTextScaling.html [New font scaling system (Issue 116231)]: {{site.repo.flutter}}/issues/116231 [Replaces `textScaleFactor` with `TextScaler`]: {{site.repo.flutter}}/pull/128522
website/src/release/breaking-changes/deprecate-textscalefactor.md/0
{ "file_path": "website/src/release/breaking-changes/deprecate-textscalefactor.md", "repo_id": "website", "token_count": 4121 }
1,339
--- title: More Strict Assertions in the Navigator and the Hero Controller Scope description: > Added additional assertions to guarantee that one hero controller scope can only subscribe to one navigator at a time. --- ## Summary The framework throws an assertion error when it detects there are multiple navigators registered with one hero controller scope. ## Context The hero controller scope hosts a hero controller for its widget subtree. The hero controller can only support one navigator at a time. Previously, there was no assertion to guarantee that. ## Description of change If the code starts throwing assertion errors after this change, it means the code was already broken even before this change. Multiple navigators may be registered under the same hero controller scope, and they can not trigger hero animations when their route changes. This change only surfaced this problem. ## Migration guide An example application that starts to throw exceptions. ```dart import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( builder: (BuildContext context, Widget child) { // Builds two parallel navigators. This throws // error because both of navigators are under the same // hero controller scope created by MaterialApp. return Stack( children: <Widget>[ Navigator( onGenerateRoute: (RouteSettings settings) { return MaterialPageRoute<void>( settings: settings, builder: (BuildContext context) { return const Text('first Navigator'); } ); }, ), Navigator( onGenerateRoute: (RouteSettings settings) { return MaterialPageRoute<void>( settings: settings, builder: (BuildContext context) { return const Text('Second Navigator'); } ); }, ), ], ); } ) ); } ``` You can fix this application by introducing your own hero controller scopes. ```dart import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( builder: (BuildContext context, Widget child) { // Builds two parallel navigators. return Stack( children: <Widget>[ HeroControllerScope( controller: MaterialApp.createMaterialHeroController(), child: Navigator( onGenerateRoute: (RouteSettings settings) { return MaterialPageRoute<void>( settings: settings, builder: (BuildContext context) { return const Text('first Navigator'); } ); }, ), ), HeroControllerScope( controller: MaterialApp.createMaterialHeroController(), child: Navigator( onGenerateRoute: (RouteSettings settings) { return MaterialPageRoute<void>( settings: settings, builder: (BuildContext context) { return const Text('second Navigator'); } ); }, ), ), ], ); } ) ); } ``` ## Timeline Landed in version: 1.20.0<br> In stable release: 1.20 ## References API documentation: * [`Navigator`][] * [`HeroController`][] * [`HeroControllerScope`][] Relevant issue: * [Issue 45938][] Relevant PR: * [Clean up hero controller scope][] [Clean up hero controller scope]: {{site.repo.flutter}}/pull/60655 [`Navigator`]: {{site.api}}/flutter/widgets/Navigator-class.html [`HeroController`]: {{site.api}}/flutter/widgets/HeroController-class.html [`HeroControllerScope`]: {{site.api}}/flutter/widgets/HeroControllerScope-class.html [Issue 45938]: {{site.repo.flutter}}/issues/45938
website/src/release/breaking-changes/hero-controller-scope.md/0
{ "file_path": "website/src/release/breaking-changes/hero-controller-scope.md", "repo_id": "website", "token_count": 1716 }
1,340
--- title: Transition of platform channel test interfaces to flutter_test package description: > The setMockMessageHandler method related APIs have moved from package:flutter to package:flutter_test --- ## Summary The following methods have been replaced by APIs in the `flutter_test` package: * `BinaryMessenger.checkMessageHandler` * `BinaryMessenger.setMockMessageHandler` * `BinaryMessenger.checkMockMessageHandler` * `BasicMessageChannel.setMockMessageHandler` * `MethodChannel.checkMethodCallHandler` * `MethodChannel.setMockMethodCallHandler` * `MethodChannel.checkMockMethodCallHandler` The `onPlatformMessage` callback is no longer used by the Flutter framework. ## Context As part of a refactoring of the low-level plugin communications architecture, we have moved from the previous `onPlatformMessage`/`handlePlatformMessage` logic to a per-channel buffering system implemented in the engine in the `ChannelBuffers` class. To maintain compatibility with existing code, the existing `BinaryMessenger.setMessageHandler` API has been refactored to use the new `ChannelBuffers` API. One difference between the `ChannelBuffers` API and the previous API is that the new API is more consistent in its approach to asynchrony. As a side-effect, the APIs around message passing are now entirely asynchronous. This posed a problem for the implementation of the legacy testing APIs which, for historical reasons, were previously in the `flutter` package. Since they relied on the underlying logic being partly synchronous, they required refactoring. To avoid adding even more test logic into the `flutter` package, a decision was made to move this logic to the `flutter_test` package. ## Description of change Specifically, the following APIs were affected: * `BinaryMessenger.checkMessageHandler`: Obsolete. * `BinaryMessenger.setMockMessageHandler`: Replaced by `TestDefaultBinaryMessenger.setMockMessageHandler`. * `BinaryMessenger.checkMockMessageHandler`: Replaced by `TestDefaultBinaryMessenger.checkMockMessageHandler`. * `BasicMessageChannel.setMockMessageHandler`: Replaced by `TestDefaultBinaryMessenger.setMockDecodedMessageHandler`. * `MethodChannel.checkMethodCallHandler`: Obsolete. * `MethodChannel.setMockMethodCallHandler`: Replaced by `TestDefaultBinaryMessenger.setMockMethodCallHandler`. * `MethodChannel.checkMockMethodCallHandler`: Replaced by `TestDefaultBinaryMessenger.checkMockMessageHandler`. These replacements are only available to code using the new `TestDefaultBinaryMessengerBinding` (such as any code using `testWidgets` in a `flutter_test` test). There is no replacement for production code that was using these APIs, as they were not intended for production code use. Tests using `checkMessageHandler` have no equivalent in the new API, since message handler registration is handled directly by the `ChannelBuffers` object, which does not expose the currently registered listener for a channel. (Tests verifying handler registration appear to be rare.) Code that needs migrating may see errors such as the following: ```nocode error - The method 'setMockMessageHandler' isn't defined for the type 'BinaryMessenger' at test/sensors_test.dart:64:8 - (undefined_method) error • The method 'setMockMethodCallHandler' isn't defined for the type 'MethodChannel' • test/widgets/editable_text_test.dart:5623:30 • undefined_method [error] The method 'setMockMessageHandler' isn't defined for the type 'BasicMessageChannel' (test/material/feedback_test.dart:37:36) ``` In addition, the `onPlatformMessage` callback, which previously was hooked by the framework to receive messages from plugins, is no longer used (and will be removed in due course). As a result, calling this callback to inject messages into the framework no longer has an effect. ## Migration guide The `flutter_test` package provides some shims so that uses of the obsolete `setMock...` and `checkMock...` methods will continue to work. Tests that previously did not import `package:flutter_test/flutter_test.dart` can do so to enable these shims; this should be sufficient to migrate most code. These shim APIs are deprecated, however. Instead, in code using `WidgetTester` (for example, using `testWidgets`), it is recommended to use the following patterns to replace calls to those methods (where `tester` is the `WidgetTester` instance): ```dart // old code ServicesBinding.defaultBinaryMessenger.setMockMessageHandler(...); ServicesBinding.defaultBinaryMessenger.checkMockMessageHandler(...); // new code tester.binding.defaultBinaryMessenger.setMockMessageHandler(...); tester.binding.defaultBinaryMessenger.checkMockMessageHandler(...); ``` ```dart // old code myChannel.setMockMessageHandler(...); myChannel.checkMockMessageHandler(...); // new code tester.binding.defaultBinaryMessenger.setMockDecodedMessageHandler(myChannel, ...); tester.binding.defaultBinaryMessenger.checkMockMessageHandler(myChannel, ...); ``` ```dart // old code myMethodChannel.setMockMethodCallHandler(...); myMethodChannel.checkMockMethodCallHandler(...); // new code tester.binding.defaultBinaryMessenger.setMockMethodCallHandler(myMethodChannel, ...); tester.binding.defaultBinaryMessenger.checkMockMessageHandler(myMethodChannel, ...); ``` Tests that use `package:test` and `test()` can be changed to use `package:flutter_test` and `testWidgets()` to get access to a `WidgetTester`. Code that does not have access to a `WidgetTester` can refer to `TestDefaultBinaryMessengerBinding.instance!.defaultBinaryMessenger` instead of `tester.binding.defaultBinaryMessenger`. Tests that do not use the default test widgets binding (`AutomatedTestWidgetsFlutterBinding`, which is initialized by `testWidgets`) can mix the `TestDefaultBinaryMessengerBinding` mixin into their binding to get the same results. Tests that manipulate `onPlatformMessage` will no longer function as designed. To send mock messages to the framework, consider using `ChannelBuffers.push`. There is no mechanism to intercept messages from the plugins and forward them to the framework in the new API. If your use case requires such a mechanism, please file a bug. ## Timeline Landed in version: 2.3.0-17.0.pre.1<br> In stable release: 2.5 ## References API documentation: * [`TestDefaultBinaryMessenger`][] * [`TestDefaultBinaryMessengerBinding`][] Relevant PR: * [PR #76288: Migrate to ChannelBuffers.push][] [`TestDefaultBinaryMessenger`]: {{site.api}}/flutter/flutter_test/TestDefaultBinaryMessenger-class.html [`TestDefaultBinaryMessengerBinding`]: {{site.api}}/flutter/flutter_test/TestDefaultBinaryMessengerBinding-mixin.html [PR #76288: Migrate to ChannelBuffers.push]: {{site.repo.flutter}}/pull/76288
website/src/release/breaking-changes/mock-platform-channels.md/0
{ "file_path": "website/src/release/breaking-changes/mock-platform-channels.md", "repo_id": "website", "token_count": 1896 }
1,341
--- title: Raw images on Web uses correct origin and colors description: > Raw images directly decoded by calling the Web engine functions now uses the correct pixel format and starts from the top left corner. --- ## Summary How raw images are rendered on Web has been corrected and is now consistent with that on other platforms. This breaks legacy apps that had to feed incorrect data to `ui.ImageDescriptor.raw` or `ui.decodeImageFromPixels`, causing the resulting images to be upside-down and incorrectly colored (whose red and blue channels are swapped.) ## Context The "pixel stream" that Flutter uses internally has always been defined as the same format: for each pixel, four 8-bit channels are packed in the order defined by a `format` argument, then grouped in a row, from left to right, then rows from top to bottom. However, Flutter for Web, or more specifically, the HTML renderer, used to implement it in a wrong way due to incorrect understanding of the BMP format specification. As a result, if the app or library uses `ui.ImageDescriptor.raw` or `ui.decodeImageFromPixels`, it had to feed pixels from bottom to top and swap their red and blue channels (for example, with the `ui.PixelFormat.rgba8888` format, the first 4 bytes of the data were considered the blue, green, red, and alpha channels of the first pixel instead.) This bug has been fixed by [engine#29593][], but apps and libraries have to correct how their data are generated. ## Description of change The `pixels` argument of `ui.ImageDescriptor.raw` or `ui.decodeImageFromPixels` now uses the correct pixel order described by `format`, and originates from the top left corner. Images rendered by directly calling these two functions Legacy code that invokes these functions directly might find their images upside down and colored incorrectly. ## Migration guide If the app uses the latest version of Flutter and experiences this situation, the most direct solution is to manually flip the image, and use the alternate pixel format. However, this is unlikely the most optimized solution, since such pixel data are usually constructed from other sources, allowing flipping during the construction process. Code before migration: ```dart import 'dart:typed_data'; import 'dart:ui' as ui; // Parse `image` as a displayable image. // // Each byte in `image` is a pixel channel, in the order of blue, green, red, // and alpha, starting from the bottom left corner and going row first. Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async { final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw( await ui.ImmutableBuffer.fromUint8List(image), width: width, height: height, pixelFormat: ui.PixelFormat.rgba8888, ); return (await (await descriptor.instantiateCodec()).getNextFrame()).image; } ``` Code after migration: ```dart import 'dart:typed_data'; import 'dart:ui' as ui; Uint8List verticallyFlipImage(Uint8List sourceBytes, int width, int height) { final Uint32List source = Uint32List.sublistView(ByteData.sublistView(sourceBytes)); final Uint32List result = Uint32List(source.length); int sourceOffset = 0; int resultOffset = 0; for (final int row = height - 1; row >= 0; row -= 1) { sourceOffset = width * row; for (final int col = 0; col < width; col += 1) { result[resultOffset] = source[sourceOffset]; resultOffset += 1; sourceOffset += 1; } } return Uint8List.sublistView(ByteData.sublistView(sourceBytes)) } Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async { final Uint8List correctedImage = verticallyFlipImage(image, width, height); final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw( await ui.ImmutableBuffer.fromUint8List(correctedImage), width: width, height: height, pixelFormat: ui.PixelFormat.rgba8888, ); return (await (await descriptor.instantiateCodec()).getNextFrame()).image; } ``` A trickier situation is when you're writing a library, and you want this library to work on both the most recent Flutter and a pre-patch one. In that case, you can decide whether the behavior has been changed by letting it decode a single pixel first. Code after migration: ```dart Uint8List verticallyFlipImage(Uint8List sourceBytes, int width, int height) { // Same as the example above. } late Future<bool> imageRawUsesCorrectBehavior = (() async { final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw( await ui.ImmutableBuffer.fromUint8List(Uint8List.fromList(<int>[0xED, 0, 0, 0xFF])), width: 1, height: 1, pixelFormat: ui.PixelFormat.rgba8888); final ui.Image image = (await (await descriptor.instantiateCodec()).getNextFrame()).image; final Uint8List resultPixels = Uint8List.sublistView( (await image.toByteData(format: ui.ImageByteFormat.rawStraightRgba))!); return resultPixels[0] == 0xED; })(); Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async { final Uint8List correctedImage = (await imageRawUsesCorrectBehavior) ? verticallyFlipImage(image, width, height) : image; final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw( await ui.ImmutableBuffer.fromUint8List(correctedImage), // Use the corrected image width: width, height: height, pixelFormat: ui.PixelFormat.bgra8888, // Use the alternate format ); return (await (await descriptor.instantiateCodec()).getNextFrame()).image; } ``` ## Timeline Landed in version: 2.9.0-0.0.pre<br> In stable release: 2.10 ## References API documentation: * [`decodeImageFromPixels`][] * [`ImageDescriptor.raw`][] Relevant issues: * [Web: Regression in Master - PDF display distorted due to change in BMP Encoder][] * [Web: ImageDescriptor.raw flips and inverts images (partial reason included)][] Relevant PRs: * [Web: Reland: Fix BMP encoder][] * [Clarify ImageDescriptor.raw pixel order and add version detector][] [`decodeImageFromPixels`]: {{site.api}}/flutter/dart-ui/decodeImageFromPixels.html [`ImageDescriptor.raw`]: {{site.api}}/flutter/dart-ui/ImageDescriptor/ImageDescriptor.raw.html [Web: Regression in Master - PDF display distorted due to change in BMP Encoder]: {{site.repo.flutter}}/issues/93615 [Web: ImageDescriptor.raw flips and inverts images (partial reason included)]: {{site.repo.flutter}}/issues/89610 [engine#29593]: {{site.repo.engine}}/pull/29593 [Web: Reland: Fix BMP encoder]: {{site.repo.engine}}/pull/29593 [Clarify ImageDescriptor.raw pixel order and add version detector]: {{site.repo.engine}}/pull/30343
website/src/release/breaking-changes/raw-images-on-web-uses-correct-origin-and-colors.md/0
{ "file_path": "website/src/release/breaking-changes/raw-images-on-web-uses-correct-origin-and-colors.md", "repo_id": "website", "token_count": 2048 }
1,342
--- title: Adding 'linux' and 'windows' to TargetPlatform enum description: > Two new values were added to the TargetPlatform enum that could require additional cases in switch statements that switch on a TargetPlatform. --- ## Summary Two new values were added to the [`TargetPlatform`][] enum that could require additional cases in switch statements that switch on a `TargetPlatform` and don't include a `default:` case. ## Context Prior to this change, the `TargetPlatform` enum only contained four values, and was defined like this: ```dart enum TargetPlatform { android, fuchsia, iOS, macOS, } ``` A `switch` statement only needed to handle these cases, and desktop applications that wanted to run on Linux or Windows usually had a test like this in their `main()` method: ```dart // Sets a platform override for desktop to avoid exceptions. See // https://docs.flutter.dev/desktop#target-platform-override for more info. void _enablePlatformOverrideForDesktop() { if (!kIsWeb && (Platform.isWindows || Platform.isLinux)) { debugDefaultTargetPlatformOverride = TargetPlatform.fuchsia; } } void main() { _enablePlatformOverrideForDesktop(); runApp(MyApp()); } ``` ## Description of change The `TargetPlatform` enum is now defined as: ```dart enum TargetPlatform { android, fuchsia, iOS, linux, // new value macOS, windows, // new value } ``` And the platform test setting [`debugDefaultTargetPlatformOverride`][] in `main()` is no longer required on Linux and Windows. This can cause the Dart analyzer to give the [`missing_enum_constant_in_switch`][] warning for switch statements that don't include a `default` case. Writing a switch without a `default:` case is the recommended way to handle enums, since the analyzer can then help you find any cases that aren't handled. ## Migration guide In order to migrate to the new enum, and avoid the analyzer's `missing_enum_constant_in_switch` error, which looks like: ```nocode warning: Missing case clause for 'linux'. (missing_enum_constant_in_switch at [package] path/to/file.dart:111) ``` or: ```nocode warning: Missing case clause for 'windows'. (missing_enum_constant_in_switch at [package] path/to/file.dart:111) ``` Modify your code as follows: Code before migration: ```dart void dance(TargetPlatform platform) { switch (platform) { case TargetPlatform.android: // Do Android dance. break; case TargetPlatform.fuchsia: // Do Fuchsia dance. break; case TargetPlatform.iOS: // Do iOS dance. break; case TargetPlatform.macOS: // Do macOS dance. break; } } ``` Code after migration: ```dart void dance(TargetPlatform platform) { switch (platform) { case TargetPlatform.android: // Do Android dance. break; case TargetPlatform.fuchsia: // Do Fuchsia dance. break; case TargetPlatform.iOS: // Do iOS dance. break; case TargetPlatform.linux: // new case // Do Linux dance. break; case TargetPlatform.macOS: // Do macOS dance. break; case TargetPlatform.windows: // new case // Do Windows dance. break; } } ``` Having `default:` cases in such switch statements isn't recommended, because then the analyzer can't help you find all the cases that need to be handled. Also, any tests like the one referenced above that set the `debugDefaultTargetPlatformOverride` are no longer needed for Linux and Windows applications. ## Timeline Landed in version: 1.15.4<br> In stable release: 1.17 ## References API documentation: * [`TargetPlatform`][] Relevant issues: * [Issue #31366][] Relevant PR: * [Add Windows, and Linux as TargetPlatforms][] [Add Windows, and Linux as TargetPlatforms]: {{site.repo.flutter}}/pull/51519 [`debugDefaultTargetPlatformOverride`]: {{site.api}}/flutter/foundation/debugDefaultTargetPlatformOverride.html [Issue #31366]: {{site.repo.flutter}}/issues/31366 [`missing_enum_constant_in_switch`]: {{site.dart-site}}/tools/diagnostic-messages#missing_enum_constant_in_switch [`TargetPlatform`]: {{site.api}}/flutter/foundation/TargetPlatform-class.html
website/src/release/breaking-changes/target-platform-linux-windows.md/0
{ "file_path": "website/src/release/breaking-changes/target-platform-linux-windows.md", "repo_id": "website", "token_count": 1331 }
1,343
--- title: Migrate a Windows project to the idiomatic run loop description: How to update a Windows project to use the idiomatic run loop --- Flutter 2.5 replaced Windows apps' run loop with an idiomatic Windows message pump to reduce CPU usage. Projects created before Flutter version 2.5 need to be migrated to get this improvement. You should follow the migration steps below if the `windows/runner/run_loop.h` file exists in your project. ## Migration steps {{site.alert.note}} As part of this migration, you must recreate your Windows project, which clobbers any custom changes to the files in the `windows/runner` folder. The following steps include instructions for this scenario. {{site.alert.end}} Your project can be updated using these steps: 1. Verify you are on Flutter version 2.5 or newer using `flutter --version` 2. If needed, use `flutter upgrade` to update to the latest version of the Flutter SDK 3. Backup your project with git (or your preferred version control system), since you need to reapply any local changes you've made (if any) to your project in a later step 4. Delete all files under the `windows/runner` folder 5. Run `flutter create --platforms=windows .` to recreate the Windows project 6. Review the changes to files in the `windows/runner` folder 7. Reapply any custom changes made to the files in the `windows/runner` folder prior to this migration 8. Verify that your app builds using `flutter build windows`
website/src/release/breaking-changes/windows-run-loop.md/0
{ "file_path": "website/src/release/breaking-changes/windows-run-loop.md", "repo_id": "website", "token_count": 376 }
1,344
--- title: Flutter 1.20.0 release notes short-title: 1.20.0 release notes description: Release notes for Flutter 1.20.0. --- ## Merged pull requests by label ### Merged PRs by labels for `flutter/flutter` #### tool - 435 pull request(s) [50581](https://github.com/flutter/flutter/pull/50581) Implements --machine flag for `devices` command (cla: yes, tool) [51126](https://github.com/flutter/flutter/pull/51126) [flutter_tools] fix build for projects with watchOS companion app (cla: yes, tool) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [52791](https://github.com/flutter/flutter/pull/52791) Read custom app project name from gradle.properties (cla: yes, team, tool) [53374](https://github.com/flutter/flutter/pull/53374) [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [53422](https://github.com/flutter/flutter/pull/53422) Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [53600](https://github.com/flutter/flutter/pull/53600) Restructure the Windows app template (cla: yes, team, tool) [53715](https://github.com/flutter/flutter/pull/53715) Support old and new git release tag formats (cla: yes, tool) [53765](https://github.com/flutter/flutter/pull/53765) [flutter_tools] re-enable debug extension (cla: yes, tool, waiting for tree to go green) [53773](https://github.com/flutter/flutter/pull/53773) [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool, waiting for tree to go green) [53785](https://github.com/flutter/flutter/pull/53785) [flutter_tools] Don't generate native registrant classes if no pluginClass is defined (cla: yes, tool, waiting for tree to go green) [53809](https://github.com/flutter/flutter/pull/53809) [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool) [53824](https://github.com/flutter/flutter/pull/53824) [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53848](https://github.com/flutter/flutter/pull/53848) [flutter_tools] don't compute hashes of well known artifacts (cla: yes, tool) [53853](https://github.com/flutter/flutter/pull/53853) [flutter_tools] remove indirection around App.framework production (cla: yes, tool) [53859](https://github.com/flutter/flutter/pull/53859) [flutter_tools] write SkSL file to local file (cla: yes, tool) [53868](https://github.com/flutter/flutter/pull/53868) [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool) [53876](https://github.com/flutter/flutter/pull/53876) Update Windows and Linux plugin templates (cla: yes, tool) [53882](https://github.com/flutter/flutter/pull/53882) Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool) [53902](https://github.com/flutter/flutter/pull/53902) [flutter_tools] Launch DevTools with 'v' (cla: yes, tool, waiting for tree to go green) [53928](https://github.com/flutter/flutter/pull/53928) [macos] build: add build-number and buid-name arguments (cla: yes, tool, waiting for tree to go green) [53936](https://github.com/flutter/flutter/pull/53936) Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool) [53944](https://github.com/flutter/flutter/pull/53944) [flutter_tools] update asset manifest to use package_config instead of package_map (cla: yes, tool) [53949](https://github.com/flutter/flutter/pull/53949) [flutter_tools] also listen to web stderr stream (cla: yes, tool) [53951](https://github.com/flutter/flutter/pull/53951) Revert "[flutter_tools] update to package vm_service: electric boogaloo" (cla: yes, team, tool) [53954](https://github.com/flutter/flutter/pull/53954) [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53956](https://github.com/flutter/flutter/pull/53956) Revert "[flutter_tools] surgically remove outputs from shared directory" (cla: yes, tool) [53957](https://github.com/flutter/flutter/pull/53957) [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool) [53960](https://github.com/flutter/flutter/pull/53960) [flutter_tools] Refresh VM state before executing hot reload (cla: yes, tool, waiting for tree to go green) [53962](https://github.com/flutter/flutter/pull/53962) [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool) [54083](https://github.com/flutter/flutter/pull/54083) Add a switch to use WebSockets for web debug proxy (cla: yes, tool, waiting for tree to go green) [54114](https://github.com/flutter/flutter/pull/54114) Revert "[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo" (cla: yes, team, tool) [54123](https://github.com/flutter/flutter/pull/54123) [flutter_tools] Use gzip level 1 for devfs transfer compression (cla: yes, tool, waiting for tree to go green) [54131](https://github.com/flutter/flutter/pull/54131) flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool) [54132](https://github.com/flutter/flutter/pull/54132) [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool) [54133](https://github.com/flutter/flutter/pull/54133) [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response) [54152](https://github.com/flutter/flutter/pull/54152) [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green) [54154](https://github.com/flutter/flutter/pull/54154) Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green) [54176](https://github.com/flutter/flutter/pull/54176) Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool) [54185](https://github.com/flutter/flutter/pull/54185) [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green) [54208](https://github.com/flutter/flutter/pull/54208) [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool) [54217](https://github.com/flutter/flutter/pull/54217) Fix `frameworkVersionFor` for flutter doctor and usage (cla: yes, tool, waiting for tree to go green) [54228](https://github.com/flutter/flutter/pull/54228) [flutter_tools] allow passing non-config inputs (cla: yes, tool) [54233](https://github.com/flutter/flutter/pull/54233) [flutter_tools] ensure build fails if asset files are missing (cla: yes, tool) [54294](https://github.com/flutter/flutter/pull/54294) [flutter_tools] remove extra same repo check (cla: yes, tool) [54299](https://github.com/flutter/flutter/pull/54299) [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool) [54301](https://github.com/flutter/flutter/pull/54301) [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool) [54313](https://github.com/flutter/flutter/pull/54313) [flutter_tools] fix routing test (cla: yes, tool) [54314](https://github.com/flutter/flutter/pull/54314) [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green) [54320](https://github.com/flutter/flutter/pull/54320) [flutter_tools] make verbose macOS builds actually verbose (cla: yes, tool) [54328](https://github.com/flutter/flutter/pull/54328) [flutter_tools] use new output location for the apk (cla: yes, tool, waiting for tree to go green) [54337](https://github.com/flutter/flutter/pull/54337) [flutter_tools] Move service methods to VmService extension methods (cla: yes, tool) [54374](https://github.com/flutter/flutter/pull/54374) [flutter_tools] switch benchmark to isolate runnable (cla: yes, tool) [54389](https://github.com/flutter/flutter/pull/54389) [flutter_tools] disable cache in devices test (cla: yes, tool) [54407](https://github.com/flutter/flutter/pull/54407) Don't import plugins that don't support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green) [54414](https://github.com/flutter/flutter/pull/54414) [flutter_tools] attempt to fix benchmark mode test (cla: yes, tool) [54428](https://github.com/flutter/flutter/pull/54428) Add .last_build_id to gitignore (cla: yes, tool, waiting for tree to go green) [54467](https://github.com/flutter/flutter/pull/54467) [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool) [54478](https://github.com/flutter/flutter/pull/54478) Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool) [54488](https://github.com/flutter/flutter/pull/54488) Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool) [54555](https://github.com/flutter/flutter/pull/54555) [flutter_tools] refactor FlutterManifest to be context-free (cla: yes, tool, waiting for tree to go green) [54613](https://github.com/flutter/flutter/pull/54613) [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green) [54617](https://github.com/flutter/flutter/pull/54617) [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool) [54645](https://github.com/flutter/flutter/pull/54645) remove outdated build_runner instructions (cla: yes, tool, waiting for tree to go green) [54679](https://github.com/flutter/flutter/pull/54679) [flutter_tools] Handle empty gzip file on Windows (cla: yes, tool) [54682](https://github.com/flutter/flutter/pull/54682) [flutter_tools] update coverage collector to use vmservice api (cla: yes, tool, waiting for tree to go green) [54691](https://github.com/flutter/flutter/pull/54691) Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool) [54692](https://github.com/flutter/flutter/pull/54692) [flutter_tools] support machine and coverage together but for real (cla: yes, tool, waiting for tree to go green) [54700](https://github.com/flutter/flutter/pull/54700) [flutter_tools] remove runFromSource, move runInView to vm_service extension (cla: yes, tool, waiting for tree to go green) [54715](https://github.com/flutter/flutter/pull/54715) [flutter_tools] support any as a special web-hostname (cla: yes, tool, waiting for tree to go green) [54717](https://github.com/flutter/flutter/pull/54717) [flutter_tools] don't elapse real time during fallback test (cla: yes, tool) [54756](https://github.com/flutter/flutter/pull/54756) Fix/set mocks defaults (cla: yes, tool, waiting for tree to go green) [54783](https://github.com/flutter/flutter/pull/54783) [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green) [54786](https://github.com/flutter/flutter/pull/54786) [flutter_tools] fix response format of flutterVersion, flutterMemoryInfo (cla: yes, tool) [54805](https://github.com/flutter/flutter/pull/54805) [flutter_tools] dont suppress analytics from re-entrant macos build (cla: yes, tool, waiting for tree to go green) [54881](https://github.com/flutter/flutter/pull/54881) Add COM initializition to Windows template (cla: yes, tool) [54884](https://github.com/flutter/flutter/pull/54884) [flutter_tools] Provide global options with subcommand help text (cla: yes, tool) [54909](https://github.com/flutter/flutter/pull/54909) [flutter_tools] fix multiple defines in flutter tooling, web (cla: yes, team, tool) [54912](https://github.com/flutter/flutter/pull/54912) Move doctor into globals (cla: yes, team, tool) [54916](https://github.com/flutter/flutter/pull/54916) Convert expression evaluation exceptions to errors (cla: yes, team, tool, waiting for tree to go green) [54918](https://github.com/flutter/flutter/pull/54918) [flutter_tools] ensure EventPrinter handles a null parent (cla: yes, tool, waiting for tree to go green) [54920](https://github.com/flutter/flutter/pull/54920) [flutter_tools] remove Isolate implementations of vm_service methods (cla: yes, tool) [54923](https://github.com/flutter/flutter/pull/54923) [flutter_tools] default tree-shake-icons to enabled and improve performance (cla: yes, tool) [54924](https://github.com/flutter/flutter/pull/54924) CrashReportSender dependency injection (cla: yes, team, tool) [54959](https://github.com/flutter/flutter/pull/54959) fixed flutter run for projects containing a watchOS companion (cla: yes, tool) [54967](https://github.com/flutter/flutter/pull/54967) Revert "[flutter_tools] fix multiple defines in flutter tooling, web" (cla: yes, team, tool) [54973](https://github.com/flutter/flutter/pull/54973) [flutter_tools] Reland: fix multiple dart defines (cla: yes, team, tool) [54987](https://github.com/flutter/flutter/pull/54987) git pull --ff-only (cla: yes, tool, waiting for tree to go green) [54989](https://github.com/flutter/flutter/pull/54989) Support armv7s architecture (cla: yes, platform-ios, tool) [55002](https://github.com/flutter/flutter/pull/55002) Move GitHubTemplateCreator into reporting library (cla: yes, team, tool) [55003](https://github.com/flutter/flutter/pull/55003) Add flag to enable expression evaluation for web (cla: yes, tool) [55012](https://github.com/flutter/flutter/pull/55012) Even more vm service refactor (cla: yes, tool) [55085](https://github.com/flutter/flutter/pull/55085) [flutter_tools] check if requireloader is defined (cla: yes, tool, waiting for tree to go green) [55125](https://github.com/flutter/flutter/pull/55125) prettify the flutter web bootstrap file (cla: yes, tool) [55141](https://github.com/flutter/flutter/pull/55141) Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green) [55152](https://github.com/flutter/flutter/pull/55152) Support tags when running tests from command line (cla: yes, team, tool) [55160](https://github.com/flutter/flutter/pull/55160) [flutter_tools] refactor Chrome launch logic to remove globals/statics (cla: yes, tool) [55187](https://github.com/flutter/flutter/pull/55187) [flutter_tools] migrate windows to assemble (cla: yes, tool) [55212](https://github.com/flutter/flutter/pull/55212) [flutter_tools] fix type error in symbolize (cla: yes, tool, waiting for tree to go green) [55244](https://github.com/flutter/flutter/pull/55244) [flutter_tools] remove PackageMap and finish PackageConfig migration (cla: yes, tool) [55250](https://github.com/flutter/flutter/pull/55250) flutter_tools: Prefer using .of() over .from() when possible (cla: yes, tool) [55253](https://github.com/flutter/flutter/pull/55253) Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool) [55315](https://github.com/flutter/flutter/pull/55315) Add error message about missing unzip utility (cla: yes, tool) [55341](https://github.com/flutter/flutter/pull/55341) [flutter_tools] migrate FlutterView to new vm_service (cla: yes, tool) [55342](https://github.com/flutter/flutter/pull/55342) [flutter_tools] check first for stable tag, then dev tag (cla: yes, tool) [55348](https://github.com/flutter/flutter/pull/55348) [flutter_tools] unpin package config and update (cla: yes, team, tool) [55353](https://github.com/flutter/flutter/pull/55353) remove intellij references to the v1 embedding jars now that the v2 embeddings are referenced via maven (cla: yes, tool) [55385](https://github.com/flutter/flutter/pull/55385) [flutter_tools] fix version tag `v` stripping (cla: yes, tool) [55412](https://github.com/flutter/flutter/pull/55412) [flutter_tools] remove globals from pub (cla: yes, tool) [55413](https://github.com/flutter/flutter/pull/55413) Revert "[flutter_tools] default tree-shake-icons to enabled and improve performance" (cla: yes, team, tool) [55417](https://github.com/flutter/flutter/pull/55417) [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool) [55420](https://github.com/flutter/flutter/pull/55420) [flutter_tools] fix package config invalidation (cla: yes, tool, waiting for tree to go green) [55436](https://github.com/flutter/flutter/pull/55436) [flutter_tools] quality pass on windows build (cla: yes, tool) [55499](https://github.com/flutter/flutter/pull/55499) fixed flutter pub get failure in tests (cla: yes, tool, waiting for tree to go green) [55510](https://github.com/flutter/flutter/pull/55510) [flutter_tools] precache and unpack updates for desktop release artifacts (cla: yes, tool) [55513](https://github.com/flutter/flutter/pull/55513) [flutter_tools] Delete system temp entries on fatal signals (cla: yes, tool, waiting for tree to go green) [55531](https://github.com/flutter/flutter/pull/55531) [flutter_tools] set test directory base as additional root, allow running without index.html (cla: yes, tool) [55556](https://github.com/flutter/flutter/pull/55556) [flutter_tools] quality pass on Linux build (cla: yes, tool) [55564](https://github.com/flutter/flutter/pull/55564) [flutter_tools] support --enable-experiment in flutter test (cla: yes, team, tool) [55577](https://github.com/flutter/flutter/pull/55577) Revert "[flutter_tools] fix version tag `v` stripping" (cla: yes, tool) [55594](https://github.com/flutter/flutter/pull/55594) [flutter_tools] enable `flutter upgrade` to support force pushed branches (cla: yes, tool, waiting for tree to go green) [55602](https://github.com/flutter/flutter/pull/55602) [flutter_tools] fix version tag `v` stripping and support old "dev" and new "pre" tags (cla: yes, tool, waiting for tree to go green) [55605](https://github.com/flutter/flutter/pull/55605) [flutter_tools] detect ipv6 in fuchsia server url (cla: yes, tool) [55614](https://github.com/flutter/flutter/pull/55614) [flutter tools] Move _informUserOfCrash into crash_reporting.dart (cla: yes, tool, waiting for tree to go green) [55617](https://github.com/flutter/flutter/pull/55617) [flutter_tools] remove trailing eth info from fuchsia package server (cla: yes, tool) [55664](https://github.com/flutter/flutter/pull/55664) [flutter_tools] fix pm serve ipv6 linklocal addr issue (cla: yes, tool, waiting for tree to go green) [55699](https://github.com/flutter/flutter/pull/55699) [flutter_tools] allow pulling performance data from assemble (cla: yes, tool) [55701](https://github.com/flutter/flutter/pull/55701) [flutter_tools] surface missing assets originating package (cla: yes, tool, waiting for tree to go green) [55704](https://github.com/flutter/flutter/pull/55704) [flutter_tools] ensure etag headers are ascii (cla: yes, tool) [55715](https://github.com/flutter/flutter/pull/55715) [flutter_tools] add --dart-define option for fuchsia build (cla: yes, tool, waiting for tree to go green) [55759](https://github.com/flutter/flutter/pull/55759) [flutter_tools] catch ProcessException and throw ToolExit during upgrade (cla: yes, tool, waiting for tree to go green) [55762](https://github.com/flutter/flutter/pull/55762) Print stdout and stderr when the ssh command failed (cla: yes, tool, waiting for tree to go green) [55772](https://github.com/flutter/flutter/pull/55772) Revert "[flutter_tools] migrate FlutterView to new vm_service" (cla: yes, tool) [55773](https://github.com/flutter/flutter/pull/55773) Remove v prefix in doctor version (cla: yes, tool) [55774](https://github.com/flutter/flutter/pull/55774) [flutter_tools] reland migrate FlutterView to new vmservice (cla: yes, tool) [55780](https://github.com/flutter/flutter/pull/55780) [flutter_tools] support multiple fuchsia devices (cla: yes, tool) [55788](https://github.com/flutter/flutter/pull/55788) Revert "[flutter_tools] reland migrate FlutterView to new vmservice" (cla: yes, tool) [55790](https://github.com/flutter/flutter/pull/55790) Remove dead variable from xcode_backend (cla: yes, t: xcode, tool) [55794](https://github.com/flutter/flutter/pull/55794) [flutter_tools] remove vm service (cla: yes, tool) [55797](https://github.com/flutter/flutter/pull/55797) [flutter_tools] reland migrate FlutterViews to package:vm_service (cla: yes, tool) [55799](https://github.com/flutter/flutter/pull/55799) Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool) [55808](https://github.com/flutter/flutter/pull/55808) Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool) [55812](https://github.com/flutter/flutter/pull/55812) restore quit timeout, adjust some integration test behaviors (cla: yes, team, tool) [55871](https://github.com/flutter/flutter/pull/55871) Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool) [55887](https://github.com/flutter/flutter/pull/55887) Fix/use contains ignoring whitespace (cla: yes, tool) [55909](https://github.com/flutter/flutter/pull/55909) [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool) [55961](https://github.com/flutter/flutter/pull/55961) [flutter_tools] Lazily inject logger into web devices (cla: yes, tool) [56059](https://github.com/flutter/flutter/pull/56059) [flutter_tools] support bundling SkSL shaders in flutter build apk/appbundle (cla: yes, tool) [56103](https://github.com/flutter/flutter/pull/56103) [flutter_tools] reduce initial cache size on web (cla: yes, tool, waiting for tree to go green) [56146](https://github.com/flutter/flutter/pull/56146) Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green) [56167](https://github.com/flutter/flutter/pull/56167) [flutter_tools] integrate l10n tool into build/run (cla: yes, tool) [56173](https://github.com/flutter/flutter/pull/56173) [flutter_tools] support flutter run -d edge (cla: yes, tool) [56240](https://github.com/flutter/flutter/pull/56240) fix the reload and restart service extension methods (cla: yes, tool, waiting for tree to go green) [56330](https://github.com/flutter/flutter/pull/56330) Use androidSdk globals variable everywhere (cla: yes, team, tool) [56331](https://github.com/flutter/flutter/pull/56331) Inject logger and fs into printHowToConsumeAar, test without context (cla: yes, team, tool) [56335](https://github.com/flutter/flutter/pull/56335) Gradle artifacts and tasks tests without context (cla: yes, team, tool) [56342](https://github.com/flutter/flutter/pull/56342) Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green) [56373](https://github.com/flutter/flutter/pull/56373) [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green) [56385](https://github.com/flutter/flutter/pull/56385) Revert "[flutter_tools] remove flutter view cache" (cla: yes, tool) [56410](https://github.com/flutter/flutter/pull/56410) [flutter_tools] Restore base/platform.dart (cla: yes, tool) [56472](https://github.com/flutter/flutter/pull/56472) [flutter_tools] prevent wildcard assets from causing build invalidation issues (cla: yes, tool, waiting for tree to go green) [56490](https://github.com/flutter/flutter/pull/56490) [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green) [56502](https://github.com/flutter/flutter/pull/56502) Swap xcode_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool, waiting for tree to go green) [56505](https://github.com/flutter/flutter/pull/56505) Swap xcodeproj_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool) [56531](https://github.com/flutter/flutter/pull/56531) feature: add usermessage when miss platform project (cla: yes, tool) [56564](https://github.com/flutter/flutter/pull/56564) [flutter_tools] ensure track-widget-creation can be changed on devcompiler (cla: yes, tool, waiting for tree to go green) [56605](https://github.com/flutter/flutter/pull/56605) Remove direct uses of LocalPlatform (cla: yes, team, tool) [56618](https://github.com/flutter/flutter/pull/56618) Update Linux template for headless mode (cla: yes, tool, waiting for tree to go green) [56620](https://github.com/flutter/flutter/pull/56620) Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green) [56630](https://github.com/flutter/flutter/pull/56630) [flutter tools] Fix an assert in IOSSimulator.getLogReader (cla: yes, tool) [56633](https://github.com/flutter/flutter/pull/56633) [flutter_tools] enable tree-shake-icons by default for non-web targets (cla: yes, tool) [56634](https://github.com/flutter/flutter/pull/56634) [flutter_tools] rename getSkSL file output ext to .sksl.json (cla: yes, tool) [56685](https://github.com/flutter/flutter/pull/56685) typo fix on the FLUTTER_STORAGE_BASE_URL usage (cla: yes, tool, waiting for tree to go green) [56694](https://github.com/flutter/flutter/pull/56694) [flutter_tools] fix aar defaults test (cla: yes, tool) [56703](https://github.com/flutter/flutter/pull/56703) Always remove the workspace settings when set to legacy build settings (cla: yes, tool, waiting for tree to go green) [56706](https://github.com/flutter/flutter/pull/56706) [flutter_tools] Don't try to execute gradle wrapper out of /tmp (cla: yes, tool) [56720](https://github.com/flutter/flutter/pull/56720) [flutter_tools] fix documentation on default built ios (cla: yes, tool) [56786](https://github.com/flutter/flutter/pull/56786) [flutter_tools] cache-bust in service worker (cla: yes, team, tool, waiting for tree to go green) [56800](https://github.com/flutter/flutter/pull/56800) Revert "[flutter_tools] integrate l10n tool into build/run" (cla: yes, tool) [56924](https://github.com/flutter/flutter/pull/56924) [flutter_tools] hide tree-shake-icons (cla: yes, tool, waiting for tree to go green) [56928](https://github.com/flutter/flutter/pull/56928) Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green) [56934](https://github.com/flutter/flutter/pull/56934) Revert "[flutter_tools] hide tree-shake-icons" (cla: yes, tool, waiting for tree to go green) [56943](https://github.com/flutter/flutter/pull/56943) [flutter_tools] expand Regexp log match to include more AndroidRuntime failures (cla: yes, tool, waiting for tree to go green) [56945](https://github.com/flutter/flutter/pull/56945) [flutter_tools] unblock fuchsia roll (cla: yes, tool, waiting for tree to go green) [56946](https://github.com/flutter/flutter/pull/56946) [flutter_tools] introduce a BuildSystem interface (cla: yes, tool, waiting for tree to go green) [56958](https://github.com/flutter/flutter/pull/56958) Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green) [56959](https://github.com/flutter/flutter/pull/56959) Make initial daemon devices population fast (cla: yes, tool) [56961](https://github.com/flutter/flutter/pull/56961) Remove dead definesCustomBuildConfigurations (cla: yes, team, tool, waiting for tree to go green) [57005](https://github.com/flutter/flutter/pull/57005) Fix minor typo in 'flutter create --list-samples' help text (cla: yes, tool, waiting for tree to go green) [57027](https://github.com/flutter/flutter/pull/57027) Fix xcode_backend.sh to strip bitcode for archive build, if the project has bitcode disabled entirely (cla: yes, tool, waiting for tree to go green) [57052](https://github.com/flutter/flutter/pull/57052) Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [57075](https://github.com/flutter/flutter/pull/57075) [flutter_tools] re-enable non-nullable test (cla: yes, team, tool, waiting for tree to go green) [57077](https://github.com/flutter/flutter/pull/57077) [flutter_tools] do not set timestamp of package_config file (cla: yes, tool, waiting for tree to go green) [57117](https://github.com/flutter/flutter/pull/57117) [flutter_tools] expose track-widget-creation to build aar (cla: yes, tool, waiting for tree to go green) [57135](https://github.com/flutter/flutter/pull/57135) [flutter_tools] Support profile and release builds on Linux (cla: yes, tool, waiting for tree to go green) [57143](https://github.com/flutter/flutter/pull/57143) Disable DartDev when launching flutter_tools (cla: yes, tool, waiting for tree to go green) [57145](https://github.com/flutter/flutter/pull/57145) [Add2App Android] Fix the issue of Hotreload broken on latest Dev release with Android device (cla: yes, tool, waiting for tree to go green) [57161](https://github.com/flutter/flutter/pull/57161) Remove empty Supporting Files group from Swift app template (cla: yes, tool, waiting for tree to go green) [57162](https://github.com/flutter/flutter/pull/57162) throw more specific toolexit when git fails during upgrade (cla: yes, tool, waiting for tree to go green) [57173](https://github.com/flutter/flutter/pull/57173) [flutter_tools] allow adb to fail to un forward without crashing (cla: yes, tool, waiting for tree to go green) [57182](https://github.com/flutter/flutter/pull/57182) [flutter_tools] fix period in URL for androidX incompat (cla: yes, tool, waiting for tree to go green) [57184](https://github.com/flutter/flutter/pull/57184) [flutter_tools] ensure package_config is re-created if pub get is run (cla: yes, tool, waiting for tree to go green) [57238](https://github.com/flutter/flutter/pull/57238) Switch to CMake for Linux desktop (cla: yes, tool) [57268](https://github.com/flutter/flutter/pull/57268) Remove license statements in template files. (cla: yes, tool, waiting for tree to go green) [57274](https://github.com/flutter/flutter/pull/57274) Desktop default window size (cla: yes, tool, waiting for tree to go green) [57321](https://github.com/flutter/flutter/pull/57321) Update packages (cla: yes, team, tool, waiting for tree to go green) [57328](https://github.com/flutter/flutter/pull/57328) Update flutter_gallery_assets to ^0.2.0 (cla: yes, team, tool) [57345](https://github.com/flutter/flutter/pull/57345) Protect the deletion of the local engine temp dir in case it is alrea… (cla: yes, tool, waiting for tree to go green) [57349](https://github.com/flutter/flutter/pull/57349) Device manager choose running device (cla: yes, tool, waiting for tree to go green) [57355](https://github.com/flutter/flutter/pull/57355) [flutter tools] Improve messages when we fail to connect to the Observatory (cla: yes, tool, waiting for tree to go green) [57392](https://github.com/flutter/flutter/pull/57392) [flutter_tools] check for Runner.sln when parsing for plugins (cla: yes, tool) [57400](https://github.com/flutter/flutter/pull/57400) [flutter_tools] handle missing null check in manifest parser (cla: yes, tool) [57415](https://github.com/flutter/flutter/pull/57415) Fix CMake invocation for 3.10 compat (cla: yes, tool) [57445](https://github.com/flutter/flutter/pull/57445) [flutter_tools] remove globals/context for android testing (cla: yes, tool, waiting for tree to go green) [57446](https://github.com/flutter/flutter/pull/57446) [flutter_tools] minor cleanups to try catch (cla: yes, tool) [57447](https://github.com/flutter/flutter/pull/57447) [flutter_tools] put system clock on globals (cla: yes, tool) [57448](https://github.com/flutter/flutter/pull/57448) [flutter_tools] remove zone level overrides of verbose and daemon logging (cla: yes, tool) [57450](https://github.com/flutter/flutter/pull/57450) [flutter_tools] fix incorrect comment on web runner (cla: yes, tool, waiting for tree to go green) [57452](https://github.com/flutter/flutter/pull/57452) Add Linux GTK artifacts to unpack list (cla: yes, tool) [57498](https://github.com/flutter/flutter/pull/57498) Temporarily allow pluginClass: none on desktop (cla: yes, tool) [57506](https://github.com/flutter/flutter/pull/57506) [flutter_tools] chunk the hashing of large files (cla: yes, tool, waiting for tree to go green) [57510](https://github.com/flutter/flutter/pull/57510) [flutter_tools] reland: integrate l10n tool into hot reload/restart/build (cla: yes, tool) [57515](https://github.com/flutter/flutter/pull/57515) Remove TRANSFORM from Linux CMake files (cla: yes, tool) [57532](https://github.com/flutter/flutter/pull/57532) Always show device discovery diagnostics in "flutter devices" (cla: yes, tool, waiting for tree to go green) [57538](https://github.com/flutter/flutter/pull/57538) Re-add line to Linux template CMakeLists.txt (cla: yes, tool) [57590](https://github.com/flutter/flutter/pull/57590) Update the flutter script's locking mechanism and follow_links (cla: yes, tool) [57601](https://github.com/flutter/flutter/pull/57601) Add Android private keystore to project gitignore (cla: yes, tool, waiting for tree to go green) [57611](https://github.com/flutter/flutter/pull/57611) Revert "[flutter_tools] remove globals/context for android testing" (cla: yes, tool) [57614](https://github.com/flutter/flutter/pull/57614) [flutter_tools] reland: remove globals from android device/testing (cla: yes, tool) [57688](https://github.com/flutter/flutter/pull/57688) Change release archive check to warning (cla: yes, tool, waiting for tree to go green) [57690](https://github.com/flutter/flutter/pull/57690) [flutter_tools] hide all development tools (cla: yes, tool, waiting for tree to go green) [57701](https://github.com/flutter/flutter/pull/57701) Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green) [57703](https://github.com/flutter/flutter/pull/57703) [flutter_tools] ensure emulator command does not crash with missing avdmanager (cla: yes, tool, waiting for tree to go green) [57749](https://github.com/flutter/flutter/pull/57749) Add release and profile support for Windows (cla: yes, tool) [57813](https://github.com/flutter/flutter/pull/57813) [flutter_tools] add vm service method to pull SkSL (cla: yes, tool, waiting for tree to go green) [57829](https://github.com/flutter/flutter/pull/57829) [flutter_tools] forward flutter format to dart format and deprecate (cla: yes, tool, waiting for tree to go green) [57830](https://github.com/flutter/flutter/pull/57830) [flutter_tools] validate android arch and build number (cla: yes, tool, waiting for tree to go green) [57871](https://github.com/flutter/flutter/pull/57871) [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool) [57873](https://github.com/flutter/flutter/pull/57873) [flutter_tools] URI encode dart-define values (cla: yes, tool, waiting for tree to go green) [57874](https://github.com/flutter/flutter/pull/57874) [flutter_tools] throw if asked to build release for x86_64 (cla: yes, tool, waiting for tree to go green) [57907](https://github.com/flutter/flutter/pull/57907) flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool) [57963](https://github.com/flutter/flutter/pull/57963) [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool) [58011](https://github.com/flutter/flutter/pull/58011) write test to convince self of lack of timing issue (cla: yes, tool) [58018](https://github.com/flutter/flutter/pull/58018) Prevent building non-android plugins in build aar (cla: yes, team, tool, waiting for tree to go green) [58030](https://github.com/flutter/flutter/pull/58030) Remove invalid `local` from macos_assemble.sh (cla: yes, tool, waiting for tree to go green) [58039](https://github.com/flutter/flutter/pull/58039) [flutter_tools] Put a heap size limit on the frontend_server (cla: yes, tool, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58064](https://github.com/flutter/flutter/pull/58064) print checksum differences when detected by --verify-only (cla: yes, tool) [58069](https://github.com/flutter/flutter/pull/58069) Fix Linux plugin template build visibility (cla: yes, tool) [58123](https://github.com/flutter/flutter/pull/58123) Revert "write test to convince self of lack of timing issue" (cla: yes, tool) [58137](https://github.com/flutter/flutter/pull/58137) Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green) [58174](https://github.com/flutter/flutter/pull/58174) Start from a clean slate when bundling Linux build (cla: yes, tool) [58188](https://github.com/flutter/flutter/pull/58188) [flutter_tools] only copy cached dill after startup (cla: yes, tool) [58189](https://github.com/flutter/flutter/pull/58189) Update Windows template version (cla: yes, tool) [58193](https://github.com/flutter/flutter/pull/58193) Revert "[flutter_tools] always initialize the resident runner from di… (cla: yes, tool, waiting for tree to go green) [58208](https://github.com/flutter/flutter/pull/58208) Revert "Revert "[flutter_tools] always initialize the resident runner from di…" (cla: yes, tool, waiting for tree to go green) [58215](https://github.com/flutter/flutter/pull/58215) Fix extraneous spaces printed by flutter tool if the lock isn't waited on. (cla: yes, tool) [58257](https://github.com/flutter/flutter/pull/58257) Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool) [58284](https://github.com/flutter/flutter/pull/58284) Send text error in JSON and print in tools (cla: yes, framework, tool) [58328](https://github.com/flutter/flutter/pull/58328) [flutter_tools] deprecate flutter generate and codegen (cla: yes, team, tool, waiting for tree to go green) [58332](https://github.com/flutter/flutter/pull/58332) [flutter_tools] cleanup to devfs Operations (cla: yes, tool) [58335](https://github.com/flutter/flutter/pull/58335) [flutter_tools] do not include material icon incorrectly (cla: yes, tool) [58372](https://github.com/flutter/flutter/pull/58372) Fix non-local-engine Linux release builds (cla: yes, tool, waiting for tree to go green) [58390](https://github.com/flutter/flutter/pull/58390) use Expand-Archive and Compress-Archive in windows os utils (cla: yes, tool) [58421](https://github.com/flutter/flutter/pull/58421) Fix typo in error message for flutter doctor (cla: yes, tool, waiting for tree to go green) [58444](https://github.com/flutter/flutter/pull/58444) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green) [58454](https://github.com/flutter/flutter/pull/58454) Revert "[flutter_tools] only copy cached dill after startup" (cla: yes, tool) [58455](https://github.com/flutter/flutter/pull/58455) [flutter_tools] reland: copy dill after startup (cla: yes, tool) [58474](https://github.com/flutter/flutter/pull/58474) [flutter tools] Don't return success if we trigger runZoned's error callback (cla: yes, tool, waiting for tree to go green) [58522](https://github.com/flutter/flutter/pull/58522) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green) [58525](https://github.com/flutter/flutter/pull/58525) Revert "[flutter_tools] Put a heap size limit on the frontend_server" (cla: yes, tool, waiting for tree to go green) [58533](https://github.com/flutter/flutter/pull/58533) [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool) [58538](https://github.com/flutter/flutter/pull/58538) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58539](https://github.com/flutter/flutter/pull/58539) [flutter_tools] Allow the tool to suppress compilation errors. (cla: yes, tool) [58541](https://github.com/flutter/flutter/pull/58541) Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green) [58544](https://github.com/flutter/flutter/pull/58544) Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green) [58549](https://github.com/flutter/flutter/pull/58549) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [58551](https://github.com/flutter/flutter/pull/58551) [flutter_tools] iOS VM Service logs should include stderr (cla: yes, tool, waiting for tree to go green) [58557](https://github.com/flutter/flutter/pull/58557) [flutter_tools] remove handling of error that is fixed (cla: yes, tool, waiting for tree to go green) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58618](https://github.com/flutter/flutter/pull/58618) Revert "Don't elapse real time during IOSDevice.startApp tests" (cla: yes, tool) [58622](https://github.com/flutter/flutter/pull/58622) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58644](https://github.com/flutter/flutter/pull/58644) Add FakeAsync to delay tests (cla: yes, team, tool) [58645](https://github.com/flutter/flutter/pull/58645) Move create project build tests to permeable command shard (cla: yes, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58649](https://github.com/flutter/flutter/pull/58649) Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green) [58653](https://github.com/flutter/flutter/pull/58653) [flutter_tools] avoid serving files outside of expected paths (cla: yes, tool, waiting for tree to go green) [58656](https://github.com/flutter/flutter/pull/58656) Add the ability to ignore lines depending on comments (cla: yes, team, tool) [58670](https://github.com/flutter/flutter/pull/58670) LG debugging/logcat fixed (cla: yes, tool) [58688](https://github.com/flutter/flutter/pull/58688) [flutter_tools] unbreak g3 roll (tool, waiting for tree to go green) [58703](https://github.com/flutter/flutter/pull/58703) [flutter_tools] use -f when fetching tags (cla: yes, tool) [58711](https://github.com/flutter/flutter/pull/58711) [flutter_tools] unbreak g3 usage of installHook (cla: yes, tool, waiting for tree to go green) [58713](https://github.com/flutter/flutter/pull/58713) Don't require a specific Windows 10 SDK (cla: yes, tool) [58719](https://github.com/flutter/flutter/pull/58719) Revert "use Expand-Archive and Compress-Archive in windows os utils" (cla: yes, tool) [58732](https://github.com/flutter/flutter/pull/58732) Revert "flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies" (cla: yes, tool) [58743](https://github.com/flutter/flutter/pull/58743) [flutter_tools] write sksl on exit (cla: yes, tool) [58798](https://github.com/flutter/flutter/pull/58798) [flutter_tools] don't use verbose when in doctor or help command (cla: yes, tool) [58804](https://github.com/flutter/flutter/pull/58804) [flutter_tools] minor cleanup to vm service connection (cla: yes, tool, waiting for tree to go green) [58812](https://github.com/flutter/flutter/pull/58812) [flutter tools] Change the desktop device names and IDs (cla: yes, tool) [58815](https://github.com/flutter/flutter/pull/58815) Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green) [58817](https://github.com/flutter/flutter/pull/58817) [flutter_tools] remove deprecation warning on flutter format (cla: yes, tool, waiting for tree to go green) [58830](https://github.com/flutter/flutter/pull/58830) [flutter_tools] disable dartdev when calling snapshots directly (cla: yes, tool, waiting for tree to go green) [58842](https://github.com/flutter/flutter/pull/58842) [flutter_tools] fix capitalization in build commands (cla: yes, tool, waiting for tree to go green) [58871](https://github.com/flutter/flutter/pull/58871) [flutter_tools] use correct sdk path for analysis (cla: yes, tool) [58872](https://github.com/flutter/flutter/pull/58872) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [58875](https://github.com/flutter/flutter/pull/58875) [flutter_tools] inject output preferences at the top level (cla: yes, tool) [58879](https://github.com/flutter/flutter/pull/58879) [flutter_tools] support bundle-sksl-path on all desktop and mobile targets (cla: yes, tool) [58887](https://github.com/flutter/flutter/pull/58887) [flutter_tools] only restrict devices based on arch + buildMode, not emulator status (cla: yes, tool, waiting for tree to go green) [58890](https://github.com/flutter/flutter/pull/58890) [flutter_tools] change service worker load to NOTICES (cla: yes, tool) [58891](https://github.com/flutter/flutter/pull/58891) [flutter_tools] rename library to be less absurd (cla: yes, tool, waiting for tree to go green) [58994](https://github.com/flutter/flutter/pull/58994) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59001](https://github.com/flutter/flutter/pull/59001) fix analysis on master (cla: yes, tool) [59002](https://github.com/flutter/flutter/pull/59002) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [59012](https://github.com/flutter/flutter/pull/59012) Release cache lock for commands after required artifacts are downloaded (cla: yes, tool, waiting for tree to go green) [59018](https://github.com/flutter/flutter/pull/59018) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59023](https://github.com/flutter/flutter/pull/59023) add a help link to the default module template readme (cla: yes, tool, waiting for tree to go green) [59025](https://github.com/flutter/flutter/pull/59025) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [59026](https://github.com/flutter/flutter/pull/59026) [flutter_tools] Fix slow ios_device_start_prebuilt_test (cla: yes, tool, waiting for tree to go green) [59035](https://github.com/flutter/flutter/pull/59035) Revert "[flutter_tools] use correct sdk path for analysis" (cla: yes, tool) [59044](https://github.com/flutter/flutter/pull/59044) Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59080](https://github.com/flutter/flutter/pull/59080) Remove use of BundleUtilities in Linux build (cla: yes, tool) [59081](https://github.com/flutter/flutter/pull/59081) [flutter_tools] Reland: use correct sdk path for analysis (cla: yes, tool) [59083](https://github.com/flutter/flutter/pull/59083) [flutter_tools] include dart-defines in cached kernel name (cla: yes, tool, waiting for tree to go green) [59087](https://github.com/flutter/flutter/pull/59087) [flutter_tools] create NotifyingLogger at the top level when running flutter run --machine or flutter attach --machine (cla: yes, tool) [59175](https://github.com/flutter/flutter/pull/59175) [flutter_tools] remove globals from proxy validator (cla: yes, tool) [59184](https://github.com/flutter/flutter/pull/59184) [flutter_tools] remove globals from compilers (cla: yes, team, tool) [59197](https://github.com/flutter/flutter/pull/59197) Revert "[flutter_tools] inject output preferences at the top level" (cla: yes, tool) [59201](https://github.com/flutter/flutter/pull/59201) Add iOS Podfile migration warning to support federated plugins (cla: yes, tool, waiting for tree to go green) [59209](https://github.com/flutter/flutter/pull/59209) Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59210](https://github.com/flutter/flutter/pull/59210) Do not depend on embedded $dartUriBase (tool) [59215](https://github.com/flutter/flutter/pull/59215) [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green) [59217](https://github.com/flutter/flutter/pull/59217) Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green) [59250](https://github.com/flutter/flutter/pull/59250) Don't crash on requests for invalid package URLs (cla: yes, tool, waiting for tree to go green) [59283](https://github.com/flutter/flutter/pull/59283) [versions] Update all the versions (cla: yes, team, tool) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59287](https://github.com/flutter/flutter/pull/59287) Switch Linux to the GTK embedding (cla: yes, tool) [59291](https://github.com/flutter/flutter/pull/59291) [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool) [59294](https://github.com/flutter/flutter/pull/59294) flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool, waiting for tree to go green) [59343](https://github.com/flutter/flutter/pull/59343) CMake fix for Linux projects without plugins (cla: yes, tool, waiting for tree to go green) [59365](https://github.com/flutter/flutter/pull/59365) Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green) [59369](https://github.com/flutter/flutter/pull/59369) [flutter_tools] move mingit path addition back to flutter.bat (cla: yes, tool, waiting for tree to go green) [59484](https://github.com/flutter/flutter/pull/59484) Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green) [59487](https://github.com/flutter/flutter/pull/59487) [flutter_tools] deprecate build aot (cla: yes, tool) [59497](https://github.com/flutter/flutter/pull/59497) More word substitutions (cla: yes, tool, waiting for tree to go green) [59507](https://github.com/flutter/flutter/pull/59507) Add `--platforms` to `flutter create -t plugin` command (cla: yes, tool, waiting for tree to go green) [59508](https://github.com/flutter/flutter/pull/59508) Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59512](https://github.com/flutter/flutter/pull/59512) [flutter_tools] update libimobiledevice (cla: yes, tool) [59539](https://github.com/flutter/flutter/pull/59539) [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool) [59568](https://github.com/flutter/flutter/pull/59568) [flutter_tools] fix the post message event attribute used to skip waiting (cla: yes, tool, waiting for tree to go green) [59571](https://github.com/flutter/flutter/pull/59571) [flutter_tools] add toggle `b` and service extension to change platform brightness (cla: yes, framework, tool) [59607](https://github.com/flutter/flutter/pull/59607) Specify encoding for vswhere output (cla: yes, tool) [59624](https://github.com/flutter/flutter/pull/59624) [flutter_tools] make expando on vm service null safe to handle web stuff (cla: yes, tool, waiting for tree to go green) [59626](https://github.com/flutter/flutter/pull/59626) [flutter_tools] handle NPE in list views method (cla: yes, tool) [59630](https://github.com/flutter/flutter/pull/59630) Fix Linux shell window default size (cla: yes, tool) [59632](https://github.com/flutter/flutter/pull/59632) Don't crash when pubspec isn't a map (cla: yes, tool, waiting for tree to go green) [59695](https://github.com/flutter/flutter/pull/59695) Change iOS device discovery from polling to long-running observation (cla: yes, tool) [59706](https://github.com/flutter/flutter/pull/59706) [flutter_tools] maintain file manifest for create (cla: yes, tool) [59709](https://github.com/flutter/flutter/pull/59709) Clean up PollingDeviceDiscovery dispose (cla: yes, tool, waiting for tree to go green) [59714](https://github.com/flutter/flutter/pull/59714) Use a HeaderBar for Linux applications. (cla: yes, tool) [59717](https://github.com/flutter/flutter/pull/59717) Manual engine roll to update format of `compileExpression` RPC response (cla: yes, engine, tool, waiting for tree to go green) [59773](https://github.com/flutter/flutter/pull/59773) [flutter_tools] add missing null-safety flags (cla: yes, tool) [59774](https://github.com/flutter/flutter/pull/59774) Revert "Manual engine roll to update format of `compileExpression` RP… (cla: yes, engine, tool) [59786](https://github.com/flutter/flutter/pull/59786) [flutter_tools] make parent logger optional (cla: yes, tool) [59789](https://github.com/flutter/flutter/pull/59789) Make flutter and dart scripts invoke their batch file equivalents on Windows (cla: yes, tool) [59802](https://github.com/flutter/flutter/pull/59802) Remove Linux shell window_configuration.cc (cla: yes, tool) [59804](https://github.com/flutter/flutter/pull/59804) Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green) [59809](https://github.com/flutter/flutter/pull/59809) Add integration tests for structured error (cla: yes, tool, waiting for tree to go green) [59810](https://github.com/flutter/flutter/pull/59810) Revert "flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies" (cla: yes, tool) [59813](https://github.com/flutter/flutter/pull/59813) Revert "Add the ability to ignore lines depending on comments" (cla: yes, tool) [59822](https://github.com/flutter/flutter/pull/59822) [flutter_tools] track null safety usage (cla: yes, tool, waiting for tree to go green) [59826](https://github.com/flutter/flutter/pull/59826) Enabled expression evaluation in flutter for web by default (cla: yes, tool, waiting for tree to go green) [59832](https://github.com/flutter/flutter/pull/59832) [versions] update all versions (cla: yes, team, tool, waiting for tree to go green) [59867](https://github.com/flutter/flutter/pull/59867) Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green) [59874](https://github.com/flutter/flutter/pull/59874) Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green) [59896](https://github.com/flutter/flutter/pull/59896) gitignore `.last_build_id` file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green) [59907](https://github.com/flutter/flutter/pull/59907) port devicelab from idevice_id -> xcdevices (cla: yes, team, tool) [59996](https://github.com/flutter/flutter/pull/59996) [flutter_tools] android test cleanups (cla: yes, tool, waiting for tree to go green) [59997](https://github.com/flutter/flutter/pull/59997) [flutter_tools] cleanup fuchsia tests (cla: yes, tool, waiting for tree to go green) [59999](https://github.com/flutter/flutter/pull/59999) [flutter_tools] cleanup iOS test (tool, waiting for tree to go green) [60017](https://github.com/flutter/flutter/pull/60017) Fix typo in Linux CMake template (cla: yes, tool, waiting for tree to go green) [60018](https://github.com/flutter/flutter/pull/60018) [flutter_tools] switch linux desktop feature on (cla: yes, tool, waiting for tree to go green) [60041](https://github.com/flutter/flutter/pull/60041) Use assemble build system directly for build ios-framework (cla: yes, team, tool) [60060](https://github.com/flutter/flutter/pull/60060) [flutter_tools] fix root directory tests (cla: yes, tool) [60102](https://github.com/flutter/flutter/pull/60102) [flutter_tools] add null safety argument to unbreak frob (cla: yes, tool) [60111](https://github.com/flutter/flutter/pull/60111) Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool) [60116](https://github.com/flutter/flutter/pull/60116) [flutter_tools] Add support for web in plugin template. (cla: yes, tool, waiting for tree to go green) [60119](https://github.com/flutter/flutter/pull/60119) [flutter_tools] separate target platform, host platform, and architecture (cla: yes, tool) [60127](https://github.com/flutter/flutter/pull/60127) [versions] update all versions and fix tool tests (cla: yes, team, tool) [60144](https://github.com/flutter/flutter/pull/60144) [flutter_tools] more test fixes (cla: yes, tool) [60147](https://github.com/flutter/flutter/pull/60147) Revert "[flutter_tools] separate target platform, host platform, and architecture" (cla: yes, tool) [60156](https://github.com/flutter/flutter/pull/60156) [flutter_tools] even more test fixes (cla: yes, tool) [60159](https://github.com/flutter/flutter/pull/60159) Make `flutter create .` on plugins also regenerates files for platforms already supported (cla: yes, tool, waiting for tree to go green) [60163](https://github.com/flutter/flutter/pull/60163) Consider the Linux template stable (cla: yes, tool) [60172](https://github.com/flutter/flutter/pull/60172) [flutter_tools] start fixing command tests (cla: yes, tool) [60185](https://github.com/flutter/flutter/pull/60185) [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool) [60200](https://github.com/flutter/flutter/pull/60200) [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green) [60221](https://github.com/flutter/flutter/pull/60221) [flutter_tools] de-flake integration tests (cla: yes, tool) [60224](https://github.com/flutter/flutter/pull/60224) [flutter_tools] Update WebAssetServer to avoid context, fix tests (cla: yes, tool) [60228](https://github.com/flutter/flutter/pull/60228) Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool) [60231](https://github.com/flutter/flutter/pull/60231) [flutter_tools] remove most use of global packages path (cla: yes, tool) [60241](https://github.com/flutter/flutter/pull/60241) [flutter_tools] fix tests that depend on correct cache existance (cla: yes, tool) [60263](https://github.com/flutter/flutter/pull/60263) [flutter_tools] last pass on general.shard unit tests (cla: yes, tool) [60317](https://github.com/flutter/flutter/pull/60317) [flutter_tools] surface null safety/experiment flags in attach (cla: yes, tool, waiting for tree to go green) [60381](https://github.com/flutter/flutter/pull/60381) Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool) [60395](https://github.com/flutter/flutter/pull/60395) [flutter tools] Revert desktop device name changes and print the category instead (cla: yes, tool, waiting for tree to go green) [60480](https://github.com/flutter/flutter/pull/60480) [flutter_tools] remove globals from base/android (cla: yes, tool) [60546](https://github.com/flutter/flutter/pull/60546) Fix daemon device discovery crash when Xcode isn't installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green) [60551](https://github.com/flutter/flutter/pull/60551) Revert "[flutter_tools] update libimobiledevice" (cla: yes, tool) [60569](https://github.com/flutter/flutter/pull/60569) Re-land "[flutter_tools] update libimobiledevice" (cla: yes, tool) [60570](https://github.com/flutter/flutter/pull/60570) [flutter_tools] support sound null-safety mode for the web (cla: yes, tool) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60615](https://github.com/flutter/flutter/pull/60615) [flutter_tools] ensure flutter daemon can exit correctly (cla: yes, tool) [60617](https://github.com/flutter/flutter/pull/60617) [flutter_tool] fix ide-config crash because of no android key (cla: yes, tool) [60623](https://github.com/flutter/flutter/pull/60623) Take screenshots of wirelessly paired iOS devices (platform-ios, tool) [60629](https://github.com/flutter/flutter/pull/60629) Switch Windows to CMake (cla: yes, tool) [60633](https://github.com/flutter/flutter/pull/60633) [flutter_tools] add null-safety flags to dill cache location (cla: yes, tool) [60654](https://github.com/flutter/flutter/pull/60654) Only try the GDK X11 backend, as the FlView only currently supports X11 (cla: yes, tool) [60658](https://github.com/flutter/flutter/pull/60658) [flutter_tools] fix crash if grouped doctor validator crashes (cla: yes, tool, waiting for tree to go green) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60708](https://github.com/flutter/flutter/pull/60708) [flutter_tools] support starting in canvaskit with FLUTTER_WEB_USE_SKIA=true (tool, waiting for tree to go green) [60787](https://github.com/flutter/flutter/pull/60787) [flutter_tools] remove some globals from flutter_tester device (cla: yes, tool) [60927](https://github.com/flutter/flutter/pull/60927) [flutter_tools] fix crash if the platform section was a list (cla: yes, tool) [60932](https://github.com/flutter/flutter/pull/60932) [flutter_tools] add sdk constraint to plugin/package templates (cla: yes, tool) [60998](https://github.com/flutter/flutter/pull/60998) [flutter_tools] deprecate flutter version (cla: yes, tool, waiting for tree to go green) [61003](https://github.com/flutter/flutter/pull/61003) [flutter_tools] make precache force blow away stamp files (cla: yes, tool) [61034](https://github.com/flutter/flutter/pull/61034) Roll packages (cla: yes, team, tool) [61064](https://github.com/flutter/flutter/pull/61064) Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green) [61066](https://github.com/flutter/flutter/pull/61066) Issue with comparison operator in generated service worker (cla: yes, tool, waiting for tree to go green) [61103](https://github.com/flutter/flutter/pull/61103) [flutter_tools] ensure AppRunLogger is injected for run/attach machine (cla: yes, tool, waiting for tree to go green) [61127](https://github.com/flutter/flutter/pull/61127) Test update_packages for git packages (cla: yes, tool, waiting for tree to go green) [61129](https://github.com/flutter/flutter/pull/61129) [flutter_tools] fix recursive asset variant issue (cla: yes, tool, waiting for tree to go green) #### framework - 413 pull request(s) [42940](https://github.com/flutter/flutter/pull/42940) Revise Action API (cla: yes, f: cupertino, f: material design, framework, team) [50232](https://github.com/flutter/flutter/pull/50232) Docs 'a a' fix #1 (cla: yes, framework) [50236](https://github.com/flutter/flutter/pull/50236) Docs 'that that' fix #2 (cla: yes, framework, waiting for tree to go green) [50237](https://github.com/flutter/flutter/pull/50237) Docs 'that that' fix #3 (cla: yes, framework, waiting for tree to go green) [50412](https://github.com/flutter/flutter/pull/50412) Make CircularProgressIndicator's animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [50673](https://github.com/flutter/flutter/pull/50673) Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [50915](https://github.com/flutter/flutter/pull/50915) Implement barrierDismissible for `showCupertinoDialog` (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [51465](https://github.com/flutter/flutter/pull/51465) Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green) [51581](https://github.com/flutter/flutter/pull/51581) Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green) [51656](https://github.com/flutter/flutter/pull/51656) Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens) [52126](https://github.com/flutter/flutter/pull/52126) Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [52990](https://github.com/flutter/flutter/pull/52990) Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green) [52995](https://github.com/flutter/flutter/pull/52995) Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [53422](https://github.com/flutter/flutter/pull/53422) Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [53655](https://github.com/flutter/flutter/pull/53655) Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [53843](https://github.com/flutter/flutter/pull/53843) Fix FlutterError.onError in debug mode (cla: yes, framework) [53875](https://github.com/flutter/flutter/pull/53875) Remove network images from cache on any exception during loading (a: images, cla: yes, framework) [53878](https://github.com/flutter/flutter/pull/53878) Fix diagnostics crash in profile mode (cla: yes, framework) [53888](https://github.com/flutter/flutter/pull/53888) Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green) [53916](https://github.com/flutter/flutter/pull/53916) Slider rebase work (cla: yes, f: material design, framework, team) [53945](https://github.com/flutter/flutter/pull/53945) [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green) [53959](https://github.com/flutter/flutter/pull/53959) Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green) [53974](https://github.com/flutter/flutter/pull/53974) Remove strict repeat check from framework formatter (moved to engine) (cla: yes, framework) [54110](https://github.com/flutter/flutter/pull/54110) Added 'barrierColor' and 'useSafeArea' parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green) [54119](https://github.com/flutter/flutter/pull/54119) Reland "iOS UITextInput autocorrection prompt (#45354)" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54125](https://github.com/flutter/flutter/pull/54125) remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team) [54128](https://github.com/flutter/flutter/pull/54128) fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green) [54131](https://github.com/flutter/flutter/pull/54131) flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54144](https://github.com/flutter/flutter/pull/54144) drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54171](https://github.com/flutter/flutter/pull/54171) System mouse cursors (a: tests, cla: yes, f: material design, framework) [54206](https://github.com/flutter/flutter/pull/54206) Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54212](https://github.com/flutter/flutter/pull/54212) Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green) [54218](https://github.com/flutter/flutter/pull/54218) [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green) [54220](https://github.com/flutter/flutter/pull/54220) [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework) [54227](https://github.com/flutter/flutter/pull/54227) [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green) [54234](https://github.com/flutter/flutter/pull/54234) Fix right alignment TWB longestLine (a: typography, cla: yes, framework) [54243](https://github.com/flutter/flutter/pull/54243) Add API to services package that overrides HTTP ban (cla: yes, framework) [54258](https://github.com/flutter/flutter/pull/54258) [DecorationImage] adds scale property (cla: yes, framework, waiting for tree to go green) [54286](https://github.com/flutter/flutter/pull/54286) Revert bindings dependency workaround (cla: yes, framework, waiting for tree to go green) [54291](https://github.com/flutter/flutter/pull/54291) Minimal implementation of FlutterError.toString for release mode (cla: yes, framework, waiting for tree to go green) [54305](https://github.com/flutter/flutter/pull/54305) Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green) [54306](https://github.com/flutter/flutter/pull/54306) Fix initial value for highlight mode on desktop platforms. (cla: yes, framework) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54394](https://github.com/flutter/flutter/pull/54394) replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [54442](https://github.com/flutter/flutter/pull/54442) Add null check in TextStyle.apply for TextBaseline (cla: yes, framework, waiting for tree to go green) [54479](https://github.com/flutter/flutter/pull/54479) Enable gesture recognizer in selectable rich text (cla: yes, framework, waiting for tree to go green) [54480](https://github.com/flutter/flutter/pull/54480) Revert "[flutter_driver] Add SceneDisplayLag stats to timeline summar… (a: tests, cla: yes, framework, team) [54481](https://github.com/flutter/flutter/pull/54481) Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework) [54490](https://github.com/flutter/flutter/pull/54490) [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green) [54493](https://github.com/flutter/flutter/pull/54493) Use scheduleTask for adding licenses (cla: yes, framework, waiting for tree to go green) [54519](https://github.com/flutter/flutter/pull/54519) Revert "Add API to services package that overrides HTTP ban" (cla: yes, framework) [54522](https://github.com/flutter/flutter/pull/54522) Reland "Add API to services package that overrides HTTP ban (#54243)" (cla: yes, framework, team, waiting for tree to go green) [54640](https://github.com/flutter/flutter/pull/54640) Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green) [54670](https://github.com/flutter/flutter/pull/54670) Updated Nested SingleChildScrollView test for clarity (cla: yes, framework, waiting for tree to go green) [54674](https://github.com/flutter/flutter/pull/54674) Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green) [54698](https://github.com/flutter/flutter/pull/54698) Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green) [54706](https://github.com/flutter/flutter/pull/54706) Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green) [54714](https://github.com/flutter/flutter/pull/54714) [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [54741](https://github.com/flutter/flutter/pull/54741) [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green) [54779](https://github.com/flutter/flutter/pull/54779) Revert "Reland "Add API to services package that overrides HTTP ban (#54243)"" (cla: yes, framework) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [54902](https://github.com/flutter/flutter/pull/54902) Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54919](https://github.com/flutter/flutter/pull/54919) Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework) [54978](https://github.com/flutter/flutter/pull/54978) Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green) [54981](https://github.com/flutter/flutter/pull/54981) disable hit testing if the CompositedTransformFollower is hidden when… (cla: yes, framework) [54985](https://github.com/flutter/flutter/pull/54985) Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55044](https://github.com/flutter/flutter/pull/55044) Created method to report ImageChunkEvents (cla: yes, framework, waiting for tree to go green) [55064](https://github.com/flutter/flutter/pull/55064) Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55141](https://github.com/flutter/flutter/pull/55141) Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green) [55221](https://github.com/flutter/flutter/pull/55221) [ExpansionTile] adds padding property (cla: yes, f: material design, framework) [55230](https://github.com/flutter/flutter/pull/55230) Make Action.enabled be isEnabled(Intent intent) instead. (cla: yes, framework, team) [55246](https://github.com/flutter/flutter/pull/55246) Handle surrogate pairs in RenderEditable (cla: yes, framework) [55253](https://github.com/flutter/flutter/pull/55253) Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool) [55257](https://github.com/flutter/flutter/pull/55257) Add DragTarget callback onAcceptDetails, plus helper class DragTarget… (cla: yes, framework, waiting for tree to go green) [55260](https://github.com/flutter/flutter/pull/55260) Fine tune the Y offset of OutlineInputBorder's floating label (cla: yes, f: material design, framework, waiting for tree to go green) [55303](https://github.com/flutter/flutter/pull/55303) Fixed a typo in the docs. (cla: yes, framework, waiting for tree to go green) [55333](https://github.com/flutter/flutter/pull/55333) Use kIsWeb instead of private _kIsBrowser in text_input.dart (cla: yes, framework, waiting for tree to go green) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [55414](https://github.com/flutter/flutter/pull/55414) LayoutBuilder: skip calling builder when constraints are the same (cla: yes, framework, team) [55415](https://github.com/flutter/flutter/pull/55415) Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55416](https://github.com/flutter/flutter/pull/55416) Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green) [55469](https://github.com/flutter/flutter/pull/55469) Fix compute intrinsic size for wrap (cla: yes, framework) [55482](https://github.com/flutter/flutter/pull/55482) Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green) [55484](https://github.com/flutter/flutter/pull/55484) Revert "Fix FlutterError.onError in debug mode (#53843)" (a: tests, cla: yes, f: material design, framework) [55494](https://github.com/flutter/flutter/pull/55494) Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green) [55500](https://github.com/flutter/flutter/pull/55500) Relands Fix FlutterError.onError in debug mode (cla: yes, framework, waiting for tree to go green) [55527](https://github.com/flutter/flutter/pull/55527) Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens) [55599](https://github.com/flutter/flutter/pull/55599) Default to use V2 Slider (cla: yes, f: material design, framework) [55600](https://github.com/flutter/flutter/pull/55600) Fix focus traversal regions to account for transforms. (cla: yes, framework, waiting for tree to go green) [55636](https://github.com/flutter/flutter/pull/55636) Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55651](https://github.com/flutter/flutter/pull/55651) Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green) [55761](https://github.com/flutter/flutter/pull/55761) Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green) [55763](https://github.com/flutter/flutter/pull/55763) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework) [55769](https://github.com/flutter/flutter/pull/55769) Revert "[timeline] Sort timeline events before summarizing (#55763)" (a: tests, cla: yes, framework) [55771](https://github.com/flutter/flutter/pull/55771) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green) [55775](https://github.com/flutter/flutter/pull/55775) TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [55789](https://github.com/flutter/flutter/pull/55789) ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [55832](https://github.com/flutter/flutter/pull/55832) Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green) [55857](https://github.com/flutter/flutter/pull/55857) Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green) [55871](https://github.com/flutter/flutter/pull/55871) Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool) [55902](https://github.com/flutter/flutter/pull/55902) Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green) [55911](https://github.com/flutter/flutter/pull/55911) Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green) [55936](https://github.com/flutter/flutter/pull/55936) Fixed #55858 (a: tests, cla: yes, framework) [55939](https://github.com/flutter/flutter/pull/55939) Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [55998](https://github.com/flutter/flutter/pull/55998) Fixes the navigator pages update crashes when there is still route wa… (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green) [56084](https://github.com/flutter/flutter/pull/56084) Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [56090](https://github.com/flutter/flutter/pull/56090) Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [56091](https://github.com/flutter/flutter/pull/56091) Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [56190](https://github.com/flutter/flutter/pull/56190) [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green) [56407](https://github.com/flutter/flutter/pull/56407) fixup! Update grammar in basic.dart #56251 (cla: yes, framework, waiting for tree to go green) [56409](https://github.com/flutter/flutter/pull/56409) InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green) [56428](https://github.com/flutter/flutter/pull/56428) Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green) [56430](https://github.com/flutter/flutter/pull/56430) Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green) [56494](https://github.com/flutter/flutter/pull/56494) Wire up autofocus for OutlineButton (cla: yes, f: material design, framework) [56521](https://github.com/flutter/flutter/pull/56521) Have the physics enforce the scroll position. (cla: yes, framework) [56549](https://github.com/flutter/flutter/pull/56549) Expose includeSemantics option to RawKeyboardListener (cla: yes, framework) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56611](https://github.com/flutter/flutter/pull/56611) Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green) [56614](https://github.com/flutter/flutter/pull/56614) Revert "Paste shows only when content on clipboard (#54902)" (cla: yes, f: cupertino, f: material design, framework) [56641](https://github.com/flutter/flutter/pull/56641) Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [56645](https://github.com/flutter/flutter/pull/56645) Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56710](https://github.com/flutter/flutter/pull/56710) [web] Unskip TextStyle web tests (cla: yes, framework, waiting for tree to go green) [56732](https://github.com/flutter/flutter/pull/56732) fix pushAndRemoveUntil incorrectly removes the routes below the first… (cla: yes, f: routes, framework, waiting for tree to go green) [56794](https://github.com/flutter/flutter/pull/56794) [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56859](https://github.com/flutter/flutter/pull/56859) Fix wrong link in description on the platform system channel (cla: yes, framework, waiting for tree to go green) [56895](https://github.com/flutter/flutter/pull/56895) [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green) [56906](https://github.com/flutter/flutter/pull/56906) more docs about diagnostics in release mode (cla: yes, framework) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56952](https://github.com/flutter/flutter/pull/56952) Add more documentation to addTimingsCallback (cla: yes, framework, waiting for tree to go green) [56956](https://github.com/flutter/flutter/pull/56956) ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green) [56968](https://github.com/flutter/flutter/pull/56968) setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green) [57033](https://github.com/flutter/flutter/pull/57033) Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green) [57036](https://github.com/flutter/flutter/pull/57036) fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) [57047](https://github.com/flutter/flutter/pull/57047) Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green) [57052](https://github.com/flutter/flutter/pull/57052) Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool) [57053](https://github.com/flutter/flutter/pull/57053) Updated gen_missing_localizations to copy the english strings instead of using 'TBD'. (cla: yes, f: material design, framework, team, waiting for tree to go green) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [57065](https://github.com/flutter/flutter/pull/57065) Remove deprecated child parameter for NestedScrollView's overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green) [57085](https://github.com/flutter/flutter/pull/57085) Remove redundant transform from showInViewport (cla: yes, framework, waiting for tree to go green) [57094](https://github.com/flutter/flutter/pull/57094) MouseCursor uses a special class instead of null to defer (cla: yes, framework) [57136](https://github.com/flutter/flutter/pull/57136) update initial route documentation (cla: yes, framework, waiting for tree to go green) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57167](https://github.com/flutter/flutter/pull/57167) Remove obsolete UpdateCounted prefix (cla: yes, framework, waiting for tree to go green) [57172](https://github.com/flutter/flutter/pull/57172) Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green) [57189](https://github.com/flutter/flutter/pull/57189) Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green) [57195](https://github.com/flutter/flutter/pull/57195) Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [57201](https://github.com/flutter/flutter/pull/57201) correctly dispose listeners by image widget (cla: yes, framework, waiting for tree to go green) [57240](https://github.com/flutter/flutter/pull/57240) [web] Update test skip description. (a: tests, cla: yes, framework, platform-web) [57244](https://github.com/flutter/flutter/pull/57244) Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework) [57247](https://github.com/flutter/flutter/pull/57247) Improve error message when using popuntil with bad predicate (cla: yes, framework, waiting for tree to go green) [57261](https://github.com/flutter/flutter/pull/57261) Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green) [57264](https://github.com/flutter/flutter/pull/57264) Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green) [57270](https://github.com/flutter/flutter/pull/57270) add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [57287](https://github.com/flutter/flutter/pull/57287) remove pending timers list code out of assert message (a: tests, cla: yes, framework) [57291](https://github.com/flutter/flutter/pull/57291) [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework) [57299](https://github.com/flutter/flutter/pull/57299) add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green) [57319](https://github.com/flutter/flutter/pull/57319) Fix Autofill example (cla: yes, framework, waiting for tree to go green) [57324](https://github.com/flutter/flutter/pull/57324) Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green) [57327](https://github.com/flutter/flutter/pull/57327) Value Indicator uses Global position (cla: yes, f: material design, framework) [57332](https://github.com/flutter/flutter/pull/57332) Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green) [57339](https://github.com/flutter/flutter/pull/57339) fix route annoucement for first route and last route (cla: yes, framework, waiting for tree to go green) [57412](https://github.com/flutter/flutter/pull/57412) Fixed a typo. (cla: yes, framework, waiting for tree to go green) [57461](https://github.com/flutter/flutter/pull/57461) Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green) [57487](https://github.com/flutter/flutter/pull/57487) Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green) [57500](https://github.com/flutter/flutter/pull/57500) SnackBarAction.createState() should have return type State<SnackBarAction> (cla: yes, f: material design, framework, waiting for tree to go green) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [57516](https://github.com/flutter/flutter/pull/57516) Update platform_view.dart (cla: yes, framework, waiting for tree to go green) [57519](https://github.com/flutter/flutter/pull/57519) Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green) [57521](https://github.com/flutter/flutter/pull/57521) Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green) [57522](https://github.com/flutter/flutter/pull/57522) Add doc and test for Container's hitTest behavior (cla: yes, framework, waiting for tree to go green) [57526](https://github.com/flutter/flutter/pull/57526) Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green) [57534](https://github.com/flutter/flutter/pull/57534) Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green) [57535](https://github.com/flutter/flutter/pull/57535) Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green) [57574](https://github.com/flutter/flutter/pull/57574) Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green) [57588](https://github.com/flutter/flutter/pull/57588) New license page. (a: internationalization, cla: yes, f: material design, framework) [57605](https://github.com/flutter/flutter/pull/57605) fix navigator observer announcement order (cla: yes, framework, waiting for tree to go green) [57628](https://github.com/flutter/flutter/pull/57628) Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework) [57644](https://github.com/flutter/flutter/pull/57644) Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green) [57670](https://github.com/flutter/flutter/pull/57670) Add code example for CustomScrollView on how to make it grow in two directions along its scroll axis (cla: yes, framework, waiting for tree to go green) [57696](https://github.com/flutter/flutter/pull/57696) Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green) [57733](https://github.com/flutter/flutter/pull/57733) #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green) [57736](https://github.com/flutter/flutter/pull/57736) [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green) [57745](https://github.com/flutter/flutter/pull/57745) Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green) [57751](https://github.com/flutter/flutter/pull/57751) Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [57809](https://github.com/flutter/flutter/pull/57809) Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green) [57821](https://github.com/flutter/flutter/pull/57821) fix a typo in trace events for the image cache (cla: yes, framework, team, waiting for tree to go green) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) [57841](https://github.com/flutter/flutter/pull/57841) Deleted deprecated profile func and profile.dart (cla: yes, framework, waiting for tree to go green) [57868](https://github.com/flutter/flutter/pull/57868) [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green) [57871](https://github.com/flutter/flutter/pull/57871) [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool) [58016](https://github.com/flutter/flutter/pull/58016) Consistent American spelling of 'behavior' (cla: yes, f: material design, framework, waiting for tree to go green) [58024](https://github.com/flutter/flutter/pull/58024) fix cupertino page route dismisses hero transition when swipe to the … (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58037](https://github.com/flutter/flutter/pull/58037) [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58094](https://github.com/flutter/flutter/pull/58094) Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green) [58098](https://github.com/flutter/flutter/pull/58098) Added Documentation for AnimationController.repeat() (cla: yes, framework) [58117](https://github.com/flutter/flutter/pull/58117) Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [58118](https://github.com/flutter/flutter/pull/58118) Add function to set structured error early (cla: yes, framework) [58131](https://github.com/flutter/flutter/pull/58131) [flutter] allow loading either NOTICES or LICENSE (cla: yes, framework, waiting for tree to go green) [58151](https://github.com/flutter/flutter/pull/58151) Error message when size has not been set in RenderBox's performLayout should be well versed (cla: yes, framework, waiting for tree to go green) [58154](https://github.com/flutter/flutter/pull/58154) Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green) [58202](https://github.com/flutter/flutter/pull/58202) Build routes even less (cla: yes, framework, waiting for tree to go green) [58203](https://github.com/flutter/flutter/pull/58203) Various bits of trivial cleanup (cla: yes, framework, waiting for tree to go green) [58204](https://github.com/flutter/flutter/pull/58204) Error message improvements (cla: yes, framework, waiting for tree to go green) [58206](https://github.com/flutter/flutter/pull/58206) Dedupe (and update) the --track-widget-creation documentation (cla: yes, framework, waiting for tree to go green) [58209](https://github.com/flutter/flutter/pull/58209) Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework) [58210](https://github.com/flutter/flutter/pull/58210) [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework) [58213](https://github.com/flutter/flutter/pull/58213) update build doc string to advocate avoiding doing tasks other than b… (cla: yes, d: api docs, framework, waiting for tree to go green) [58258](https://github.com/flutter/flutter/pull/58258) Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58259](https://github.com/flutter/flutter/pull/58259) enable Navigator.of to accept a navigator element and return its stat… (cla: yes, framework, waiting for tree to go green) [58272](https://github.com/flutter/flutter/pull/58272) Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework) [58284](https://github.com/flutter/flutter/pull/58284) Send text error in JSON and print in tools (cla: yes, framework, tool) [58344](https://github.com/flutter/flutter/pull/58344) Revert "Add clipBehavior to widgets with clipRect" (cla: yes, f: material design, framework, team) [58346](https://github.com/flutter/flutter/pull/58346) EditableText.bringIntoView calls showOnScreen (cla: yes, framework, waiting for tree to go green) [58350](https://github.com/flutter/flutter/pull/58350) More information about our error message APIs. (cla: yes, framework) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58430](https://github.com/flutter/flutter/pull/58430) [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory) [58448](https://github.com/flutter/flutter/pull/58448) InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework) [58456](https://github.com/flutter/flutter/pull/58456) Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green) [58482](https://github.com/flutter/flutter/pull/58482) Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green) [58503](https://github.com/flutter/flutter/pull/58503) Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework) [58511](https://github.com/flutter/flutter/pull/58511) Add material page, cupertino page, and transition page classes (cla: yes, framework) [58514](https://github.com/flutter/flutter/pull/58514) add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green) [58530](https://github.com/flutter/flutter/pull/58530) [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green) [58535](https://github.com/flutter/flutter/pull/58535) Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework) [58593](https://github.com/flutter/flutter/pull/58593) Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58620](https://github.com/flutter/flutter/pull/58620) Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) [58621](https://github.com/flutter/flutter/pull/58621) Make it possible to remove nodes from traversal sort. (cla: yes, framework, waiting for tree to go green) [58630](https://github.com/flutter/flutter/pull/58630) Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green) [58635](https://github.com/flutter/flutter/pull/58635) Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58650](https://github.com/flutter/flutter/pull/58650) Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework) [58655](https://github.com/flutter/flutter/pull/58655) debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green) [58686](https://github.com/flutter/flutter/pull/58686) [PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [58708](https://github.com/flutter/flutter/pull/58708) Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [58715](https://github.com/flutter/flutter/pull/58715) Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green) [58723](https://github.com/flutter/flutter/pull/58723) Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green) [58746](https://github.com/flutter/flutter/pull/58746) add missing arguments for all constructors of ListView and GridView (cla: yes, framework, waiting for tree to go green) [58754](https://github.com/flutter/flutter/pull/58754) Update build doc (cla: yes, framework, waiting for tree to go green) [58771](https://github.com/flutter/flutter/pull/58771) [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green) [58780](https://github.com/flutter/flutter/pull/58780) fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green) [58808](https://github.com/flutter/flutter/pull/58808) Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58820](https://github.com/flutter/flutter/pull/58820) Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green) [58823](https://github.com/flutter/flutter/pull/58823) Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework) [58829](https://github.com/flutter/flutter/pull/58829) Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [58831](https://github.com/flutter/flutter/pull/58831) Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [58843](https://github.com/flutter/flutter/pull/58843) Restore some typography tests (cla: yes, f: material design, framework) [58872](https://github.com/flutter/flutter/pull/58872) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [58971](https://github.com/flutter/flutter/pull/58971) Update animation.dart - Staggered animations: TweenSequences example (cla: yes, framework) [58994](https://github.com/flutter/flutter/pull/58994) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59002](https://github.com/flutter/flutter/pull/59002) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [59008](https://github.com/flutter/flutter/pull/59008) Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green) [59010](https://github.com/flutter/flutter/pull/59010) Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green) [59014](https://github.com/flutter/flutter/pull/59014) Handle selection ranges where getBoxesForSelection returns an empty list (cla: yes, framework, waiting for tree to go green) [59015](https://github.com/flutter/flutter/pull/59015) fix overscroll position if there is sliver before center sliver in cu… (cla: yes, f: scrolling, framework, waiting for tree to go green) [59018](https://github.com/flutter/flutter/pull/59018) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59096](https://github.com/flutter/flutter/pull/59096) Fix docs for Focus.onKey event propagation (cla: yes, framework, waiting for tree to go green) [59108](https://github.com/flutter/flutter/pull/59108) fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green) [59111](https://github.com/flutter/flutter/pull/59111) Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green) [59115](https://github.com/flutter/flutter/pull/59115) Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green) [59117](https://github.com/flutter/flutter/pull/59117) Make the InkResponse's focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59128](https://github.com/flutter/flutter/pull/59128) Fix typo in scroll_aware_image_provider.dart (cla: yes, framework, waiting for tree to go green) [59156](https://github.com/flutter/flutter/pull/59156) Add sample code to PositionedTransition (cla: yes, framework) [59162](https://github.com/flutter/flutter/pull/59162) Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green) [59186](https://github.com/flutter/flutter/pull/59186) Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59191](https://github.com/flutter/flutter/pull/59191) [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [59196](https://github.com/flutter/flutter/pull/59196) [Widgets] Add DefaultTextHeightBehavior inherited widget. (cla: yes, framework, waiting for tree to go green) [59219](https://github.com/flutter/flutter/pull/59219) Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59221](https://github.com/flutter/flutter/pull/59221) Revert "Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)" (a: text input, cla: yes, framework, waiting for tree to go green) [59251](https://github.com/flutter/flutter/pull/59251) [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green) [59273](https://github.com/flutter/flutter/pull/59273) Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green) [59279](https://github.com/flutter/flutter/pull/59279) First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59290](https://github.com/flutter/flutter/pull/59290) Reverse the semantics order of modal barrier and modal scope (cla: yes, framework) [59310](https://github.com/flutter/flutter/pull/59310) Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green) [59317](https://github.com/flutter/flutter/pull/59317) Implement Comparable<TimeOfDay> (cla: yes, f: material design, framework, waiting for tree to go green) [59342](https://github.com/flutter/flutter/pull/59342) Add support for horizontal and vertical double-arrow system cursors (cla: yes, framework, waiting for tree to go green) [59347](https://github.com/flutter/flutter/pull/59347) Revert "[Widgets] Add DefaultTextHeightBehavior inherited widget." (cla: yes, framework) [59350](https://github.com/flutter/flutter/pull/59350) Re-land "[Widgets] Add DefaultTextHeightBehavior inherited widget." (cla: yes, framework, waiting for tree to go green) [59358](https://github.com/flutter/flutter/pull/59358) Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green) [59360](https://github.com/flutter/flutter/pull/59360) More useful error messages when you use Stack without a textDirection. (cla: yes, framework, waiting for tree to go green) [59363](https://github.com/flutter/flutter/pull/59363) Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green) [59364](https://github.com/flutter/flutter/pull/59364) Reland non-breaking "Add clipBehavior to widgets with clipRect #55977" (cla: yes, f: material design, framework, team) [59379](https://github.com/flutter/flutter/pull/59379) Handle backspace edgecase in trailing whitespace formatter. (cla: yes, framework, waiting for tree to go green) [59405](https://github.com/flutter/flutter/pull/59405) [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [59436](https://github.com/flutter/flutter/pull/59436) Removed an unused static local key from ScrollAction. (cla: yes, framework, waiting for tree to go green) [59474](https://github.com/flutter/flutter/pull/59474) Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green) [59478](https://github.com/flutter/flutter/pull/59478) InteractiveViewer mouse scale bug (cla: yes, framework, waiting for tree to go green) [59481](https://github.com/flutter/flutter/pull/59481) [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59484](https://github.com/flutter/flutter/pull/59484) Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green) [59500](https://github.com/flutter/flutter/pull/59500) Update recipes location. (cla: yes, framework, team) [59503](https://github.com/flutter/flutter/pull/59503) Revert "Build routes even less" (cla: yes, framework, waiting for tree to go green) [59514](https://github.com/flutter/flutter/pull/59514) Replace collection's SetEquality with flutter's own (cla: yes, f: cupertino, framework, waiting for tree to go green) [59521](https://github.com/flutter/flutter/pull/59521) Remove dependency on package:collection by moving mergeSort into foundation/collections.dart (cla: yes, framework) [59561](https://github.com/flutter/flutter/pull/59561) Revert "Modernize selection menu appearance" (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [59571](https://github.com/flutter/flutter/pull/59571) [flutter_tools] add toggle `b` and service extension to change platform brightness (cla: yes, framework, tool) [59586](https://github.com/flutter/flutter/pull/59586) Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59620](https://github.com/flutter/flutter/pull/59620) Export characters (cla: yes, framework, waiting for tree to go green) [59631](https://github.com/flutter/flutter/pull/59631) ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green) [59641](https://github.com/flutter/flutter/pull/59641) [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59666](https://github.com/flutter/flutter/pull/59666) update _isolates_io.dart for better nnbd migration (cla: yes, framework) [59677](https://github.com/flutter/flutter/pull/59677) Revert "Characters Package" (cla: yes, f: material design, framework) [59711](https://github.com/flutter/flutter/pull/59711) fix the widget span layout when text scale factor != 1 (cla: yes, framework, waiting for tree to go green) [59778](https://github.com/flutter/flutter/pull/59778) Reland Characters Usage (cla: yes, f: material design, framework) [59791](https://github.com/flutter/flutter/pull/59791) Fix doc for DecoratedBox (cla: yes, framework, waiting for tree to go green) [59803](https://github.com/flutter/flutter/pull/59803) Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green) [59807](https://github.com/flutter/flutter/pull/59807) Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green) [59856](https://github.com/flutter/flutter/pull/59856) Make upscaling images opt-in (a: images, cla: yes, framework) [59865](https://github.com/flutter/flutter/pull/59865) Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59877](https://github.com/flutter/flutter/pull/59877) Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework) [59883](https://github.com/flutter/flutter/pull/59883) Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green) [59888](https://github.com/flutter/flutter/pull/59888) Fix the layout calculation in sliver list where the scroll offset cor… (cla: yes, f: scrolling, framework, waiting for tree to go green) [59900](https://github.com/flutter/flutter/pull/59900) Fix issue with stack traces getting mangled (a: tests, cla: yes, framework) [59913](https://github.com/flutter/flutter/pull/59913) [EditableText] Inherit from DefaultTextHeightBehavior (cla: yes, framework) [59937](https://github.com/flutter/flutter/pull/59937) Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green) [59961](https://github.com/flutter/flutter/pull/59961) Support GTK keycodes (cla: yes, framework, team) [59966](https://github.com/flutter/flutter/pull/59966) Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green) [59981](https://github.com/flutter/flutter/pull/59981) Revert "Implement Comparable<TimeOfDay>" (cla: yes, f: material design, framework) [59982](https://github.com/flutter/flutter/pull/59982) [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework) [59986](https://github.com/flutter/flutter/pull/59986) Revert "fix the widget span layout when text scale factor != 1" (cla: yes, framework) [59992](https://github.com/flutter/flutter/pull/59992) Revert "[PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once" (cla: yes, f: material design, framework) [60000](https://github.com/flutter/flutter/pull/60000) Revert "Fix outline button solid path when BorderSize.width is used" (f: material design, framework) [60009](https://github.com/flutter/flutter/pull/60009) RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green) [60021](https://github.com/flutter/flutter/pull/60021) reland "fix the widget span layout when text scale factor != 1" and h… (cla: yes, framework, waiting for tree to go green) [60042](https://github.com/flutter/flutter/pull/60042) Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework) [60059](https://github.com/flutter/flutter/pull/60059) Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green) [60096](https://github.com/flutter/flutter/pull/60096) Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [60129](https://github.com/flutter/flutter/pull/60129) fix ink feature tries to get parent transformations when it is in the… (cla: yes, f: material design, framework, waiting for tree to go green) [60136](https://github.com/flutter/flutter/pull/60136) Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green) [60139](https://github.com/flutter/flutter/pull/60139) Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green) [60141](https://github.com/flutter/flutter/pull/60141) Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework) [60152](https://github.com/flutter/flutter/pull/60152) Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green) [60219](https://github.com/flutter/flutter/pull/60219) Update inaccurate documentation for isUtf16Surrogate method (cla: yes, framework, waiting for tree to go green) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) [60245](https://github.com/flutter/flutter/pull/60245) [PageTransitionsBuilder] Reland Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [60248](https://github.com/flutter/flutter/pull/60248) Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green) [60316](https://github.com/flutter/flutter/pull/60316) Don't access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [60320](https://github.com/flutter/flutter/pull/60320) Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green) [60329](https://github.com/flutter/flutter/pull/60329) [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green) [60367](https://github.com/flutter/flutter/pull/60367) Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green) [60379](https://github.com/flutter/flutter/pull/60379) Do not call Picture.toImage on web during shader warm-up (cla: yes, framework, waiting for tree to go green) [60383](https://github.com/flutter/flutter/pull/60383) [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60394](https://github.com/flutter/flutter/pull/60394) Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green) [60396](https://github.com/flutter/flutter/pull/60396) Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green) [60478](https://github.com/flutter/flutter/pull/60478) Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework) [60481](https://github.com/flutter/flutter/pull/60481) Adding ColorFiltered "Widget of the week" video to docs. (cla: yes, framework, waiting for tree to go green) [60482](https://github.com/flutter/flutter/pull/60482) Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green) [60497](https://github.com/flutter/flutter/pull/60497) Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60523](https://github.com/flutter/flutter/pull/60523) InteractiveViewer scroll direction (cla: yes, framework, waiting for tree to go green) [60530](https://github.com/flutter/flutter/pull/60530) Revert "fix paint order of ink feature (#59108)" (cla: yes, f: material design, framework) [60532](https://github.com/flutter/flutter/pull/60532) InteractiveViewer with a changing screen size (cla: yes, framework, waiting for tree to go green) [60536](https://github.com/flutter/flutter/pull/60536) Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green) [60545](https://github.com/flutter/flutter/pull/60545) Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green) [60549](https://github.com/flutter/flutter/pull/60549) RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green) [60552](https://github.com/flutter/flutter/pull/60552) New license page with fix for zero licenses. (a: internationalization, f: material design, framework) [60563](https://github.com/flutter/flutter/pull/60563) ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green) [60586](https://github.com/flutter/flutter/pull/60586) Issues/58053 - Set default textBaseline to alphabetic in the Table widget (cla: yes, framework, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60621](https://github.com/flutter/flutter/pull/60621) Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green) [60645](https://github.com/flutter/flutter/pull/60645) Revert "Tweaking Material Chip a11y semantics to match buttons (#60141)" (cla: yes, f: material design, framework, waiting for tree to go green) [60660](https://github.com/flutter/flutter/pull/60660) In layers_test create a canvas to start recording on the PictureRecorder (cla: yes, framework, waiting for tree to go green) [60684](https://github.com/flutter/flutter/pull/60684) Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60730](https://github.com/flutter/flutter/pull/60730) Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green) [60734](https://github.com/flutter/flutter/pull/60734) Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework) [60764](https://github.com/flutter/flutter/pull/60764) Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green) [60832](https://github.com/flutter/flutter/pull/60832) Fix typo in popup_menu.dart (cla: yes, f: material design, framework) [60836](https://github.com/flutter/flutter/pull/60836) Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green) [60915](https://github.com/flutter/flutter/pull/60915) [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green) [60916](https://github.com/flutter/flutter/pull/60916) Revert "Fix remaining holes in stack trace demangling" (a: tests, cla: yes, framework) [60925](https://github.com/flutter/flutter/pull/60925) fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) [60930](https://github.com/flutter/flutter/pull/60930) Add `embedderId` to `PointerEvent` (cla: yes, framework) [60934](https://github.com/flutter/flutter/pull/60934) Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60936](https://github.com/flutter/flutter/pull/60936) Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60956](https://github.com/flutter/flutter/pull/60956) Assert valid composing TextRange (cla: yes, framework, waiting for tree to go green) [60991](https://github.com/flutter/flutter/pull/60991) [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green) [60996](https://github.com/flutter/flutter/pull/60996) Reland "Fix remaining holes in stack trace demangling"" (a: tests, cla: yes, framework) [61000](https://github.com/flutter/flutter/pull/61000) Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [61010](https://github.com/flutter/flutter/pull/61010) Revert "Add `embedderId` to `PointerEvent` (#60930)" (cla: yes, engine, framework, team) [61012](https://github.com/flutter/flutter/pull/61012) prevents sliver app bar from changing semantics tree when it is not n… (a: accessibility, f: material design, framework, waiting for tree to go green) [61013](https://github.com/flutter/flutter/pull/61013) Re-land gesture detection for hybrid platform views (engine, framework, team) [61019](https://github.com/flutter/flutter/pull/61019) InteractiveViewer pan axis locking (cla: yes, framework, waiting for tree to go green) [61033](https://github.com/flutter/flutter/pull/61033) Do not cache itemBuilder calls in a GridView (cla: yes, framework, waiting for tree to go green) [61035](https://github.com/flutter/flutter/pull/61035) Fix bug where dispose message requires a map (cla: yes, framework) [61102](https://github.com/flutter/flutter/pull/61102) Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework) [61109](https://github.com/flutter/flutter/pull/61109) Revert "Expose height and width factor in AnimatedAlign " (cla: yes, framework) [61118](https://github.com/flutter/flutter/pull/61118) Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green) #### team - 283 pull request(s) [42940](https://github.com/flutter/flutter/pull/42940) Revise Action API (cla: yes, f: cupertino, f: material design, framework, team) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [52791](https://github.com/flutter/flutter/pull/52791) Read custom app project name from gradle.properties (cla: yes, team, tool) [53096](https://github.com/flutter/flutter/pull/53096) Devicelab tests (Chrome run, Web compile) for New Flutter Gallery (cla: yes, team, waiting for tree to go green) [53358](https://github.com/flutter/flutter/pull/53358) Disable `flutter_driver_screenshot_test_ios`. (cla: yes, team, waiting for tree to go green) [53374](https://github.com/flutter/flutter/pull/53374) [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [53422](https://github.com/flutter/flutter/pull/53422) Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [53600](https://github.com/flutter/flutter/pull/53600) Restructure the Windows app template (cla: yes, team, tool) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [53655](https://github.com/flutter/flutter/pull/53655) Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team) [53809](https://github.com/flutter/flutter/pull/53809) [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool) [53824](https://github.com/flutter/flutter/pull/53824) [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [53868](https://github.com/flutter/flutter/pull/53868) [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool) [53879](https://github.com/flutter/flutter/pull/53879) Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) [53888](https://github.com/flutter/flutter/pull/53888) Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green) [53916](https://github.com/flutter/flutter/pull/53916) Slider rebase work (cla: yes, f: material design, framework, team) [53951](https://github.com/flutter/flutter/pull/53951) Revert "[flutter_tools] update to package vm_service: electric boogaloo" (cla: yes, team, tool) [53952](https://github.com/flutter/flutter/pull/53952) [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team) [53954](https://github.com/flutter/flutter/pull/53954) [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53957](https://github.com/flutter/flutter/pull/53957) [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool) [53963](https://github.com/flutter/flutter/pull/53963) revive the android_views test (cla: yes, team, waiting for tree to go green) [53967](https://github.com/flutter/flutter/pull/53967) Temporarily mark web benchmarks as flaky (cla: yes, team) [53969](https://github.com/flutter/flutter/pull/53969) Use "measured_frame" instead of "CrRendererMain" to detect process ID (cla: yes, team) [53980](https://github.com/flutter/flutter/pull/53980) Test creation of Android AlertDialogs with a platform view context (cla: yes, team, waiting for tree to go green) [54015](https://github.com/flutter/flutter/pull/54015) Update roll_dev to work with new version numbers (cla: yes, team) [54023](https://github.com/flutter/flutter/pull/54023) disable MotionEvents test (cla: yes, team) [54114](https://github.com/flutter/flutter/pull/54114) Revert "[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo" (cla: yes, team, tool) [54122](https://github.com/flutter/flutter/pull/54122) disable the "gpu" tracing category (cla: yes, team) [54125](https://github.com/flutter/flutter/pull/54125) remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team) [54132](https://github.com/flutter/flutter/pull/54132) [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool) [54144](https://github.com/flutter/flutter/pull/54144) drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54150](https://github.com/flutter/flutter/pull/54150) Don't checkout master in roll_dev (cla: yes, team) [54152](https://github.com/flutter/flutter/pull/54152) [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green) [54155](https://github.com/flutter/flutter/pull/54155) [cleanup] Remove unused script (cla: yes, team) [54163](https://github.com/flutter/flutter/pull/54163) Enable the android_views AlertDialog test (cla: yes, team) [54176](https://github.com/flutter/flutter/pull/54176) Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool) [54181](https://github.com/flutter/flutter/pull/54181) Roll pinned xml and petitparser versions (cla: yes, team, waiting for tree to go green) [54185](https://github.com/flutter/flutter/pull/54185) [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green) [54206](https://github.com/flutter/flutter/pull/54206) Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54212](https://github.com/flutter/flutter/pull/54212) Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green) [54214](https://github.com/flutter/flutter/pull/54214) re-enable `android_view_test` (cla: yes, team, waiting for tree to go green) [54219](https://github.com/flutter/flutter/pull/54219) Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green) [54227](https://github.com/flutter/flutter/pull/54227) [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green) [54236](https://github.com/flutter/flutter/pull/54236) Disable tracing for non-frame based Web benchmarks (cla: yes, team, waiting for tree to go green) [54247](https://github.com/flutter/flutter/pull/54247) [versions] update versions (cla: yes, team) [54312](https://github.com/flutter/flutter/pull/54312) fix and re-land "re-enable `android_view_test` (#54214)" (cla: yes, team, waiting for tree to go green) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54334](https://github.com/flutter/flutter/pull/54334) [versions] update all flutter versions (cla: yes, team, waiting for tree to go green) [54387](https://github.com/flutter/flutter/pull/54387) Revert "fix and re-land "re-enable `android_view_test` (#54214)"" (cla: yes, team) [54396](https://github.com/flutter/flutter/pull/54396) [web] Don't collect trace info in the color grid benchmark (cla: yes, platform-web, team) [54401](https://github.com/flutter/flutter/pull/54401) Cleanup in gen_l10n files (a: internationalization, cla: yes, team) [54403](https://github.com/flutter/flutter/pull/54403) Reland re-enable `android_view_test` #54214 (cla: yes, team, waiting for tree to go green) [54407](https://github.com/flutter/flutter/pull/54407) Don't import plugins that don't support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green) [54471](https://github.com/flutter/flutter/pull/54471) fix visual density prefer_const_constructors lint (cla: yes, team) [54478](https://github.com/flutter/flutter/pull/54478) Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool) [54480](https://github.com/flutter/flutter/pull/54480) Revert "[flutter_driver] Add SceneDisplayLag stats to timeline summar… (a: tests, cla: yes, framework, team) [54490](https://github.com/flutter/flutter/pull/54490) [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green) [54494](https://github.com/flutter/flutter/pull/54494) Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green) [54497](https://github.com/flutter/flutter/pull/54497) [devicelab] Do not wait for connections after process has exited (cla: yes, team, waiting for tree to go green) [54505](https://github.com/flutter/flutter/pull/54505) mark web benchmarks as not flaky (cla: yes, team) [54522](https://github.com/flutter/flutter/pull/54522) Reland "Add API to services package that overrides HTTP ban (#54243)" (cla: yes, framework, team, waiting for tree to go green) [54617](https://github.com/flutter/flutter/pull/54617) [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool) [54618](https://github.com/flutter/flutter/pull/54618) Revert "[devicelab] Do not wait for connections after process has exited" (cla: yes, team) [54676](https://github.com/flutter/flutter/pull/54676) print intermediate and raw A/B results when not silent (cla: yes, team) [54678](https://github.com/flutter/flutter/pull/54678) Make Web shard count configurable via WEB_SHARD_COUNT (cla: yes, team, waiting for tree to go green) [54691](https://github.com/flutter/flutter/pull/54691) Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool) [54697](https://github.com/flutter/flutter/pull/54697) fix APK location for devicelab (cla: yes, team) [54703](https://github.com/flutter/flutter/pull/54703) fix run release test APK location (cla: yes, team) [54783](https://github.com/flutter/flutter/pull/54783) [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green) [54787](https://github.com/flutter/flutter/pull/54787) force upgraded package dependencies (cla: yes, team) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [54883](https://github.com/flutter/flutter/pull/54883) Remove outliers in Web benchmarks to reduce noise; add visualization (cla: yes, team) [54887](https://github.com/flutter/flutter/pull/54887) Specify the devicelab task simulator runtime to support <Xcode 11.4 (cla: yes, team) [54891](https://github.com/flutter/flutter/pull/54891) Mark ios_app_with_watch_companion as flaky (cla: yes, team, team: infra) [54893](https://github.com/flutter/flutter/pull/54893) Fix the stage of ios_app_with_watch_companion (cla: yes, team) [54894](https://github.com/flutter/flutter/pull/54894) Update dartdoc to 0.30.4. (cla: yes, team, waiting for tree to go green) [54899](https://github.com/flutter/flutter/pull/54899) Pass in runtime to ios_app_with_watch_companion simctl create (cla: yes, team, team: infra) [54903](https://github.com/flutter/flutter/pull/54903) benchmark animation performance of Opacity widget (cla: yes, team) [54908](https://github.com/flutter/flutter/pull/54908) add benchmark for picture recording (cla: yes, team) [54909](https://github.com/flutter/flutter/pull/54909) [flutter_tools] fix multiple defines in flutter tooling, web (cla: yes, team, tool) [54912](https://github.com/flutter/flutter/pull/54912) Move doctor into globals (cla: yes, team, tool) [54916](https://github.com/flutter/flutter/pull/54916) Convert expression evaluation exceptions to errors (cla: yes, team, tool, waiting for tree to go green) [54924](https://github.com/flutter/flutter/pull/54924) CrashReportSender dependency injection (cla: yes, team, tool) [54952](https://github.com/flutter/flutter/pull/54952) Roll pinned package versions (cla: yes, team, waiting for tree to go green) [54967](https://github.com/flutter/flutter/pull/54967) Revert "[flutter_tools] fix multiple defines in flutter tooling, web" (cla: yes, team, tool) [54973](https://github.com/flutter/flutter/pull/54973) [flutter_tools] Reland: fix multiple dart defines (cla: yes, team, tool) [54991](https://github.com/flutter/flutter/pull/54991) Mark ios_app_with_watch_companion as not flaky (a: tests, cla: yes, team) [54994](https://github.com/flutter/flutter/pull/54994) flutter_gallery__memory_nav and flutter_gallery__back_button_memory are flaky (cla: yes, team) [55002](https://github.com/flutter/flutter/pull/55002) Move GitHubTemplateCreator into reporting library (cla: yes, team, tool) [55057](https://github.com/flutter/flutter/pull/55057) validate engine hash (cla: yes, team) [55068](https://github.com/flutter/flutter/pull/55068) Test touch for Android windows added by platform views (cla: yes, team) [55126](https://github.com/flutter/flutter/pull/55126) web benchmarks: handle no outliers case (cla: yes, team, waiting for tree to go green, work in progress; do not review) [55130](https://github.com/flutter/flutter/pull/55130) Enable android_views window touch test (cla: yes, team) [55152](https://github.com/flutter/flutter/pull/55152) Support tags when running tests from command line (cla: yes, team, tool) [55181](https://github.com/flutter/flutter/pull/55181) Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [55201](https://github.com/flutter/flutter/pull/55201) Migrating old Gallery to new Slider (cla: yes, f: material design, team) [55220](https://github.com/flutter/flutter/pull/55220) Revert "validate engine hash" (cla: yes, team) [55223](https://github.com/flutter/flutter/pull/55223) Test engine version hash, but skip for Dart HHH bot (cla: yes, team, waiting for tree to go green) [55225](https://github.com/flutter/flutter/pull/55225) Remove the unused getFlutter function (cla: yes, team, waiting for tree to go green) [55230](https://github.com/flutter/flutter/pull/55230) Make Action.enabled be isEnabled(Intent intent) instead. (cla: yes, framework, team) [55253](https://github.com/flutter/flutter/pull/55253) Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool) [55331](https://github.com/flutter/flutter/pull/55331) extract engine sub-metrics; change reported metrics (cla: yes, team) [55335](https://github.com/flutter/flutter/pull/55335) Update dartdoc version to 0.31.0 (cla: yes, team, waiting for tree to go green) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55348](https://github.com/flutter/flutter/pull/55348) [flutter_tools] unpin package config and update (cla: yes, team, tool) [55401](https://github.com/flutter/flutter/pull/55401) Optimize fuchsia test script. (CQ+1, cla: yes, team, waiting for tree to go green) [55413](https://github.com/flutter/flutter/pull/55413) Revert "[flutter_tools] default tree-shake-icons to enabled and improve performance" (cla: yes, team, tool) [55414](https://github.com/flutter/flutter/pull/55414) LayoutBuilder: skip calling builder when constraints are the same (cla: yes, framework, team) [55433](https://github.com/flutter/flutter/pull/55433) Roll packages, drop custom timeline parsing for tracing tests (cla: yes, team, waiting for tree to go green) [55485](https://github.com/flutter/flutter/pull/55485) Use correct path for `flutter` in `flutter_gallery_v2_chrome_run_test.dart` (cla: yes, team, waiting for tree to go green) [55486](https://github.com/flutter/flutter/pull/55486) Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green) [55564](https://github.com/flutter/flutter/pull/55564) [flutter_tools] support --enable-experiment in flutter test (cla: yes, team, tool) [55609](https://github.com/flutter/flutter/pull/55609) Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team) [55782](https://github.com/flutter/flutter/pull/55782) Removing Deprecated flag for Gallery (cla: yes, f: material design, team, waiting for tree to go green) [55789](https://github.com/flutter/flutter/pull/55789) ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green) [55792](https://github.com/flutter/flutter/pull/55792) [gen_l10n] Output directory option (a: internationalization, cla: yes, team) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [55799](https://github.com/flutter/flutter/pull/55799) Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool) [55812](https://github.com/flutter/flutter/pull/55812) restore quit timeout, adjust some integration test behaviors (cla: yes, team, tool) [55871](https://github.com/flutter/flutter/pull/55871) Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool) [55876](https://github.com/flutter/flutter/pull/55876) Mark android attach test flaky (cla: yes, team) [55877](https://github.com/flutter/flutter/pull/55877) Mark flutter_gallery_v2_chrome_run_test and flutter_gallery_v2_web_compile_test not flaky (cla: yes, team) [55881](https://github.com/flutter/flutter/pull/55881) Make flutter_attach_test_android test verbose (cla: yes, team) [55909](https://github.com/flutter/flutter/pull/55909) [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool) [55935](https://github.com/flutter/flutter/pull/55935) Read correct file for android view benchmark (cla: yes, team) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [56329](https://github.com/flutter/flutter/pull/56329) BuildInfo tests without context (cla: yes, team) [56330](https://github.com/flutter/flutter/pull/56330) Use androidSdk globals variable everywhere (cla: yes, team, tool) [56331](https://github.com/flutter/flutter/pull/56331) Inject logger and fs into printHowToConsumeAar, test without context (cla: yes, team, tool) [56335](https://github.com/flutter/flutter/pull/56335) Gradle artifacts and tasks tests without context (cla: yes, team, tool) [56409](https://github.com/flutter/flutter/pull/56409) InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green) [56445](https://github.com/flutter/flutter/pull/56445) Revert "Add DevTools memory test" (cla: yes, team) [56502](https://github.com/flutter/flutter/pull/56502) Swap xcode_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool, waiting for tree to go green) [56505](https://github.com/flutter/flutter/pull/56505) Swap xcodeproj_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool) [56575](https://github.com/flutter/flutter/pull/56575) Roll new gallery version in the perf test (cla: yes, severe: performance, team, waiting for tree to go green) [56594](https://github.com/flutter/flutter/pull/56594) Shard firebase_test_lab_tests (cla: yes, team) [56596](https://github.com/flutter/flutter/pull/56596) add web benchmark that measures efficiency of clipped out pictures (cla: yes, team) [56605](https://github.com/flutter/flutter/pull/56605) Remove direct uses of LocalPlatform (cla: yes, team, tool) [56620](https://github.com/flutter/flutter/pull/56620) Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green) [56623](https://github.com/flutter/flutter/pull/56623) [devicelab] fix web twc task missing display (cla: yes, team) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56695](https://github.com/flutter/flutter/pull/56695) [devicelab] mark web_enable_twc as non-flaky (cla: yes, team, waiting for tree to go green) [56700](https://github.com/flutter/flutter/pull/56700) Mark new Gallery test as non-flaky (cla: yes, team) [56721](https://github.com/flutter/flutter/pull/56721) fix `roll_dev.dart` to query remote ref, rather than local (cla: yes, team, waiting for tree to go green) [56727](https://github.com/flutter/flutter/pull/56727) Update README.md (cla: yes, team, waiting for tree to go green) [56735](https://github.com/flutter/flutter/pull/56735) Shard Cirrus build_tests (cla: yes, team) [56786](https://github.com/flutter/flutter/pull/56786) [flutter_tools] cache-bust in service worker (cla: yes, team, tool, waiting for tree to go green) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56958](https://github.com/flutter/flutter/pull/56958) Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green) [56961](https://github.com/flutter/flutter/pull/56961) Remove dead definesCustomBuildConfigurations (cla: yes, team, tool, waiting for tree to go green) [57016](https://github.com/flutter/flutter/pull/57016) [web] Add path construction benchmark (cla: yes, team) [57039](https://github.com/flutter/flutter/pull/57039) Allow Recorder override shouldContinue (cla: yes, team, waiting for tree to go green) [57052](https://github.com/flutter/flutter/pull/57052) Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool) [57053](https://github.com/flutter/flutter/pull/57053) Updated gen_missing_localizations to copy the english strings instead of using 'TBD'. (cla: yes, f: material design, framework, team, waiting for tree to go green) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [57075](https://github.com/flutter/flutter/pull/57075) [flutter_tools] re-enable non-nullable test (cla: yes, team, tool, waiting for tree to go green) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57152](https://github.com/flutter/flutter/pull/57152) Update snippets README.md to include more detail (cla: yes, team) [57231](https://github.com/flutter/flutter/pull/57231) Mark gallery tests as flaky (cla: yes, team) [57235](https://github.com/flutter/flutter/pull/57235) [null-safety] disable tests until framework has migrated (cla: yes, team, waiting for tree to go green) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [57321](https://github.com/flutter/flutter/pull/57321) Update packages (cla: yes, team, tool, waiting for tree to go green) [57328](https://github.com/flutter/flutter/pull/57328) Update flutter_gallery_assets to ^0.2.0 (cla: yes, team, tool) [57340](https://github.com/flutter/flutter/pull/57340) Reland "Add DevTools memory test (#55486)" (cla: yes, team, waiting for tree to go green) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [57576](https://github.com/flutter/flutter/pull/57576) Add Web Benchmarks for Flutter Gallery (Flutter Side) — 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green) [57621](https://github.com/flutter/flutter/pull/57621) Remove MaterialControls from examples/flutter_view (cla: yes, d: examples, team) [57624](https://github.com/flutter/flutter/pull/57624) Remove unused integration test iOS directory (cla: yes, team) [57704](https://github.com/flutter/flutter/pull/57704) Use pub inside the Flutter directory (cla: yes, team, waiting for tree to go green) [57821](https://github.com/flutter/flutter/pull/57821) fix a typo in trace events for the image cache (cla: yes, framework, team, waiting for tree to go green) [57871](https://github.com/flutter/flutter/pull/57871) [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool) [58018](https://github.com/flutter/flutter/pull/58018) Prevent building non-android plugins in build aar (cla: yes, team, tool, waiting for tree to go green) [58027](https://github.com/flutter/flutter/pull/58027) Link to migration guide template from pull request template (cla: yes, team, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58104](https://github.com/flutter/flutter/pull/58104) Run `flutter update-packages --force-upgrade`. (cla: yes, team) [58112](https://github.com/flutter/flutter/pull/58112) Mark non-flaky test as such (cla: yes, team) [58121](https://github.com/flutter/flutter/pull/58121) Update stocks example to use l10n.yaml workflow (cla: yes, team, waiting for tree to go green) [58135](https://github.com/flutter/flutter/pull/58135) [release] remove .dart_tool directory from uploaded zip (cla: yes, team, waiting for tree to go green) [58140](https://github.com/flutter/flutter/pull/58140) Add a backward variant of BenchCardInfiniteScroll (cla: yes, team) [58175](https://github.com/flutter/flutter/pull/58175) [devicelab] less sensitivity to whitespace in flutter_performance_test (cla: yes, team) [58277](https://github.com/flutter/flutter/pull/58277) Enabling the ImageFiltered(ImageFilter.matrix) page of macrobenchmark (cla: yes, team, waiting for tree to go green) [58328](https://github.com/flutter/flutter/pull/58328) [flutter_tools] deprecate flutter generate and codegen (cla: yes, team, tool, waiting for tree to go green) [58344](https://github.com/flutter/flutter/pull/58344) Revert "Add clipBehavior to widgets with clipRect" (cla: yes, f: material design, framework, team) [58444](https://github.com/flutter/flutter/pull/58444) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green) [58458](https://github.com/flutter/flutter/pull/58458) Rename integration test ios_app_with_watch_companion -> ios_app_with_extensions (cla: yes, team) [58499](https://github.com/flutter/flutter/pull/58499) [devicelab] mark ios transition_perf as non-flaky (cla: yes, team, waiting for tree to go green) [58504](https://github.com/flutter/flutter/pull/58504) Revert "Remove outdated disable_input_output_paths from example project Podfiles" (cla: yes, d: examples, team) [58513](https://github.com/flutter/flutter/pull/58513) benchmark updating many child layers (cla: yes, team) [58522](https://github.com/flutter/flutter/pull/58522) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green) [58524](https://github.com/flutter/flutter/pull/58524) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green) [58538](https://github.com/flutter/flutter/pull/58538) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58541](https://github.com/flutter/flutter/pull/58541) Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green) [58544](https://github.com/flutter/flutter/pull/58544) Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green) [58549](https://github.com/flutter/flutter/pull/58549) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58617](https://github.com/flutter/flutter/pull/58617) Remove already covered devicelab test: tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team) [58620](https://github.com/flutter/flutter/pull/58620) Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) [58622](https://github.com/flutter/flutter/pull/58622) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58635](https://github.com/flutter/flutter/pull/58635) Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green) [58644](https://github.com/flutter/flutter/pull/58644) Add FakeAsync to delay tests (cla: yes, team, tool) [58645](https://github.com/flutter/flutter/pull/58645) Move create project build tests to permeable command shard (cla: yes, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58648](https://github.com/flutter/flutter/pull/58648) Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green) [58649](https://github.com/flutter/flutter/pull/58649) Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green) [58656](https://github.com/flutter/flutter/pull/58656) Add the ability to ignore lines depending on comments (cla: yes, team, tool) [58701](https://github.com/flutter/flutter/pull/58701) Increase delay to verify cause of flakiness (cla: yes, team, waiting for tree to go green) [58747](https://github.com/flutter/flutter/pull/58747) Add Android device build/OS/API Level information to logs. (cla: yes, team) [58783](https://github.com/flutter/flutter/pull/58783) fix typo in macrobenchmarks/lib/main (cla: yes, team) [58799](https://github.com/flutter/flutter/pull/58799) Revert "Increase delay to verify cause of flakiness" (cla: yes, team, waiting for tree to go green) [58838](https://github.com/flutter/flutter/pull/58838) Turn off flaky indicator for flutter_gallery__back_button_memory and flutter_gallery__memory_nav (cla: yes, team) [58986](https://github.com/flutter/flutter/pull/58986) Line break for devicelab/bin/run.dart help info (cla: yes, team) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [59013](https://github.com/flutter/flutter/pull/59013) Make non-flaky tests as such (cla: yes, team, waiting for tree to go green) [59025](https://github.com/flutter/flutter/pull/59025) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [59044](https://github.com/flutter/flutter/pull/59044) Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59184](https://github.com/flutter/flutter/pull/59184) [flutter_tools] remove globals from compilers (cla: yes, team, tool) [59209](https://github.com/flutter/flutter/pull/59209) Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59215](https://github.com/flutter/flutter/pull/59215) [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green) [59257](https://github.com/flutter/flutter/pull/59257) fix tree (cla: yes, team) [59267](https://github.com/flutter/flutter/pull/59267) Characters package (cla: yes, team, waiting for tree to go green) [59276](https://github.com/flutter/flutter/pull/59276) Add --device-id option for devicelab/bin/run.dart (cla: yes, team) [59280](https://github.com/flutter/flutter/pull/59280) test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green) [59283](https://github.com/flutter/flutter/pull/59283) [versions] Update all the versions (cla: yes, team, tool) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59291](https://github.com/flutter/flutter/pull/59291) [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool) [59364](https://github.com/flutter/flutter/pull/59364) Reland non-breaking "Add clipBehavior to widgets with clipRect #55977" (cla: yes, f: material design, framework, team) [59365](https://github.com/flutter/flutter/pull/59365) Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green) [59484](https://github.com/flutter/flutter/pull/59484) Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green) [59500](https://github.com/flutter/flutter/pull/59500) Update recipes location. (cla: yes, framework, team) [59508](https://github.com/flutter/flutter/pull/59508) Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59539](https://github.com/flutter/flutter/pull/59539) [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59784](https://github.com/flutter/flutter/pull/59784) [devicelab] fix concurrent hot reload test: stderr != failure (cla: yes, team) [59803](https://github.com/flutter/flutter/pull/59803) Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green) [59832](https://github.com/flutter/flutter/pull/59832) [versions] update all versions (cla: yes, team, tool, waiting for tree to go green) [59867](https://github.com/flutter/flutter/pull/59867) Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59896](https://github.com/flutter/flutter/pull/59896) gitignore `.last_build_id` file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green) [59907](https://github.com/flutter/flutter/pull/59907) port devicelab from idevice_id -> xcdevices (cla: yes, team, tool) [59932](https://github.com/flutter/flutter/pull/59932) Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [59961](https://github.com/flutter/flutter/pull/59961) Support GTK keycodes (cla: yes, framework, team) [60015](https://github.com/flutter/flutter/pull/60015) Fix the paths in keyboard map templates (cla: yes, team) [60041](https://github.com/flutter/flutter/pull/60041) Use assemble build system directly for build ios-framework (cla: yes, team, tool) [60045](https://github.com/flutter/flutter/pull/60045) Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team) [60127](https://github.com/flutter/flutter/pull/60127) [versions] update all versions and fix tool tests (cla: yes, team, tool) [60185](https://github.com/flutter/flutter/pull/60185) [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool) [60228](https://github.com/flutter/flutter/pull/60228) Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool) [60320](https://github.com/flutter/flutter/pull/60320) Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green) [60336](https://github.com/flutter/flutter/pull/60336) Heavy Widget construction and destruction performance test (a: tests, cla: yes, team) [60407](https://github.com/flutter/flutter/pull/60407) `benchmarks/macrobenchmarks` platforme file update (cla: yes, team) [60412](https://github.com/flutter/flutter/pull/60412) Simplify the animation control for macrobenchmarks test case (cla: yes, team) [60415](https://github.com/flutter/flutter/pull/60415) restore imagefiltered_transform_animation_perf__timeline_summary benchmark (cla: yes, team) [60490](https://github.com/flutter/flutter/pull/60490) Experiment with tester on the flutter_tools general shard (cla: yes, team) [60504](https://github.com/flutter/flutter/pull/60504) Update new gallery HEAD commit (cla: yes, team) [60507](https://github.com/flutter/flutter/pull/60507) Fix commit hash gallery (cla: yes, team) [60553](https://github.com/flutter/flutter/pull/60553) Mark non-flaky test as such (cla: yes, team, waiting for tree to go green) [60554](https://github.com/flutter/flutter/pull/60554) Web macrobenchmark: bench_mouse_region_grid_hover now tests hitTestDuration (cla: yes, team, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60638](https://github.com/flutter/flutter/pull/60638) fix pubspec dependencies (cla: yes, team) [60652](https://github.com/flutter/flutter/pull/60652) Upgrade packages (team) [60668](https://github.com/flutter/flutter/pull/60668) Roll tester version (cla: yes, team) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60723](https://github.com/flutter/flutter/pull/60723) add a timeout to dashing (cla: yes, team) [60774](https://github.com/flutter/flutter/pull/60774) await TimelineSummary.write***ToFile (a: tests, cla: yes, team) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) [60934](https://github.com/flutter/flutter/pull/60934) Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60936](https://github.com/flutter/flutter/pull/60936) Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [61010](https://github.com/flutter/flutter/pull/61010) Revert "Add `embedderId` to `PointerEvent` (#60930)" (cla: yes, engine, framework, team) [61013](https://github.com/flutter/flutter/pull/61013) Re-land gesture detection for hybrid platform views (engine, framework, team) [61025](https://github.com/flutter/flutter/pull/61025) benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green) [61034](https://github.com/flutter/flutter/pull/61034) Roll packages (cla: yes, team, tool) [61062](https://github.com/flutter/flutter/pull/61062) Mark new test as not flaky (cla: yes, team) [61064](https://github.com/flutter/flutter/pull/61064) Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green) [61128](https://github.com/flutter/flutter/pull/61128) Update tester to latest version (team) #### f: material design - 204 pull request(s) [42940](https://github.com/flutter/flutter/pull/42940) Revise Action API (cla: yes, f: cupertino, f: material design, framework, team) [50412](https://github.com/flutter/flutter/pull/50412) Make CircularProgressIndicator's animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [50673](https://github.com/flutter/flutter/pull/50673) Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [50915](https://github.com/flutter/flutter/pull/50915) Implement barrierDismissible for `showCupertinoDialog` (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [51465](https://github.com/flutter/flutter/pull/51465) Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green) [51581](https://github.com/flutter/flutter/pull/51581) Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green) [52126](https://github.com/flutter/flutter/pull/52126) Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [53655](https://github.com/flutter/flutter/pull/53655) Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) [53888](https://github.com/flutter/flutter/pull/53888) Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green) [53916](https://github.com/flutter/flutter/pull/53916) Slider rebase work (cla: yes, f: material design, framework, team) [53945](https://github.com/flutter/flutter/pull/53945) [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green) [54110](https://github.com/flutter/flutter/pull/54110) Added 'barrierColor' and 'useSafeArea' parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green) [54119](https://github.com/flutter/flutter/pull/54119) Reland "iOS UITextInput autocorrection prompt (#45354)" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54128](https://github.com/flutter/flutter/pull/54128) fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54171](https://github.com/flutter/flutter/pull/54171) System mouse cursors (a: tests, cla: yes, f: material design, framework) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54394](https://github.com/flutter/flutter/pull/54394) replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [54481](https://github.com/flutter/flutter/pull/54481) Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework) [54640](https://github.com/flutter/flutter/pull/54640) Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green) [54674](https://github.com/flutter/flutter/pull/54674) Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green) [54706](https://github.com/flutter/flutter/pull/54706) Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green) [54714](https://github.com/flutter/flutter/pull/54714) [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [54902](https://github.com/flutter/flutter/pull/54902) Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54919](https://github.com/flutter/flutter/pull/54919) Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework) [54978](https://github.com/flutter/flutter/pull/54978) Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green) [54985](https://github.com/flutter/flutter/pull/54985) Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green) [55064](https://github.com/flutter/flutter/pull/55064) Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework) [55201](https://github.com/flutter/flutter/pull/55201) Migrating old Gallery to new Slider (cla: yes, f: material design, team) [55221](https://github.com/flutter/flutter/pull/55221) [ExpansionTile] adds padding property (cla: yes, f: material design, framework) [55260](https://github.com/flutter/flutter/pull/55260) Fine tune the Y offset of OutlineInputBorder's floating label (cla: yes, f: material design, framework, waiting for tree to go green) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [55415](https://github.com/flutter/flutter/pull/55415) Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55416](https://github.com/flutter/flutter/pull/55416) Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green) [55482](https://github.com/flutter/flutter/pull/55482) Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green) [55484](https://github.com/flutter/flutter/pull/55484) Revert "Fix FlutterError.onError in debug mode (#53843)" (a: tests, cla: yes, f: material design, framework) [55599](https://github.com/flutter/flutter/pull/55599) Default to use V2 Slider (cla: yes, f: material design, framework) [55636](https://github.com/flutter/flutter/pull/55636) Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55651](https://github.com/flutter/flutter/pull/55651) Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green) [55761](https://github.com/flutter/flutter/pull/55761) Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green) [55775](https://github.com/flutter/flutter/pull/55775) TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [55782](https://github.com/flutter/flutter/pull/55782) Removing Deprecated flag for Gallery (cla: yes, f: material design, team, waiting for tree to go green) [55789](https://github.com/flutter/flutter/pull/55789) ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [55832](https://github.com/flutter/flutter/pull/55832) Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green) [55857](https://github.com/flutter/flutter/pull/55857) Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green) [55902](https://github.com/flutter/flutter/pull/55902) Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green) [55911](https://github.com/flutter/flutter/pull/55911) Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green) [55939](https://github.com/flutter/flutter/pull/55939) Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [56084](https://github.com/flutter/flutter/pull/56084) Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [56090](https://github.com/flutter/flutter/pull/56090) Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [56091](https://github.com/flutter/flutter/pull/56091) Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [56190](https://github.com/flutter/flutter/pull/56190) [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green) [56409](https://github.com/flutter/flutter/pull/56409) InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green) [56494](https://github.com/flutter/flutter/pull/56494) Wire up autofocus for OutlineButton (cla: yes, f: material design, framework) [56611](https://github.com/flutter/flutter/pull/56611) Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green) [56614](https://github.com/flutter/flutter/pull/56614) Revert "Paste shows only when content on clipboard (#54902)" (cla: yes, f: cupertino, f: material design, framework) [56641](https://github.com/flutter/flutter/pull/56641) Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [56645](https://github.com/flutter/flutter/pull/56645) Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56794](https://github.com/flutter/flutter/pull/56794) [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56895](https://github.com/flutter/flutter/pull/56895) [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56956](https://github.com/flutter/flutter/pull/56956) ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green) [57033](https://github.com/flutter/flutter/pull/57033) Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) [57047](https://github.com/flutter/flutter/pull/57047) Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green) [57053](https://github.com/flutter/flutter/pull/57053) Updated gen_missing_localizations to copy the english strings instead of using 'TBD'. (cla: yes, f: material design, framework, team, waiting for tree to go green) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57172](https://github.com/flutter/flutter/pull/57172) Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green) [57189](https://github.com/flutter/flutter/pull/57189) Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green) [57195](https://github.com/flutter/flutter/pull/57195) Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [57244](https://github.com/flutter/flutter/pull/57244) Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework) [57261](https://github.com/flutter/flutter/pull/57261) Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [57291](https://github.com/flutter/flutter/pull/57291) [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework) [57299](https://github.com/flutter/flutter/pull/57299) add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green) [57324](https://github.com/flutter/flutter/pull/57324) Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green) [57327](https://github.com/flutter/flutter/pull/57327) Value Indicator uses Global position (cla: yes, f: material design, framework) [57332](https://github.com/flutter/flutter/pull/57332) Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green) [57500](https://github.com/flutter/flutter/pull/57500) SnackBarAction.createState() should have return type State<SnackBarAction> (cla: yes, f: material design, framework, waiting for tree to go green) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [57521](https://github.com/flutter/flutter/pull/57521) Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green) [57526](https://github.com/flutter/flutter/pull/57526) Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green) [57535](https://github.com/flutter/flutter/pull/57535) Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green) [57574](https://github.com/flutter/flutter/pull/57574) Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green) [57576](https://github.com/flutter/flutter/pull/57576) Add Web Benchmarks for Flutter Gallery (Flutter Side) — 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green) [57588](https://github.com/flutter/flutter/pull/57588) New license page. (a: internationalization, cla: yes, f: material design, framework) [57628](https://github.com/flutter/flutter/pull/57628) Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework) [57644](https://github.com/flutter/flutter/pull/57644) Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green) [57733](https://github.com/flutter/flutter/pull/57733) #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green) [57736](https://github.com/flutter/flutter/pull/57736) [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green) [57745](https://github.com/flutter/flutter/pull/57745) Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green) [57751](https://github.com/flutter/flutter/pull/57751) Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [57809](https://github.com/flutter/flutter/pull/57809) Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green) [57868](https://github.com/flutter/flutter/pull/57868) [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green) [58016](https://github.com/flutter/flutter/pull/58016) Consistent American spelling of 'behavior' (cla: yes, f: material design, framework, waiting for tree to go green) [58024](https://github.com/flutter/flutter/pull/58024) fix cupertino page route dismisses hero transition when swipe to the … (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58037](https://github.com/flutter/flutter/pull/58037) [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58094](https://github.com/flutter/flutter/pull/58094) Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green) [58117](https://github.com/flutter/flutter/pull/58117) Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [58154](https://github.com/flutter/flutter/pull/58154) Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green) [58209](https://github.com/flutter/flutter/pull/58209) Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework) [58258](https://github.com/flutter/flutter/pull/58258) Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58344](https://github.com/flutter/flutter/pull/58344) Revert "Add clipBehavior to widgets with clipRect" (cla: yes, f: material design, framework, team) [58448](https://github.com/flutter/flutter/pull/58448) InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework) [58530](https://github.com/flutter/flutter/pull/58530) [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green) [58535](https://github.com/flutter/flutter/pull/58535) Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework) [58593](https://github.com/flutter/flutter/pull/58593) Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58630](https://github.com/flutter/flutter/pull/58630) Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58650](https://github.com/flutter/flutter/pull/58650) Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework) [58686](https://github.com/flutter/flutter/pull/58686) [PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [58708](https://github.com/flutter/flutter/pull/58708) Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [58715](https://github.com/flutter/flutter/pull/58715) Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green) [58780](https://github.com/flutter/flutter/pull/58780) fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green) [58808](https://github.com/flutter/flutter/pull/58808) Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58829](https://github.com/flutter/flutter/pull/58829) Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [58831](https://github.com/flutter/flutter/pull/58831) Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [58843](https://github.com/flutter/flutter/pull/58843) Restore some typography tests (cla: yes, f: material design, framework) [59008](https://github.com/flutter/flutter/pull/59008) Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green) [59010](https://github.com/flutter/flutter/pull/59010) Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green) [59108](https://github.com/flutter/flutter/pull/59108) fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green) [59111](https://github.com/flutter/flutter/pull/59111) Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green) [59115](https://github.com/flutter/flutter/pull/59115) Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green) [59117](https://github.com/flutter/flutter/pull/59117) Make the InkResponse's focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59160](https://github.com/flutter/flutter/pull/59160) Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design) [59162](https://github.com/flutter/flutter/pull/59162) Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green) [59186](https://github.com/flutter/flutter/pull/59186) Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59191](https://github.com/flutter/flutter/pull/59191) [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [59219](https://github.com/flutter/flutter/pull/59219) Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59251](https://github.com/flutter/flutter/pull/59251) [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green) [59273](https://github.com/flutter/flutter/pull/59273) Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green) [59279](https://github.com/flutter/flutter/pull/59279) First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green) [59310](https://github.com/flutter/flutter/pull/59310) Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green) [59317](https://github.com/flutter/flutter/pull/59317) Implement Comparable<TimeOfDay> (cla: yes, f: material design, framework, waiting for tree to go green) [59363](https://github.com/flutter/flutter/pull/59363) Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green) [59364](https://github.com/flutter/flutter/pull/59364) Reland non-breaking "Add clipBehavior to widgets with clipRect #55977" (cla: yes, f: material design, framework, team) [59405](https://github.com/flutter/flutter/pull/59405) [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [59474](https://github.com/flutter/flutter/pull/59474) Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green) [59481](https://github.com/flutter/flutter/pull/59481) [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59561](https://github.com/flutter/flutter/pull/59561) Revert "Modernize selection menu appearance" (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [59586](https://github.com/flutter/flutter/pull/59586) Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59631](https://github.com/flutter/flutter/pull/59631) ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green) [59641](https://github.com/flutter/flutter/pull/59641) [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59677](https://github.com/flutter/flutter/pull/59677) Revert "Characters Package" (cla: yes, f: material design, framework) [59778](https://github.com/flutter/flutter/pull/59778) Reland Characters Usage (cla: yes, f: material design, framework) [59807](https://github.com/flutter/flutter/pull/59807) Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green) [59865](https://github.com/flutter/flutter/pull/59865) Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59883](https://github.com/flutter/flutter/pull/59883) Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green) [59937](https://github.com/flutter/flutter/pull/59937) Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green) [59981](https://github.com/flutter/flutter/pull/59981) Revert "Implement Comparable<TimeOfDay>" (cla: yes, f: material design, framework) [59992](https://github.com/flutter/flutter/pull/59992) Revert "[PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once" (cla: yes, f: material design, framework) [60000](https://github.com/flutter/flutter/pull/60000) Revert "Fix outline button solid path when BorderSize.width is used" (f: material design, framework) [60009](https://github.com/flutter/flutter/pull/60009) RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green) [60042](https://github.com/flutter/flutter/pull/60042) Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework) [60059](https://github.com/flutter/flutter/pull/60059) Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green) [60096](https://github.com/flutter/flutter/pull/60096) Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [60129](https://github.com/flutter/flutter/pull/60129) fix ink feature tries to get parent transformations when it is in the… (cla: yes, f: material design, framework, waiting for tree to go green) [60139](https://github.com/flutter/flutter/pull/60139) Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green) [60141](https://github.com/flutter/flutter/pull/60141) Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework) [60245](https://github.com/flutter/flutter/pull/60245) [PageTransitionsBuilder] Reland Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [60248](https://github.com/flutter/flutter/pull/60248) Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green) [60316](https://github.com/flutter/flutter/pull/60316) Don't access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [60329](https://github.com/flutter/flutter/pull/60329) [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green) [60383](https://github.com/flutter/flutter/pull/60383) [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60394](https://github.com/flutter/flutter/pull/60394) Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green) [60396](https://github.com/flutter/flutter/pull/60396) Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green) [60405](https://github.com/flutter/flutter/pull/60405) Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green) [60482](https://github.com/flutter/flutter/pull/60482) Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green) [60497](https://github.com/flutter/flutter/pull/60497) Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60530](https://github.com/flutter/flutter/pull/60530) Revert "fix paint order of ink feature (#59108)" (cla: yes, f: material design, framework) [60536](https://github.com/flutter/flutter/pull/60536) Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green) [60545](https://github.com/flutter/flutter/pull/60545) Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green) [60549](https://github.com/flutter/flutter/pull/60549) RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green) [60552](https://github.com/flutter/flutter/pull/60552) New license page with fix for zero licenses. (a: internationalization, f: material design, framework) [60563](https://github.com/flutter/flutter/pull/60563) ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green) [60600](https://github.com/flutter/flutter/pull/60600) Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60645](https://github.com/flutter/flutter/pull/60645) Revert "Tweaking Material Chip a11y semantics to match buttons (#60141)" (cla: yes, f: material design, framework, waiting for tree to go green) [60684](https://github.com/flutter/flutter/pull/60684) Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60730](https://github.com/flutter/flutter/pull/60730) Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green) [60764](https://github.com/flutter/flutter/pull/60764) Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green) [60832](https://github.com/flutter/flutter/pull/60832) Fix typo in popup_menu.dart (cla: yes, f: material design, framework) [60915](https://github.com/flutter/flutter/pull/60915) [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green) [60991](https://github.com/flutter/flutter/pull/60991) [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green) [61000](https://github.com/flutter/flutter/pull/61000) Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [61012](https://github.com/flutter/flutter/pull/61012) prevents sliver app bar from changing semantics tree when it is not n… (a: accessibility, f: material design, framework, waiting for tree to go green) #### a: tests - 67 pull request(s) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [53422](https://github.com/flutter/flutter/pull/53422) Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [54125](https://github.com/flutter/flutter/pull/54125) remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team) [54144](https://github.com/flutter/flutter/pull/54144) drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54171](https://github.com/flutter/flutter/pull/54171) System mouse cursors (a: tests, cla: yes, f: material design, framework) [54206](https://github.com/flutter/flutter/pull/54206) Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54212](https://github.com/flutter/flutter/pull/54212) Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green) [54218](https://github.com/flutter/flutter/pull/54218) [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green) [54220](https://github.com/flutter/flutter/pull/54220) [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework) [54227](https://github.com/flutter/flutter/pull/54227) [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54480](https://github.com/flutter/flutter/pull/54480) Revert "[flutter_driver] Add SceneDisplayLag stats to timeline summar… (a: tests, cla: yes, framework, team) [54490](https://github.com/flutter/flutter/pull/54490) [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green) [54698](https://github.com/flutter/flutter/pull/54698) Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green) [54741](https://github.com/flutter/flutter/pull/54741) [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green) [54991](https://github.com/flutter/flutter/pull/54991) Mark ios_app_with_watch_companion as not flaky (a: tests, cla: yes, team) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55141](https://github.com/flutter/flutter/pull/55141) Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green) [55484](https://github.com/flutter/flutter/pull/55484) Revert "Fix FlutterError.onError in debug mode (#53843)" (a: tests, cla: yes, f: material design, framework) [55494](https://github.com/flutter/flutter/pull/55494) Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green) [55527](https://github.com/flutter/flutter/pull/55527) Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens) [55763](https://github.com/flutter/flutter/pull/55763) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework) [55769](https://github.com/flutter/flutter/pull/55769) Revert "[timeline] Sort timeline events before summarizing (#55763)" (a: tests, cla: yes, framework) [55771](https://github.com/flutter/flutter/pull/55771) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [55936](https://github.com/flutter/flutter/pull/55936) Fixed #55858 (a: tests, cla: yes, framework) [56428](https://github.com/flutter/flutter/pull/56428) Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green) [56430](https://github.com/flutter/flutter/pull/56430) Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green) [57240](https://github.com/flutter/flutter/pull/57240) [web] Update test skip description. (a: tests, cla: yes, framework, platform-web) [57270](https://github.com/flutter/flutter/pull/57270) add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework) [57287](https://github.com/flutter/flutter/pull/57287) remove pending timers list code out of assert message (a: tests, cla: yes, framework) [57696](https://github.com/flutter/flutter/pull/57696) Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green) [58210](https://github.com/flutter/flutter/pull/58210) [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework) [58430](https://github.com/flutter/flutter/pull/58430) [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory) [58514](https://github.com/flutter/flutter/pull/58514) add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green) [58620](https://github.com/flutter/flutter/pull/58620) Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) [58655](https://github.com/flutter/flutter/pull/58655) debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green) [58723](https://github.com/flutter/flutter/pull/58723) Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green) [58771](https://github.com/flutter/flutter/pull/58771) [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green) [58820](https://github.com/flutter/flutter/pull/58820) Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green) [58823](https://github.com/flutter/flutter/pull/58823) Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59358](https://github.com/flutter/flutter/pull/59358) Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green) [59803](https://github.com/flutter/flutter/pull/59803) Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59900](https://github.com/flutter/flutter/pull/59900) Fix issue with stack traces getting mangled (a: tests, cla: yes, framework) [59982](https://github.com/flutter/flutter/pull/59982) [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework) [60045](https://github.com/flutter/flutter/pull/60045) Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team) [60136](https://github.com/flutter/flutter/pull/60136) Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green) [60152](https://github.com/flutter/flutter/pull/60152) Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green) [60336](https://github.com/flutter/flutter/pull/60336) Heavy Widget construction and destruction performance test (a: tests, cla: yes, team) [60367](https://github.com/flutter/flutter/pull/60367) Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green) [60478](https://github.com/flutter/flutter/pull/60478) Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60734](https://github.com/flutter/flutter/pull/60734) Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework) [60774](https://github.com/flutter/flutter/pull/60774) await TimelineSummary.write***ToFile (a: tests, cla: yes, team) [60916](https://github.com/flutter/flutter/pull/60916) Revert "Fix remaining holes in stack trace demangling" (a: tests, cla: yes, framework) [60934](https://github.com/flutter/flutter/pull/60934) Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60936](https://github.com/flutter/flutter/pull/60936) Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60996](https://github.com/flutter/flutter/pull/60996) Reland "Fix remaining holes in stack trace demangling"" (a: tests, cla: yes, framework) [61102](https://github.com/flutter/flutter/pull/61102) Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework) [61118](https://github.com/flutter/flutter/pull/61118) Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green) #### f: cupertino - 53 pull request(s) [42940](https://github.com/flutter/flutter/pull/42940) Revise Action API (cla: yes, f: cupertino, f: material design, framework, team) [50915](https://github.com/flutter/flutter/pull/50915) Implement barrierDismissible for `showCupertinoDialog` (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [52126](https://github.com/flutter/flutter/pull/52126) Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [52995](https://github.com/flutter/flutter/pull/52995) Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) [54119](https://github.com/flutter/flutter/pull/54119) Reland "iOS UITextInput autocorrection prompt (#45354)" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54394](https://github.com/flutter/flutter/pull/54394) replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [54902](https://github.com/flutter/flutter/pull/54902) Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55415](https://github.com/flutter/flutter/pull/55415) Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55636](https://github.com/flutter/flutter/pull/55636) Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [56091](https://github.com/flutter/flutter/pull/56091) Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56614](https://github.com/flutter/flutter/pull/56614) Revert "Paste shows only when content on clipboard (#54902)" (cla: yes, f: cupertino, f: material design, framework) [56641](https://github.com/flutter/flutter/pull/56641) Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [57461](https://github.com/flutter/flutter/pull/57461) Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green) [57487](https://github.com/flutter/flutter/pull/57487) Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green) [57519](https://github.com/flutter/flutter/pull/57519) Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green) [57534](https://github.com/flutter/flutter/pull/57534) Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green) [57576](https://github.com/flutter/flutter/pull/57576) Add Web Benchmarks for Flutter Gallery (Flutter Side) — 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green) [58024](https://github.com/flutter/flutter/pull/58024) fix cupertino page route dismisses hero transition when swipe to the … (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58258](https://github.com/flutter/flutter/pull/58258) Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58808](https://github.com/flutter/flutter/pull/58808) Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59115](https://github.com/flutter/flutter/pull/59115) Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59160](https://github.com/flutter/flutter/pull/59160) Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design) [59186](https://github.com/flutter/flutter/pull/59186) Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [59219](https://github.com/flutter/flutter/pull/59219) Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59514](https://github.com/flutter/flutter/pull/59514) Replace collection's SetEquality with flutter's own (cla: yes, f: cupertino, framework, waiting for tree to go green) [59561](https://github.com/flutter/flutter/pull/59561) Revert "Modernize selection menu appearance" (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [60316](https://github.com/flutter/flutter/pull/60316) Don't access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [60405](https://github.com/flutter/flutter/pull/60405) Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) #### a: internationalization - 34 pull request(s) [50915](https://github.com/flutter/flutter/pull/50915) Implement barrierDismissible for `showCupertinoDialog` (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [53374](https://github.com/flutter/flutter/pull/53374) [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53824](https://github.com/flutter/flutter/pull/53824) [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53868](https://github.com/flutter/flutter/pull/53868) [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) [53954](https://github.com/flutter/flutter/pull/53954) [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [54176](https://github.com/flutter/flutter/pull/54176) Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool) [54219](https://github.com/flutter/flutter/pull/54219) Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green) [54314](https://github.com/flutter/flutter/pull/54314) [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green) [54401](https://github.com/flutter/flutter/pull/54401) Cleanup in gen_l10n files (a: internationalization, cla: yes, team) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55792](https://github.com/flutter/flutter/pull/55792) [gen_l10n] Output directory option (a: internationalization, cla: yes, team) [55909](https://github.com/flutter/flutter/pull/55909) [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool) [56090](https://github.com/flutter/flutter/pull/56090) Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [56091](https://github.com/flutter/flutter/pull/56091) Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [56146](https://github.com/flutter/flutter/pull/56146) Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green) [56373](https://github.com/flutter/flutter/pull/56373) [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green) [56490](https://github.com/flutter/flutter/pull/56490) [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56645](https://github.com/flutter/flutter/pull/56645) Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [57588](https://github.com/flutter/flutter/pull/57588) New license page. (a: internationalization, cla: yes, f: material design, framework) [58482](https://github.com/flutter/flutter/pull/58482) Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green) [58831](https://github.com/flutter/flutter/pull/58831) Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [59160](https://github.com/flutter/flutter/pull/59160) Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design) [59191](https://github.com/flutter/flutter/pull/59191) [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59561](https://github.com/flutter/flutter/pull/59561) Revert "Modernize selection menu appearance" (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [60096](https://github.com/flutter/flutter/pull/60096) Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [60185](https://github.com/flutter/flutter/pull/60185) [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool) [60405](https://github.com/flutter/flutter/pull/60405) Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green) [60552](https://github.com/flutter/flutter/pull/60552) New license page with fix for zero licenses. (a: internationalization, f: material design, framework) [60600](https://github.com/flutter/flutter/pull/60600) Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design) #### engine - 33 pull request(s) [54111](https://github.com/flutter/flutter/pull/54111) Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine) [54383](https://github.com/flutter/flutter/pull/54383) Revert "Roll engine 5b4b1f33c6d6..916f014d1cfb (24 commits)" (cla: yes, engine) [55253](https://github.com/flutter/flutter/pull/55253) Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool) [55521](https://github.com/flutter/flutter/pull/55521) Revert "Roll engine 8fff8da38da2..a544b45f26cc (3 commits)" (cla: yes, engine) [55560](https://github.com/flutter/flutter/pull/55560) Revert "Roll engine 8fff8da38da2..d2ec21221e29 (8 commits)" (cla: yes, engine) [55749](https://github.com/flutter/flutter/pull/55749) Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review) [55871](https://github.com/flutter/flutter/pull/55871) Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool) [55891](https://github.com/flutter/flutter/pull/55891) manual engine roll (4bcfae82c7c1 -> 0c35a3417) (cla: yes, engine) [56677](https://github.com/flutter/flutter/pull/56677) Manual roll of engine 7e205b37e5...3953c3ccd1 (cla: yes, engine) [56684](https://github.com/flutter/flutter/pull/56684) Manual roll of engine 9b905d3f03...7e205b37e5 (cla: yes, engine) [57052](https://github.com/flutter/flutter/pull/57052) Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58692](https://github.com/flutter/flutter/pull/58692) Revert "Roll Engine from 859d892f1fca to 2608f2ee9f54 (9 revisions)" (cla: yes, engine) [58736](https://github.com/flutter/flutter/pull/58736) Update engine hash for 1.19.0-4.0.pre (cla: yes, engine) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59102](https://github.com/flutter/flutter/pull/59102) Update engine hash for 1.19.0-4.1.pre (cla: yes, engine) [59334](https://github.com/flutter/flutter/pull/59334) Revert "Roll Engine from 965fbbed1776 to d417772d7acd (21 revisions)" (cla: yes, engine) [59490](https://github.com/flutter/flutter/pull/59490) Revert "Roll Engine from 965fbbed1776 to 801559ac4ed3 (50 revisions)" (cla: yes, engine) [59692](https://github.com/flutter/flutter/pull/59692) Revert "Roll Engine from 965fbbed1776 to 237b5f32eff8 (95 revisions) … (cla: yes, engine) [59717](https://github.com/flutter/flutter/pull/59717) Manual engine roll to update format of `compileExpression` RPC response (cla: yes, engine, tool, waiting for tree to go green) [59758](https://github.com/flutter/flutter/pull/59758) Update engine hash for flutter-1.20-candidate.1 (cla: yes, engine) [59774](https://github.com/flutter/flutter/pull/59774) Revert "Manual engine roll to update format of `compileExpression` RP… (cla: yes, engine, tool) [59804](https://github.com/flutter/flutter/pull/59804) Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green) [60002](https://github.com/flutter/flutter/pull/60002) 1.19 CP: [flutter_tools] move mingit path addition back to flutter.bat (#59369) (cla: yes, engine) [60200](https://github.com/flutter/flutter/pull/60200) [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60824](https://github.com/flutter/flutter/pull/60824) Update engine hash to cherry-pick version a751393 (cla: yes, engine) [60955](https://github.com/flutter/flutter/pull/60955) Set engine version to head containing cherrypicks (cla: yes, engine) [61010](https://github.com/flutter/flutter/pull/61010) Revert "Add `embedderId` to `PointerEvent` (#60930)" (cla: yes, engine, framework, team) [61013](https://github.com/flutter/flutter/pull/61013) Re-land gesture detection for hybrid platform views (engine, framework, team) #### d: examples - 28 pull request(s) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [54176](https://github.com/flutter/flutter/pull/54176) Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [54407](https://github.com/flutter/flutter/pull/54407) Don't import plugins that don't support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green) [54691](https://github.com/flutter/flutter/pull/54691) Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [56958](https://github.com/flutter/flutter/pull/56958) Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green) [57621](https://github.com/flutter/flutter/pull/57621) Remove MaterialControls from examples/flutter_view (cla: yes, d: examples, team) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58444](https://github.com/flutter/flutter/pull/58444) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green) [58504](https://github.com/flutter/flutter/pull/58504) Revert "Remove outdated disable_input_output_paths from example project Podfiles" (cla: yes, d: examples, team) [58522](https://github.com/flutter/flutter/pull/58522) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green) [58524](https://github.com/flutter/flutter/pull/58524) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green) [58549](https://github.com/flutter/flutter/pull/58549) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [59025](https://github.com/flutter/flutter/pull/59025) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59280](https://github.com/flutter/flutter/pull/59280) test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green) [59896](https://github.com/flutter/flutter/pull/59896) gitignore `.last_build_id` file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) #### a: accessibility - 25 pull request(s) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [54394](https://github.com/flutter/flutter/pull/54394) replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [54407](https://github.com/flutter/flutter/pull/54407) Don't import plugins that don't support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56968](https://github.com/flutter/flutter/pull/56968) setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58535](https://github.com/flutter/flutter/pull/58535) Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58620](https://github.com/flutter/flutter/pull/58620) Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [59186](https://github.com/flutter/flutter/pull/59186) Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [59219](https://github.com/flutter/flutter/pull/59219) Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [60141](https://github.com/flutter/flutter/pull/60141) Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60925](https://github.com/flutter/flutter/pull/60925) fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green) [61012](https://github.com/flutter/flutter/pull/61012) prevents sliver app bar from changing semantics tree when it is not n… (a: accessibility, f: material design, framework, waiting for tree to go green) #### platform-ios - 19 pull request(s) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54154](https://github.com/flutter/flutter/pull/54154) Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green) [54488](https://github.com/flutter/flutter/pull/54488) Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool) [54989](https://github.com/flutter/flutter/pull/54989) Support armv7s architecture (cla: yes, platform-ios, tool) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55808](https://github.com/flutter/flutter/pull/55808) Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool) [58137](https://github.com/flutter/flutter/pull/58137) Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green) [58257](https://github.com/flutter/flutter/pull/58257) Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58444](https://github.com/flutter/flutter/pull/58444) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [59044](https://github.com/flutter/flutter/pull/59044) Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59209](https://github.com/flutter/flutter/pull/59209) Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59508](https://github.com/flutter/flutter/pull/59508) Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59874](https://github.com/flutter/flutter/pull/59874) Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green) [60045](https://github.com/flutter/flutter/pull/60045) Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team) [60228](https://github.com/flutter/flutter/pull/60228) Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool) [60381](https://github.com/flutter/flutter/pull/60381) Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool) [60623](https://github.com/flutter/flutter/pull/60623) Take screenshots of wirelessly paired iOS devices (platform-ios, tool) #### a: quality - 16 pull request(s) [50412](https://github.com/flutter/flutter/pull/50412) Make CircularProgressIndicator's animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [53655](https://github.com/flutter/flutter/pull/53655) Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [56084](https://github.com/flutter/flutter/pull/56084) Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [57751](https://github.com/flutter/flutter/pull/57751) Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58715](https://github.com/flutter/flutter/pull/58715) Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green) [58829](https://github.com/flutter/flutter/pull/58829) Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59966](https://github.com/flutter/flutter/pull/59966) Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green) [60248](https://github.com/flutter/flutter/pull/60248) Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60934](https://github.com/flutter/flutter/pull/60934) Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60936](https://github.com/flutter/flutter/pull/60936) Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) #### a: text input - 15 pull request(s) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54902](https://github.com/flutter/flutter/pull/54902) Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [55415](https://github.com/flutter/flutter/pull/55415) Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55636](https://github.com/flutter/flutter/pull/55636) Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55775](https://github.com/flutter/flutter/pull/55775) TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [55911](https://github.com/flutter/flutter/pull/55911) Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green) [56090](https://github.com/flutter/flutter/pull/56090) Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [57264](https://github.com/flutter/flutter/pull/57264) Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [58831](https://github.com/flutter/flutter/pull/58831) Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [59221](https://github.com/flutter/flutter/pull/59221) Revert "Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)" (a: text input, cla: yes, framework, waiting for tree to go green) [59363](https://github.com/flutter/flutter/pull/59363) Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) #### d: api docs - 13 pull request(s) [50673](https://github.com/flutter/flutter/pull/50673) Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [57195](https://github.com/flutter/flutter/pull/57195) Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) [58117](https://github.com/flutter/flutter/pull/58117) Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [58213](https://github.com/flutter/flutter/pull/58213) update build doc string to advocate avoiding doing tasks other than b… (cla: yes, d: api docs, framework, waiting for tree to go green) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) [60482](https://github.com/flutter/flutter/pull/60482) Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) #### documentation - 11 pull request(s) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) [58456](https://github.com/flutter/flutter/pull/58456) Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) [60482](https://github.com/flutter/flutter/pull/60482) Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60734](https://github.com/flutter/flutter/pull/60734) Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) #### severe: performance - 11 pull request(s) [54494](https://github.com/flutter/flutter/pull/54494) Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green) [55181](https://github.com/flutter/flutter/pull/55181) Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [55417](https://github.com/flutter/flutter/pull/55417) [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool) [55486](https://github.com/flutter/flutter/pull/55486) Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green) [56575](https://github.com/flutter/flutter/pull/56575) Roll new gallery version in the perf test (cla: yes, severe: performance, team, waiting for tree to go green) [56638](https://github.com/flutter/flutter/pull/56638) Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [58648](https://github.com/flutter/flutter/pull/58648) Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green) [58820](https://github.com/flutter/flutter/pull/58820) Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green) [59803](https://github.com/flutter/flutter/pull/59803) Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green) [59883](https://github.com/flutter/flutter/pull/59883) Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green) [59932](https://github.com/flutter/flutter/pull/59932) Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) #### severe: API break - 11 pull request(s) [54806](https://github.com/flutter/flutter/pull/54806) Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [54997](https://github.com/flutter/flutter/pull/54997) Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [55998](https://github.com/flutter/flutter/pull/55998) Fixes the navigator pages update crashes when there is still route wa… (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green) [56390](https://github.com/flutter/flutter/pull/56390) Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56740](https://github.com/flutter/flutter/pull/56740) Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [57065](https://github.com/flutter/flutter/pull/57065) Remove deprecated child parameter for NestedScrollView's overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green) [57629](https://github.com/flutter/flutter/pull/57629) Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) #### f: scrolling - 11 pull request(s) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [57065](https://github.com/flutter/flutter/pull/57065) Remove deprecated child parameter for NestedScrollView's overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58715](https://github.com/flutter/flutter/pull/58715) Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green) [59015](https://github.com/flutter/flutter/pull/59015) fix overscroll position if there is sliver before center sliver in cu… (cla: yes, f: scrolling, framework, waiting for tree to go green) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59405](https://github.com/flutter/flutter/pull/59405) [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [59888](https://github.com/flutter/flutter/pull/59888) Fix the layout calculation in sliver list where the scroll offset cor… (cla: yes, f: scrolling, framework, waiting for tree to go green) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) #### t: xcode - 10 pull request(s) [54691](https://github.com/flutter/flutter/pull/54691) Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool) [55790](https://github.com/flutter/flutter/pull/55790) Remove dead variable from xcode_backend (cla: yes, t: xcode, tool) [55799](https://github.com/flutter/flutter/pull/55799) Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool) [55808](https://github.com/flutter/flutter/pull/55808) Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool) [56620](https://github.com/flutter/flutter/pull/56620) Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green) [57701](https://github.com/flutter/flutter/pull/57701) Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green) [58137](https://github.com/flutter/flutter/pull/58137) Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green) [58257](https://github.com/flutter/flutter/pull/58257) Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [60546](https://github.com/flutter/flutter/pull/60546) Fix daemon device discovery crash when Xcode isn't installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green) #### will affect goldens - 9 pull request(s) [51656](https://github.com/flutter/flutter/pull/51656) Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens) [54806](https://github.com/flutter/flutter/pull/54806) Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [54997](https://github.com/flutter/flutter/pull/54997) Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [55527](https://github.com/flutter/flutter/pull/55527) Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [56390](https://github.com/flutter/flutter/pull/56390) Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [56740](https://github.com/flutter/flutter/pull/56740) Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [57629](https://github.com/flutter/flutter/pull/57629) Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) #### platform-web - 9 pull request(s) [51581](https://github.com/flutter/flutter/pull/51581) Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [53952](https://github.com/flutter/flutter/pull/53952) [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54396](https://github.com/flutter/flutter/pull/54396) [web] Don't collect trace info in the color grid benchmark (cla: yes, platform-web, team) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [56794](https://github.com/flutter/flutter/pull/56794) [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green) [57240](https://github.com/flutter/flutter/pull/57240) [web] Update test skip description. (a: tests, cla: yes, framework, platform-web) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) #### a: null-safety - 8 pull request(s) [54208](https://github.com/flutter/flutter/pull/54208) [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool) [54299](https://github.com/flutter/flutter/pull/54299) [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool) [54301](https://github.com/flutter/flutter/pull/54301) [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool) [54467](https://github.com/flutter/flutter/pull/54467) [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool) [54613](https://github.com/flutter/flutter/pull/54613) [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green) [54617](https://github.com/flutter/flutter/pull/54617) [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool) [58533](https://github.com/flutter/flutter/pull/58533) [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool) [60111](https://github.com/flutter/flutter/pull/60111) Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool) #### a: fidelity - 7 pull request(s) [50412](https://github.com/flutter/flutter/pull/50412) Make CircularProgressIndicator's animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [56084](https://github.com/flutter/flutter/pull/56084) Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [57751](https://github.com/flutter/flutter/pull/57751) Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58829](https://github.com/flutter/flutter/pull/58829) Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) #### a: images - 7 pull request(s) [51656](https://github.com/flutter/flutter/pull/51656) Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens) [53875](https://github.com/flutter/flutter/pull/53875) Remove network images from cache on any exception during loading (a: images, cla: yes, framework) [53959](https://github.com/flutter/flutter/pull/53959) Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [58503](https://github.com/flutter/flutter/pull/58503) Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework) [59856](https://github.com/flutter/flutter/pull/59856) Make upscaling images opt-in (a: images, cla: yes, framework) [59877](https://github.com/flutter/flutter/pull/59877) Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework) #### work in progress; do not review - 5 pull request(s) [53879](https://github.com/flutter/flutter/pull/53879) Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review) [55126](https://github.com/flutter/flutter/pull/55126) web benchmarks: handle no outliers case (cla: yes, team, waiting for tree to go green, work in progress; do not review) [55749](https://github.com/flutter/flutter/pull/55749) Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) #### platform-android - 5 pull request(s) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) [56342](https://github.com/flutter/flutter/pull/56342) Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green) [58815](https://github.com/flutter/flutter/pull/58815) Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green) [59115](https://github.com/flutter/flutter/pull/59115) Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green) [59867](https://github.com/flutter/flutter/pull/59867) Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green) #### CQ+1 - 4 pull request(s) [54131](https://github.com/flutter/flutter/pull/54131) flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool) [55401](https://github.com/flutter/flutter/pull/55401) Optimize fuchsia test script. (CQ+1, cla: yes, team, waiting for tree to go green) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60717](https://github.com/flutter/flutter/pull/60717) 1.19 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, cla: yes) #### a: existing-apps - 4 pull request(s) [59217](https://github.com/flutter/flutter/pull/59217) Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green) [59874](https://github.com/flutter/flutter/pull/59874) Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green) [60111](https://github.com/flutter/flutter/pull/60111) Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool) [60228](https://github.com/flutter/flutter/pull/60228) Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool) #### severe: new feature - 4 pull request(s) [53868](https://github.com/flutter/flutter/pull/53868) [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [57736](https://github.com/flutter/flutter/pull/57736) [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green) [59405](https://github.com/flutter/flutter/pull/59405) [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) #### perf: memory - 4 pull request(s) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) [55486](https://github.com/flutter/flutter/pull/55486) Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green) [58430](https://github.com/flutter/flutter/pull/58430) [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory) [61025](https://github.com/flutter/flutter/pull/61025) benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green) #### f: routes - 4 pull request(s) [55998](https://github.com/flutter/flutter/pull/55998) Fixes the navigator pages update crashes when there is still route wa… (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green) [56732](https://github.com/flutter/flutter/pull/56732) fix pushAndRemoveUntil incorrectly removes the routes below the first… (cla: yes, f: routes, framework, waiting for tree to go green) [57036](https://github.com/flutter/flutter/pull/57036) fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green) [60621](https://github.com/flutter/flutter/pull/60621) Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green) #### a: desktop - 3 pull request(s) [53888](https://github.com/flutter/flutter/pull/53888) Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green) [56160](https://github.com/flutter/flutter/pull/56160) Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green) [58272](https://github.com/flutter/flutter/pull/58272) Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework) #### perf: speed - 3 pull request(s) [55181](https://github.com/flutter/flutter/pull/55181) Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [56638](https://github.com/flutter/flutter/pull/56638) Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [59932](https://github.com/flutter/flutter/pull/59932) Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) #### a: triage improvements - 3 pull request(s) [53882](https://github.com/flutter/flutter/pull/53882) Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool) [53936](https://github.com/flutter/flutter/pull/53936) Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool) [56928](https://github.com/flutter/flutter/pull/56928) Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green) #### a: typography - 3 pull request(s) [54234](https://github.com/flutter/flutter/pull/54234) Fix right alignment TWB longestLine (a: typography, cla: yes, framework) [54305](https://github.com/flutter/flutter/pull/54305) Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) #### team: infra - 3 pull request(s) [54478](https://github.com/flutter/flutter/pull/54478) Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool) [54891](https://github.com/flutter/flutter/pull/54891) Mark ios_app_with_watch_companion as flaky (cla: yes, team, team: infra) [54899](https://github.com/flutter/flutter/pull/54899) Pass in runtime to ios_app_with_watch_companion simctl create (cla: yes, team, team: infra) #### a: error message - 3 pull request(s) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [59877](https://github.com/flutter/flutter/pull/59877) Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) #### f: focus - 3 pull request(s) [52990](https://github.com/flutter/flutter/pull/52990) Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green) [56160](https://github.com/flutter/flutter/pull/56160) Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green) [58535](https://github.com/flutter/flutter/pull/58535) Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework) #### customer: money (g3) - 3 pull request(s) [58482](https://github.com/flutter/flutter/pull/58482) Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green) [60141](https://github.com/flutter/flutter/pull/60141) Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework) [60248](https://github.com/flutter/flutter/pull/60248) Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green) #### customer: crowd - 2 pull request(s) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) #### severe: regression - 2 pull request(s) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) #### a: platform-views - 2 pull request(s) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) [55609](https://github.com/flutter/flutter/pull/55609) Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team) #### a: animation - 2 pull request(s) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60836](https://github.com/flutter/flutter/pull/60836) Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green) #### a: annoyance - 2 pull request(s) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) #### t: flutter doctor - 2 pull request(s) [56928](https://github.com/flutter/flutter/pull/56928) Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green) [57963](https://github.com/flutter/flutter/pull/57963) [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool) #### found in release: 1.17 - 1 pull request(s) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) #### f: inspector - 1 pull request(s) [55911](https://github.com/flutter/flutter/pull/55911) Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green) #### f: gestures - 1 pull request(s) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) #### platform-mac - 1 pull request(s) [56794](https://github.com/flutter/flutter/pull/56794) [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green) #### customer: quill (g3) - 1 pull request(s) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) #### plugin - 1 pull request(s) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) #### customer: peppermint - 1 pull request(s) [52126](https://github.com/flutter/flutter/pull/52126) Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green) #### severe: crash - 1 pull request(s) [60546](https://github.com/flutter/flutter/pull/60546) Fix daemon device discovery crash when Xcode isn't installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green) #### customer: octopod - 1 pull request(s) [59363](https://github.com/flutter/flutter/pull/59363) Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green) #### customer: fun (g3) - 1 pull request(s) [54919](https://github.com/flutter/flutter/pull/54919) Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework) #### customer: fuchsia - 1 pull request(s) [60152](https://github.com/flutter/flutter/pull/60152) Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green) #### p: framework - 1 pull request(s) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) #### t: flutter driver - 1 pull request(s) [55609](https://github.com/flutter/flutter/pull/55609) Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team) #### customer: dream (g3) - 1 pull request(s) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) #### cla: no - 1 pull request(s) [54111](https://github.com/flutter/flutter/pull/54111) Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine) #### team: flakes - 1 pull request(s) [54478](https://github.com/flutter/flutter/pull/54478) Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool) #### team: gallery - 1 pull request(s) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) #### a: video - 1 pull request(s) [59966](https://github.com/flutter/flutter/pull/59966) Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green) #### a: mouse - 1 pull request(s) [59883](https://github.com/flutter/flutter/pull/59883) Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green) #### waiting for customer response - 1 pull request(s) [54133](https://github.com/flutter/flutter/pull/54133) [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response) #### a: debugging - 1 pull request(s) [59877](https://github.com/flutter/flutter/pull/59877) Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework) #### found in release: 1.18 - 1 pull request(s) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) ### Merged PRs by labels for `flutter/engine` #### platform-android - 62 pull request(s) [17509](https://github.com/flutter/engine/pull/17509) Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android) [17588](https://github.com/flutter/engine/pull/17588) set -e on assemble_apk.sh (cla: yes, platform-android, waiting for tree to go green) [17948](https://github.com/flutter/engine/pull/17948) Set SkSL asset manager in RunConfiguration ctor (cla: yes, platform-android, waiting for tree to go green) [18042](https://github.com/flutter/engine/pull/18042) Wire up channel for restoration data (cla: yes, platform-android) [18193](https://github.com/flutter/engine/pull/18193) Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android) [18645](https://github.com/flutter/engine/pull/18645) Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18814](https://github.com/flutter/engine/pull/18814) Allow texture sampling quality control (cla: yes, platform-android, platform-ios) [18826](https://github.com/flutter/engine/pull/18826) Revert "onDisplayPlatformView JNI" (cla: yes, platform-android) [18828](https://github.com/flutter/engine/pull/18828) onDisplayPlatformView JNI (cla: yes, platform-android, waiting for tree to go green) [18831](https://github.com/flutter/engine/pull/18831) Reset AndroidExternalViewEmbedder state when starting a new frame (cla: yes, platform-android, waiting for tree to go green) [18841](https://github.com/flutter/engine/pull/18841) Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios) [18849](https://github.com/flutter/engine/pull/18849) Add RAII wrapper for EGLSurface (cla: yes, platform-android) [18859](https://github.com/flutter/engine/pull/18859) add onDisplayOverlaySurface JNI (cla: yes, platform-android) [18865](https://github.com/flutter/engine/pull/18865) Add a deprecation note to FlutterFragmentActivity (cla: yes, platform-android) [18866](https://github.com/flutter/engine/pull/18866) onBeginFrame JNI (cla: yes, platform-android, waiting for tree to go green) [18867](https://github.com/flutter/engine/pull/18867) onEndFrame JNI (cla: yes, platform-android, waiting for tree to go green) [18875](https://github.com/flutter/engine/pull/18875) Fix intent builder visibility (cla: yes, platform-android, waiting for tree to go green) [18903](https://github.com/flutter/engine/pull/18903) Put JNI functions under an interface (cla: yes, platform-android) [18916](https://github.com/flutter/engine/pull/18916) Add support for horizontalDoubleArrow and verticalDoubleArrow cursors (cla: yes, platform-android) [18938](https://github.com/flutter/engine/pull/18938) Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18971](https://github.com/flutter/engine/pull/18971) Revert "Add RAII wrapper for EGLSurface" (cla: yes, platform-android) [18977](https://github.com/flutter/engine/pull/18977) Reland: Add RAII wrapper for EGLSurface (cla: yes, platform-android) [18979](https://github.com/flutter/engine/pull/18979) Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events (cla: yes, platform-android) [18985](https://github.com/flutter/engine/pull/18985) Call destructor and fix check (cla: yes, platform-android) [19023](https://github.com/flutter/engine/pull/19023) Revert "Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events" (cla: yes, platform-android) [19026](https://github.com/flutter/engine/pull/19026) Call Shell::NotifyLowMemory when backgrounded/memory pressure occurs on Android (cla: yes, platform-android, waiting for tree to go green) [19033](https://github.com/flutter/engine/pull/19033) Implement external view embedder on Android (cla: yes, platform-android) [19040](https://github.com/flutter/engine/pull/19040) add createOverlaySurface JNI (cla: yes, platform-android, waiting for tree to go green) [19075](https://github.com/flutter/engine/pull/19075) Revert add createOverlaySurface JNI #19040 (cla: yes, platform-android) [19076](https://github.com/flutter/engine/pull/19076) createOverlaySurface JNI method (cla: yes, platform-android, waiting for tree to go green) [19111](https://github.com/flutter/engine/pull/19111) Word substitutions (cla: yes, platform-android, waiting for tree to go green) [19136](https://github.com/flutter/engine/pull/19136) Revert method channel platform resolved locale (cla: yes, platform-android) [19143](https://github.com/flutter/engine/pull/19143) Creates a new RenderMode for FlutterView (cla: yes, platform-android) [19212](https://github.com/flutter/engine/pull/19212) Reland "Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view #19170" (cla: yes, platform-android, platform-ios) [19221](https://github.com/flutter/engine/pull/19221) JNI glue for calling PlatformViewsController.createOverlaySurface (cla: yes, platform-android, waiting for tree to go green) [19223](https://github.com/flutter/engine/pull/19223) Fix the return type of CreateContext (cla: yes, platform-android, waiting for tree to go green) [19226](https://github.com/flutter/engine/pull/19226) Implement PlatformViewsController.createOverlaySurface (cla: yes, platform-android) [19228](https://github.com/flutter/engine/pull/19228) Revert "Implement PlatformViewsController.createOverlaySurface" (cla: yes, platform-android) [19232](https://github.com/flutter/engine/pull/19232) Use public accessor and move keep annotation (cla: yes, platform-android) [19242](https://github.com/flutter/engine/pull/19242) Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green) [19245](https://github.com/flutter/engine/pull/19245) Reland "Implement PlatformViewsController.createOverlaySurface" (cla: yes, platform-android, waiting for tree to go green) [19257](https://github.com/flutter/engine/pull/19257) EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios) [19258](https://github.com/flutter/engine/pull/19258) Move OnDisplayPlatformView JNI call (cla: yes, platform-android) [19261](https://github.com/flutter/engine/pull/19261) Fix string format (cla: yes, platform-android) [19266](https://github.com/flutter/engine/pull/19266) Android native locale resolution algorithm (cla: yes, platform-android, waiting for tree to go green) [19279](https://github.com/flutter/engine/pull/19279) Initial work toward converting the FlutterView to use a FlutterImageView on demand (cla: yes, platform-android) [19295](https://github.com/flutter/engine/pull/19295) Position overlay layer views in PlatformViewsController.onDisplayOverlaySurface (cla: yes, platform-android) [19319](https://github.com/flutter/engine/pull/19319) Fix ImageReader "unable to acquire a buffer item" warnings in FlutterImageView (cla: yes, platform-android, waiting for tree to go green) [19325](https://github.com/flutter/engine/pull/19325) Fix hybrid composition bugs (cla: yes, platform-android, waiting for tree to go green) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) [19344](https://github.com/flutter/engine/pull/19344) Implement onDisplayPlatformView (cla: yes, platform-android, waiting for tree to go green) [19402](https://github.com/flutter/engine/pull/19402) Basic support for resizing overlay surfaces in hybrid composition (cla: yes, platform-android, waiting for tree to go green) [19421](https://github.com/flutter/engine/pull/19421) Update scenario UI screenshoots (cla: yes, platform-android) [19426](https://github.com/flutter/engine/pull/19426) Implement mutator stack on Android hybrid composition platform view (cla: yes, platform-android, waiting for tree to go green) [19427](https://github.com/flutter/engine/pull/19427) Synthesize touch events for hybrid views (cla: yes, platform-android) [19435](https://github.com/flutter/engine/pull/19435) Revert unintended change (cla: yes, platform-android, waiting for tree to go green) [19482](https://github.com/flutter/engine/pull/19482) FlutterView will handle dispatching all touch events to sub-views (cla: yes, platform-android) [19484](https://github.com/flutter/engine/pull/19484) Track motion events for reuse post gesture disambiguation (cla: yes, platform-android) [19487](https://github.com/flutter/engine/pull/19487) Switch to FlutterSurfaceView if no Android view is in the frame (cla: yes, platform-android, waiting for tree to go green) [19555](https://github.com/flutter/engine/pull/19555) Resubmit frame when the surface is switched (cla: yes, platform-android) [19560](https://github.com/flutter/engine/pull/19560) Add @Keep annotation to FlutterMutatorsStack (cla: yes, platform-android) [19608](https://github.com/flutter/engine/pull/19608) Propoagate Tap events on Android hybrid views (cla: yes, platform-android) #### platform-ios - 21 pull request(s) [18379](https://github.com/flutter/engine/pull/18379) Remove currentLocale prepend on iOS (cla: yes, platform-ios) [18645](https://github.com/flutter/engine/pull/18645) Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18752](https://github.com/flutter/engine/pull/18752) started polling the gpu usage (cla: yes, platform-ios) [18814](https://github.com/flutter/engine/pull/18814) Allow texture sampling quality control (cla: yes, platform-android, platform-ios) [18816](https://github.com/flutter/engine/pull/18816) Fixes UI freezes when multiple Flutter VC shared one engine (cla: yes, platform-ios) [18841](https://github.com/flutter/engine/pull/18841) Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios) [18938](https://github.com/flutter/engine/pull/18938) Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18950](https://github.com/flutter/engine/pull/18950) fix iOS builds (cla: yes, platform-ios) [18966](https://github.com/flutter/engine/pull/18966) updated FlutterViewControllerTest tests names (cla: yes, platform-ios) [19062](https://github.com/flutter/engine/pull/19062) Instantiate image codec doc fix (cla: yes, platform-ios) [19068](https://github.com/flutter/engine/pull/19068) [iOS] handle text plugin negative range (cla: yes, platform-ios, waiting for tree to go green) [19161](https://github.com/flutter/engine/pull/19161) [iOS] text input methods to only call updateEditState once (cla: yes, platform-ios) [19204](https://github.com/flutter/engine/pull/19204) Revert "Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view" (cla: yes, platform-ios) [19212](https://github.com/flutter/engine/pull/19212) Reland "Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view #19170" (cla: yes, platform-android, platform-ios) [19242](https://github.com/flutter/engine/pull/19242) Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green) [19249](https://github.com/flutter/engine/pull/19249) Made [SemanticsObject setAccessibilityContainer] a noop. (cla: yes, platform-ios) [19257](https://github.com/flutter/engine/pull/19257) EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios) [19289](https://github.com/flutter/engine/pull/19289) Call Dart_NotifyLowMemory more on iOS (cla: yes, platform-ios, waiting for tree to go green) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) [19556](https://github.com/flutter/engine/pull/19556) Changed iOS channels to start cleaning up the accessibility handler when the bridge is deleted (cla: yes, platform-ios) [19592](https://github.com/flutter/engine/pull/19592) Only attempt surface creation in viewDidLayoutSubviews if the application is active. (cla: yes, platform-ios) #### severe: performance - 16 pull request(s) [17175](https://github.com/flutter/engine/pull/17175) Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [17601](https://github.com/flutter/engine/pull/17601) Read SkSLs from asset (cla: yes, perf: speed, severe: performance) [17621](https://github.com/flutter/engine/pull/17621) Optimize static content scrolling (cla: yes, perf: speed, severe: performance) [17753](https://github.com/flutter/engine/pull/17753) [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance) [17914](https://github.com/flutter/engine/pull/17914) Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance) [18006](https://github.com/flutter/engine/pull/18006) [fuchsia] set vsync_offset based on config file (cla: yes, severe: performance) [18087](https://github.com/flutter/engine/pull/18087) [profiling] CPU Profiling support for iOS (cla: yes, severe: performance) [18132](https://github.com/flutter/engine/pull/18132) Revert again "Remove layer integral offset snapping" (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18164](https://github.com/flutter/engine/pull/18164) Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance) [18225](https://github.com/flutter/engine/pull/18225) Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18255](https://github.com/flutter/engine/pull/18255) Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance) [18439](https://github.com/flutter/engine/pull/18439) Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green) [18516](https://github.com/flutter/engine/pull/18516) [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance) [18829](https://github.com/flutter/engine/pull/18829) Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18838](https://github.com/flutter/engine/pull/18838) Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18945](https://github.com/flutter/engine/pull/18945) Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green) #### perf: speed - 13 pull request(s) [17175](https://github.com/flutter/engine/pull/17175) Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [17601](https://github.com/flutter/engine/pull/17601) Read SkSLs from asset (cla: yes, perf: speed, severe: performance) [17621](https://github.com/flutter/engine/pull/17621) Optimize static content scrolling (cla: yes, perf: speed, severe: performance) [17753](https://github.com/flutter/engine/pull/17753) [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance) [17866](https://github.com/flutter/engine/pull/17866) [web] Speedup color to css string 25% (cla: yes, perf: speed) [17914](https://github.com/flutter/engine/pull/17914) Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance) [18132](https://github.com/flutter/engine/pull/18132) Revert again "Remove layer integral offset snapping" (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18225](https://github.com/flutter/engine/pull/18225) Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18255](https://github.com/flutter/engine/pull/18255) Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance) [18439](https://github.com/flutter/engine/pull/18439) Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green) [18829](https://github.com/flutter/engine/pull/18829) Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18838](https://github.com/flutter/engine/pull/18838) Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18945](https://github.com/flutter/engine/pull/18945) Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green) #### platform-web - 13 pull request(s) [17495](https://github.com/flutter/engine/pull/17495) [web] Detect when the mouseup occurs outside of window (cla: yes, platform-web, waiting for tree to go green) [17580](https://github.com/flutter/engine/pull/17580) [web] Fix window.defaultRouteName (cla: yes, platform-web) [17595](https://github.com/flutter/engine/pull/17595) [web] Fix regression of pointer events on mobile browsers (cla: yes, platform-web) [17615](https://github.com/flutter/engine/pull/17615) [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web) [17742](https://github.com/flutter/engine/pull/17742) [web] Synthesize keyup event when the browser doesn't trigger a keyup (cla: yes, platform-web) [17933](https://github.com/flutter/engine/pull/17933) [web] Fix exception when getting boxes for rich text range (platform-web) [17936](https://github.com/flutter/engine/pull/17936) [web] Don't allow empty initial route (cla: yes, platform-web, waiting for tree to go green) [18032](https://github.com/flutter/engine/pull/18032) [web] Use correct shell operator to compare file limits (cla: yes, platform-web) [18034](https://github.com/flutter/engine/pull/18034) [web] First batch of unit tests for line breaker (cla: yes, platform-web) [18040](https://github.com/flutter/engine/pull/18040) [web] Add support for syncing unicode line break properties (cla: yes, platform-web) [18795](https://github.com/flutter/engine/pull/18795) [web] Line break algorithm using unicode properties (cla: yes, platform-web) [18969](https://github.com/flutter/engine/pull/18969) [web] Provide a hook to disable location strategy (cla: yes, platform-web) [19586](https://github.com/flutter/engine/pull/19586) [web][1/3] Start first batch of auto-generated (already passing) tests for line break (cla: yes, platform-web) #### platform-fuchsia - 6 pull request(s) [18625](https://github.com/flutter/engine/pull/18625) Add tests & --unopt to build_fuchsia_artifacts (cla: yes, platform-fuchsia) [19003](https://github.com/flutter/engine/pull/19003) Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia) [19132](https://github.com/flutter/engine/pull/19132) Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) [19399](https://github.com/flutter/engine/pull/19399) fuchsia: Fix profile build (cla: yes, platform-fuchsia) [19500](https://github.com/flutter/engine/pull/19500) fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia) #### perf: memory - 5 pull request(s) [18164](https://github.com/flutter/engine/pull/18164) Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance) [18516](https://github.com/flutter/engine/pull/18516) [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance) [18827](https://github.com/flutter/engine/pull/18827) Record path memory usage in SkPictures (cla: yes, perf: memory) [19067](https://github.com/flutter/engine/pull/19067) Make upscaling opt in for image decoding (cla: yes, perf: memory) [19283](https://github.com/flutter/engine/pull/19283) Make Shell::NotifyLowMemoryWarning trace (cla: yes, perf: memory, waiting for tree to go green) #### affects: engine - 3 pull request(s) [18492](https://github.com/flutter/engine/pull/18492) fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green) [19003](https://github.com/flutter/engine/pull/19003) Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia) [19132](https://github.com/flutter/engine/pull/19132) Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia) #### affects: tests - 3 pull request(s) [17615](https://github.com/flutter/engine/pull/17615) [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web) [18945](https://github.com/flutter/engine/pull/18945) Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) #### code health - 3 pull request(s) [19003](https://github.com/flutter/engine/pull/19003) Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia) [19219](https://github.com/flutter/engine/pull/19219) Use FixtureTest to remove duplicate code (cla: yes, code health) [19500](https://github.com/flutter/engine/pull/19500) fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia) #### affects: text input - 2 pull request(s) [17420](https://github.com/flutter/engine/pull/17420) Make DPAD movement consider grapheme clusters (affects: text input, cla: yes) [17509](https://github.com/flutter/engine/pull/17509) Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android) #### platform-windows - 2 pull request(s) [18878](https://github.com/flutter/engine/pull/18878) Refactor Win32FlutterWindow in preparation for UWP windowing implementation (cla: yes, platform-windows) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) #### bug - 1 pull request(s) [18492](https://github.com/flutter/engine/pull/18492) fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green) #### bug (regression) - 1 pull request(s) [18193](https://github.com/flutter/engine/pull/18193) Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android) #### crash - 1 pull request(s) [19280](https://github.com/flutter/engine/pull/19280) skip ios safari tests on felt level (cla: yes, crash) #### perf: app size - 1 pull request(s) [18439](https://github.com/flutter/engine/pull/18439) Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green) #### platform-linux - 1 pull request(s) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) #### platform-macos - 1 pull request(s) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) ### Merged PRs by labels for `flutter/plugins` #### submit queue - 3 pull request(s) [831](https://github.com/flutter/plugins/pull/831) [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue) [2634](https://github.com/flutter/plugins/pull/2634) [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness) [2743](https://github.com/flutter/plugins/pull/2743) reference apple sign in plugin from google sign in plugin (cla: yes, submit queue) #### waiting for test harness - 3 pull request(s) [2634](https://github.com/flutter/plugins/pull/2634) [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness) [2649](https://github.com/flutter/plugins/pull/2649) [google_sign_in_web] Ensure not-signed-in users are returned as `null`. (cla: yes, waiting for test harness) [2817](https://github.com/flutter/plugins/pull/2817) [image_picker_for_web] Remove android directory. (cla: yes, waiting for test harness) #### in review - 2 pull request(s) [2116](https://github.com/flutter/plugins/pull/2116) [google_sign_in] Add ability to return serverAuthCode (cla: yes, in review) [2755](https://github.com/flutter/plugins/pull/2755) [image_picker] fixes for iOS which doesn't present camera/albums with more complex navigation (cla: yes, in review) #### bugfix - 1 pull request(s) [2757](https://github.com/flutter/plugins/pull/2757) [url_launcher] Initialize previousAutomaticSystemUiAdjustment in launch (bugfix, cla: yes) #### documentation - 1 pull request(s) [2766](https://github.com/flutter/plugins/pull/2766) [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview) #### feature - 1 pull request(s) [831](https://github.com/flutter/plugins/pull/831) [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue) #### webview - 1 pull request(s) [2766](https://github.com/flutter/plugins/pull/2766) [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview) ## All merged pull requests ### Merged PRs in `flutter/flutter` There were 1243 pull requests. [42940](https://github.com/flutter/flutter/pull/42940) Revise Action API (cla: yes, f: cupertino, f: material design, framework, team) [50111](https://github.com/flutter/flutter/pull/50111) fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green) [50232](https://github.com/flutter/flutter/pull/50232) Docs 'a a' fix #1 (cla: yes, framework) [50236](https://github.com/flutter/flutter/pull/50236) Docs 'that that' fix #2 (cla: yes, framework, waiting for tree to go green) [50237](https://github.com/flutter/flutter/pull/50237) Docs 'that that' fix #3 (cla: yes, framework, waiting for tree to go green) [50412](https://github.com/flutter/flutter/pull/50412) Make CircularProgressIndicator's animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [50581](https://github.com/flutter/flutter/pull/50581) Implements --machine flag for `devices` command (cla: yes, tool) [50673](https://github.com/flutter/flutter/pull/50673) Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [50915](https://github.com/flutter/flutter/pull/50915) Implement barrierDismissible for `showCupertinoDialog` (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [51126](https://github.com/flutter/flutter/pull/51126) [flutter_tools] fix build for projects with watchOS companion app (cla: yes, tool) [51465](https://github.com/flutter/flutter/pull/51465) Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green) [51581](https://github.com/flutter/flutter/pull/51581) Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green) [51656](https://github.com/flutter/flutter/pull/51656) Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens) [52126](https://github.com/flutter/flutter/pull/52126) Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green) [52507](https://github.com/flutter/flutter/pull/52507) enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green) [52791](https://github.com/flutter/flutter/pull/52791) Read custom app project name from gradle.properties (cla: yes, team, tool) [52990](https://github.com/flutter/flutter/pull/52990) Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green) [52995](https://github.com/flutter/flutter/pull/52995) Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green) [53096](https://github.com/flutter/flutter/pull/53096) Devicelab tests (Chrome run, Web compile) for New Flutter Gallery (cla: yes, team, waiting for tree to go green) [53358](https://github.com/flutter/flutter/pull/53358) Disable `flutter_driver_screenshot_test_ios`. (cla: yes, team, waiting for tree to go green) [53374](https://github.com/flutter/flutter/pull/53374) [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53381](https://github.com/flutter/flutter/pull/53381) Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green) [53422](https://github.com/flutter/flutter/pull/53422) Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [53600](https://github.com/flutter/flutter/pull/53600) Restructure the Windows app template (cla: yes, team, tool) [53616](https://github.com/flutter/flutter/pull/53616) Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team) [53655](https://github.com/flutter/flutter/pull/53655) Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team) [53715](https://github.com/flutter/flutter/pull/53715) Support old and new git release tag formats (cla: yes, tool) [53765](https://github.com/flutter/flutter/pull/53765) [flutter_tools] re-enable debug extension (cla: yes, tool, waiting for tree to go green) [53773](https://github.com/flutter/flutter/pull/53773) [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool, waiting for tree to go green) [53785](https://github.com/flutter/flutter/pull/53785) [flutter_tools] Don't generate native registrant classes if no pluginClass is defined (cla: yes, tool, waiting for tree to go green) [53809](https://github.com/flutter/flutter/pull/53809) [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool) [53824](https://github.com/flutter/flutter/pull/53824) [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53837](https://github.com/flutter/flutter/pull/53837) Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green) [53843](https://github.com/flutter/flutter/pull/53843) Fix FlutterError.onError in debug mode (cla: yes, framework) [53848](https://github.com/flutter/flutter/pull/53848) [flutter_tools] don't compute hashes of well known artifacts (cla: yes, tool) [53853](https://github.com/flutter/flutter/pull/53853) [flutter_tools] remove indirection around App.framework production (cla: yes, tool) [53859](https://github.com/flutter/flutter/pull/53859) [flutter_tools] write SkSL file to local file (cla: yes, tool) [53868](https://github.com/flutter/flutter/pull/53868) [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool) [53875](https://github.com/flutter/flutter/pull/53875) Remove network images from cache on any exception during loading (a: images, cla: yes, framework) [53876](https://github.com/flutter/flutter/pull/53876) Update Windows and Linux plugin templates (cla: yes, tool) [53878](https://github.com/flutter/flutter/pull/53878) Fix diagnostics crash in profile mode (cla: yes, framework) [53879](https://github.com/flutter/flutter/pull/53879) Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review) [53880](https://github.com/flutter/flutter/pull/53880) Use `no` locale as synonym for `nb` (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green) [53882](https://github.com/flutter/flutter/pull/53882) Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool) [53888](https://github.com/flutter/flutter/pull/53888) Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green) [53890](https://github.com/flutter/flutter/pull/53890) Roll engine f56e678e7fa9..abc72933e70c (5 commits) (cla: yes, waiting for tree to go green) [53895](https://github.com/flutter/flutter/pull/53895) Roll engine abc72933e70c..f5127cc07a76 (2 commits) (cla: yes, waiting for tree to go green) [53902](https://github.com/flutter/flutter/pull/53902) [flutter_tools] Launch DevTools with 'v' (cla: yes, tool, waiting for tree to go green) [53916](https://github.com/flutter/flutter/pull/53916) Slider rebase work (cla: yes, f: material design, framework, team) [53928](https://github.com/flutter/flutter/pull/53928) [macos] build: add build-number and buid-name arguments (cla: yes, tool, waiting for tree to go green) [53936](https://github.com/flutter/flutter/pull/53936) Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool) [53940](https://github.com/flutter/flutter/pull/53940) Roll engine f5127cc07a76..83e493ae6262 (5 commits) (cla: yes, waiting for tree to go green) [53944](https://github.com/flutter/flutter/pull/53944) [flutter_tools] update asset manifest to use package_config instead of package_map (cla: yes, tool) [53945](https://github.com/flutter/flutter/pull/53945) [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green) [53949](https://github.com/flutter/flutter/pull/53949) [flutter_tools] also listen to web stderr stream (cla: yes, tool) [53951](https://github.com/flutter/flutter/pull/53951) Revert "[flutter_tools] update to package vm_service: electric boogaloo" (cla: yes, team, tool) [53952](https://github.com/flutter/flutter/pull/53952) [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team) [53954](https://github.com/flutter/flutter/pull/53954) [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green) [53956](https://github.com/flutter/flutter/pull/53956) Revert "[flutter_tools] surgically remove outputs from shared directory" (cla: yes, tool) [53957](https://github.com/flutter/flutter/pull/53957) [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool) [53959](https://github.com/flutter/flutter/pull/53959) Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green) [53960](https://github.com/flutter/flutter/pull/53960) [flutter_tools] Refresh VM state before executing hot reload (cla: yes, tool, waiting for tree to go green) [53962](https://github.com/flutter/flutter/pull/53962) [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool) [53963](https://github.com/flutter/flutter/pull/53963) revive the android_views test (cla: yes, team, waiting for tree to go green) [53966](https://github.com/flutter/flutter/pull/53966) Roll engine 83e493ae6262..09bc1fc45e50 (6 commits) (cla: yes, waiting for tree to go green) [53967](https://github.com/flutter/flutter/pull/53967) Temporarily mark web benchmarks as flaky (cla: yes, team) [53969](https://github.com/flutter/flutter/pull/53969) Use "measured_frame" instead of "CrRendererMain" to detect process ID (cla: yes, team) [53970](https://github.com/flutter/flutter/pull/53970) Roll engine 09bc1fc45e50..4cfbe45033ef (2 commits) (cla: yes, waiting for tree to go green) [53974](https://github.com/flutter/flutter/pull/53974) Remove strict repeat check from framework formatter (moved to engine) (cla: yes, framework) [53980](https://github.com/flutter/flutter/pull/53980) Test creation of Android AlertDialogs with a platform view context (cla: yes, team, waiting for tree to go green) [54015](https://github.com/flutter/flutter/pull/54015) Update roll_dev to work with new version numbers (cla: yes, team) [54018](https://github.com/flutter/flutter/pull/54018) Disable deploy_gallery-macos shard while we investigate cert issues (cla: yes) [54019](https://github.com/flutter/flutter/pull/54019) Roll engine 4cfbe45033ef..cb6fc305346f (8 commits) (cla: yes, waiting for tree to go green) [54023](https://github.com/flutter/flutter/pull/54023) disable MotionEvents test (cla: yes, team) [54032](https://github.com/flutter/flutter/pull/54032) Roll engine cb6fc305346f..2cc6a6d66d50 (1 commits) (cla: yes, waiting for tree to go green) [54045](https://github.com/flutter/flutter/pull/54045) Roll engine 2cc6a6d66d50..bd725935ecfa (2 commits) (cla: yes, waiting for tree to go green) [54056](https://github.com/flutter/flutter/pull/54056) Roll engine bd725935ecfa..f1f7d5db59f0 (1 commits) (cla: yes, waiting for tree to go green) [54057](https://github.com/flutter/flutter/pull/54057) Roll engine f1f7d5db59f0..6e4817f09c47 (1 commits) (cla: yes, waiting for tree to go green) [54064](https://github.com/flutter/flutter/pull/54064) Roll engine 6e4817f09c47..9b8dcc7ecffe (1 commits) (cla: yes, waiting for tree to go green) [54083](https://github.com/flutter/flutter/pull/54083) Add a switch to use WebSockets for web debug proxy (cla: yes, tool, waiting for tree to go green) [54110](https://github.com/flutter/flutter/pull/54110) Added 'barrierColor' and 'useSafeArea' parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green) [54111](https://github.com/flutter/flutter/pull/54111) Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine) [54114](https://github.com/flutter/flutter/pull/54114) Revert "[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo" (cla: yes, team, tool) [54119](https://github.com/flutter/flutter/pull/54119) Reland "iOS UITextInput autocorrection prompt (#45354)" (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54122](https://github.com/flutter/flutter/pull/54122) disable the "gpu" tracing category (cla: yes, team) [54123](https://github.com/flutter/flutter/pull/54123) [flutter_tools] Use gzip level 1 for devfs transfer compression (cla: yes, tool, waiting for tree to go green) [54125](https://github.com/flutter/flutter/pull/54125) remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team) [54128](https://github.com/flutter/flutter/pull/54128) fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green) [54131](https://github.com/flutter/flutter/pull/54131) flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool) [54132](https://github.com/flutter/flutter/pull/54132) [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool) [54133](https://github.com/flutter/flutter/pull/54133) [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response) [54140](https://github.com/flutter/flutter/pull/54140) iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios) [54144](https://github.com/flutter/flutter/pull/54144) drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54148](https://github.com/flutter/flutter/pull/54148) Roll engine df257e59c241..ab434c5540f5 (5 commits) (cla: yes) [54150](https://github.com/flutter/flutter/pull/54150) Don't checkout master in roll_dev (cla: yes, team) [54152](https://github.com/flutter/flutter/pull/54152) [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green) [54153](https://github.com/flutter/flutter/pull/54153) Roll engine ab434c5540f5..2fab00eb8352 (3 commits) (cla: yes, waiting for tree to go green) [54154](https://github.com/flutter/flutter/pull/54154) Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green) [54155](https://github.com/flutter/flutter/pull/54155) [cleanup] Remove unused script (cla: yes, team) [54156](https://github.com/flutter/flutter/pull/54156) Roll engine 2fab00eb8352..49891e065313 (1 commits) (cla: yes, waiting for tree to go green) [54159](https://github.com/flutter/flutter/pull/54159) Re-enable deploy_gallery after renewing the distribution certs (cla: yes, waiting for tree to go green) [54163](https://github.com/flutter/flutter/pull/54163) Enable the android_views AlertDialog test (cla: yes, team) [54171](https://github.com/flutter/flutter/pull/54171) System mouse cursors (a: tests, cla: yes, f: material design, framework) [54176](https://github.com/flutter/flutter/pull/54176) Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool) [54181](https://github.com/flutter/flutter/pull/54181) Roll pinned xml and petitparser versions (cla: yes, team, waiting for tree to go green) [54185](https://github.com/flutter/flutter/pull/54185) [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green) [54206](https://github.com/flutter/flutter/pull/54206) Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green) [54207](https://github.com/flutter/flutter/pull/54207) Roll engine 49891e065313..47f17a9ec33d (1 commits) (cla: yes, waiting for tree to go green) [54208](https://github.com/flutter/flutter/pull/54208) [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool) [54209](https://github.com/flutter/flutter/pull/54209) Revert "Re-enable deploy_gallery after renewing the distribution certs" (cla: yes) [54212](https://github.com/flutter/flutter/pull/54212) Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green) [54214](https://github.com/flutter/flutter/pull/54214) re-enable `android_view_test` (cla: yes, team, waiting for tree to go green) [54215](https://github.com/flutter/flutter/pull/54215) Update .cirrus.yml (cla: yes) [54217](https://github.com/flutter/flutter/pull/54217) Fix `frameworkVersionFor` for flutter doctor and usage (cla: yes, tool, waiting for tree to go green) [54218](https://github.com/flutter/flutter/pull/54218) [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green) [54219](https://github.com/flutter/flutter/pull/54219) Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green) [54220](https://github.com/flutter/flutter/pull/54220) [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework) [54225](https://github.com/flutter/flutter/pull/54225) Roll engine 47f17a9ec33d..47c607a0f191 (4 commits) (cla: yes, waiting for tree to go green) [54227](https://github.com/flutter/flutter/pull/54227) [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green) [54228](https://github.com/flutter/flutter/pull/54228) [flutter_tools] allow passing non-config inputs (cla: yes, tool) [54229](https://github.com/flutter/flutter/pull/54229) Allow ListTiles to be autofocused (cla: yes) [54232](https://github.com/flutter/flutter/pull/54232) Roll engine 47c607a0f191..394ac6b4845d (4 commits) (cla: yes, waiting for tree to go green) [54233](https://github.com/flutter/flutter/pull/54233) [flutter_tools] ensure build fails if asset files are missing (cla: yes, tool) [54234](https://github.com/flutter/flutter/pull/54234) Fix right alignment TWB longestLine (a: typography, cla: yes, framework) [54236](https://github.com/flutter/flutter/pull/54236) Disable tracing for non-frame based Web benchmarks (cla: yes, team, waiting for tree to go green) [54239](https://github.com/flutter/flutter/pull/54239) Roll engine 394ac6b4845d..5b4b1f33c6d6 (3 commits) (cla: yes, waiting for tree to go green) [54243](https://github.com/flutter/flutter/pull/54243) Add API to services package that overrides HTTP ban (cla: yes, framework) [54247](https://github.com/flutter/flutter/pull/54247) [versions] update versions (cla: yes, team) [54248](https://github.com/flutter/flutter/pull/54248) Re-enable deploy_gallery (cla: yes, waiting for tree to go green) [54258](https://github.com/flutter/flutter/pull/54258) [DecorationImage] adds scale property (cla: yes, framework, waiting for tree to go green) [54286](https://github.com/flutter/flutter/pull/54286) Revert bindings dependency workaround (cla: yes, framework, waiting for tree to go green) [54291](https://github.com/flutter/flutter/pull/54291) Minimal implementation of FlutterError.toString for release mode (cla: yes, framework, waiting for tree to go green) [54294](https://github.com/flutter/flutter/pull/54294) [flutter_tools] remove extra same repo check (cla: yes, tool) [54299](https://github.com/flutter/flutter/pull/54299) [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool) [54301](https://github.com/flutter/flutter/pull/54301) [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool) [54305](https://github.com/flutter/flutter/pull/54305) Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green) [54306](https://github.com/flutter/flutter/pull/54306) Fix initial value for highlight mode on desktop platforms. (cla: yes, framework) [54307](https://github.com/flutter/flutter/pull/54307) Revert "re-enable `android_view_test`" (cla: yes) [54312](https://github.com/flutter/flutter/pull/54312) fix and re-land "re-enable `android_view_test` (#54214)" (cla: yes, team, waiting for tree to go green) [54313](https://github.com/flutter/flutter/pull/54313) [flutter_tools] fix routing test (cla: yes, tool) [54314](https://github.com/flutter/flutter/pull/54314) [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green) [54317](https://github.com/flutter/flutter/pull/54317) PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green) [54320](https://github.com/flutter/flutter/pull/54320) [flutter_tools] make verbose macOS builds actually verbose (cla: yes, tool) [54322](https://github.com/flutter/flutter/pull/54322) Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green) [54328](https://github.com/flutter/flutter/pull/54328) [flutter_tools] use new output location for the apk (cla: yes, tool, waiting for tree to go green) [54334](https://github.com/flutter/flutter/pull/54334) [versions] update all flutter versions (cla: yes, team, waiting for tree to go green) [54337](https://github.com/flutter/flutter/pull/54337) [flutter_tools] Move service methods to VmService extension methods (cla: yes, tool) [54373](https://github.com/flutter/flutter/pull/54373) Roll engine 5b4b1f33c6d6..916f014d1cfb (24 commits) (cla: yes, waiting for tree to go green) [54374](https://github.com/flutter/flutter/pull/54374) [flutter_tools] switch benchmark to isolate runnable (cla: yes, tool) [54383](https://github.com/flutter/flutter/pull/54383) Revert "Roll engine 5b4b1f33c6d6..916f014d1cfb (24 commits)" (cla: yes, engine) [54387](https://github.com/flutter/flutter/pull/54387) Revert "fix and re-land "re-enable `android_view_test` (#54214)"" (cla: yes, team) [54389](https://github.com/flutter/flutter/pull/54389) [flutter_tools] disable cache in devices test (cla: yes, tool) [54394](https://github.com/flutter/flutter/pull/54394) replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [54396](https://github.com/flutter/flutter/pull/54396) [web] Don't collect trace info in the color grid benchmark (cla: yes, platform-web, team) [54401](https://github.com/flutter/flutter/pull/54401) Cleanup in gen_l10n files (a: internationalization, cla: yes, team) [54403](https://github.com/flutter/flutter/pull/54403) Reland re-enable `android_view_test` #54214 (cla: yes, team, waiting for tree to go green) [54407](https://github.com/flutter/flutter/pull/54407) Don't import plugins that don't support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green) [54409](https://github.com/flutter/flutter/pull/54409) Roll engine 5b4b1f33c6d6..9101b63f9872 (30 commits) (cla: yes, waiting for tree to go green) [54414](https://github.com/flutter/flutter/pull/54414) [flutter_tools] attempt to fix benchmark mode test (cla: yes, tool) [54428](https://github.com/flutter/flutter/pull/54428) Add .last_build_id to gitignore (cla: yes, tool, waiting for tree to go green) [54442](https://github.com/flutter/flutter/pull/54442) Add null check in TextStyle.apply for TextBaseline (cla: yes, framework, waiting for tree to go green) [54467](https://github.com/flutter/flutter/pull/54467) [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool) [54471](https://github.com/flutter/flutter/pull/54471) fix visual density prefer_const_constructors lint (cla: yes, team) [54474](https://github.com/flutter/flutter/pull/54474) Roll engine 9101b63f9872..49f7cd04ac57 (14 commits) (cla: yes, waiting for tree to go green) [54478](https://github.com/flutter/flutter/pull/54478) Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool) [54479](https://github.com/flutter/flutter/pull/54479) Enable gesture recognizer in selectable rich text (cla: yes, framework, waiting for tree to go green) [54480](https://github.com/flutter/flutter/pull/54480) Revert "[flutter_driver] Add SceneDisplayLag stats to timeline summar… (a: tests, cla: yes, framework, team) [54481](https://github.com/flutter/flutter/pull/54481) Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework) [54488](https://github.com/flutter/flutter/pull/54488) Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool) [54490](https://github.com/flutter/flutter/pull/54490) [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green) [54492](https://github.com/flutter/flutter/pull/54492) Roll engine 49f7cd04ac57..adb4f9e9751b (2 commits) (cla: yes, waiting for tree to go green) [54493](https://github.com/flutter/flutter/pull/54493) Use scheduleTask for adding licenses (cla: yes, framework, waiting for tree to go green) [54494](https://github.com/flutter/flutter/pull/54494) Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green) [54496](https://github.com/flutter/flutter/pull/54496) Roll engine adb4f9e9751b..68fd83348896 (2 commits) (cla: yes, waiting for tree to go green) [54497](https://github.com/flutter/flutter/pull/54497) [devicelab] Do not wait for connections after process has exited (cla: yes, team, waiting for tree to go green) [54505](https://github.com/flutter/flutter/pull/54505) mark web benchmarks as not flaky (cla: yes, team) [54508](https://github.com/flutter/flutter/pull/54508) Roll engine 68fd83348896..bed48056a651 (2 commits) (cla: yes, waiting for tree to go green) [54513](https://github.com/flutter/flutter/pull/54513) Roll engine bed48056a651..d6c1398a3f06 (2 commits) (cla: yes, waiting for tree to go green) [54519](https://github.com/flutter/flutter/pull/54519) Revert "Add API to services package that overrides HTTP ban" (cla: yes, framework) [54522](https://github.com/flutter/flutter/pull/54522) Reland "Add API to services package that overrides HTTP ban (#54243)" (cla: yes, framework, team, waiting for tree to go green) [54555](https://github.com/flutter/flutter/pull/54555) [flutter_tools] refactor FlutterManifest to be context-free (cla: yes, tool, waiting for tree to go green) [54562](https://github.com/flutter/flutter/pull/54562) Roll engine d6c1398a3f06..f0e489600aca (4 commits) (cla: yes, waiting for tree to go green) [54568](https://github.com/flutter/flutter/pull/54568) Roll engine f0e489600aca..e66389398e36 (1 commits) (cla: yes, waiting for tree to go green) [54570](https://github.com/flutter/flutter/pull/54570) Roll engine e66389398e36..beb8a7ec48f6 (1 commits) (cla: yes, waiting for tree to go green) [54603](https://github.com/flutter/flutter/pull/54603) Roll engine beb8a7ec48f6..aef9986cf14a (4 commits) (cla: yes, waiting for tree to go green) [54613](https://github.com/flutter/flutter/pull/54613) [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green) [54617](https://github.com/flutter/flutter/pull/54617) [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool) [54618](https://github.com/flutter/flutter/pull/54618) Revert "[devicelab] Do not wait for connections after process has exited" (cla: yes, team) [54622](https://github.com/flutter/flutter/pull/54622) Roll engine aef9986cf14a..cc7d2857a94e (1 commits) (cla: yes, waiting for tree to go green) [54624](https://github.com/flutter/flutter/pull/54624) Roll engine cc7d2857a94e..926f6fcbbc10 (1 commits) (cla: yes, waiting for tree to go green) [54638](https://github.com/flutter/flutter/pull/54638) Roll engine 926f6fcbbc10..521c1d443125 (2 commits) (cla: yes, waiting for tree to go green) [54640](https://github.com/flutter/flutter/pull/54640) Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green) [54645](https://github.com/flutter/flutter/pull/54645) remove outdated build_runner instructions (cla: yes, tool, waiting for tree to go green) [54649](https://github.com/flutter/flutter/pull/54649) Roll engine 521c1d443125..405fe37dcd10 (1 commits) (cla: yes, waiting for tree to go green) [54670](https://github.com/flutter/flutter/pull/54670) Updated Nested SingleChildScrollView test for clarity (cla: yes, framework, waiting for tree to go green) [54674](https://github.com/flutter/flutter/pull/54674) Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green) [54676](https://github.com/flutter/flutter/pull/54676) print intermediate and raw A/B results when not silent (cla: yes, team) [54678](https://github.com/flutter/flutter/pull/54678) Make Web shard count configurable via WEB_SHARD_COUNT (cla: yes, team, waiting for tree to go green) [54679](https://github.com/flutter/flutter/pull/54679) [flutter_tools] Handle empty gzip file on Windows (cla: yes, tool) [54682](https://github.com/flutter/flutter/pull/54682) [flutter_tools] update coverage collector to use vmservice api (cla: yes, tool, waiting for tree to go green) [54685](https://github.com/flutter/flutter/pull/54685) Roll engine 405fe37dcd10..deef2663aca4 (2 commits) (cla: yes, waiting for tree to go green) [54691](https://github.com/flutter/flutter/pull/54691) Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool) [54692](https://github.com/flutter/flutter/pull/54692) [flutter_tools] support machine and coverage together but for real (cla: yes, tool, waiting for tree to go green) [54697](https://github.com/flutter/flutter/pull/54697) fix APK location for devicelab (cla: yes, team) [54698](https://github.com/flutter/flutter/pull/54698) Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green) [54700](https://github.com/flutter/flutter/pull/54700) [flutter_tools] remove runFromSource, move runInView to vm_service extension (cla: yes, tool, waiting for tree to go green) [54703](https://github.com/flutter/flutter/pull/54703) fix run release test APK location (cla: yes, team) [54706](https://github.com/flutter/flutter/pull/54706) Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green) [54714](https://github.com/flutter/flutter/pull/54714) [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [54715](https://github.com/flutter/flutter/pull/54715) [flutter_tools] support any as a special web-hostname (cla: yes, tool, waiting for tree to go green) [54717](https://github.com/flutter/flutter/pull/54717) [flutter_tools] don't elapse real time during fallback test (cla: yes, tool) [54741](https://github.com/flutter/flutter/pull/54741) [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green) [54756](https://github.com/flutter/flutter/pull/54756) Fix/set mocks defaults (cla: yes, tool, waiting for tree to go green) [54779](https://github.com/flutter/flutter/pull/54779) Revert "Reland "Add API to services package that overrides HTTP ban (#54243)"" (cla: yes, framework) [54783](https://github.com/flutter/flutter/pull/54783) [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green) [54786](https://github.com/flutter/flutter/pull/54786) [flutter_tools] fix response format of flutterVersion, flutterMemoryInfo (cla: yes, tool) [54787](https://github.com/flutter/flutter/pull/54787) force upgraded package dependencies (cla: yes, team) [54798](https://github.com/flutter/flutter/pull/54798) ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green) [54805](https://github.com/flutter/flutter/pull/54805) [flutter_tools] dont suppress analytics from re-entrant macos build (cla: yes, tool, waiting for tree to go green) [54806](https://github.com/flutter/flutter/pull/54806) Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [54881](https://github.com/flutter/flutter/pull/54881) Add COM initializition to Windows template (cla: yes, tool) [54883](https://github.com/flutter/flutter/pull/54883) Remove outliers in Web benchmarks to reduce noise; add visualization (cla: yes, team) [54884](https://github.com/flutter/flutter/pull/54884) [flutter_tools] Provide global options with subcommand help text (cla: yes, tool) [54887](https://github.com/flutter/flutter/pull/54887) Specify the devicelab task simulator runtime to support <Xcode 11.4 (cla: yes, team) [54891](https://github.com/flutter/flutter/pull/54891) Mark ios_app_with_watch_companion as flaky (cla: yes, team, team: infra) [54893](https://github.com/flutter/flutter/pull/54893) Fix the stage of ios_app_with_watch_companion (cla: yes, team) [54894](https://github.com/flutter/flutter/pull/54894) Update dartdoc to 0.30.4. (cla: yes, team, waiting for tree to go green) [54899](https://github.com/flutter/flutter/pull/54899) Pass in runtime to ios_app_with_watch_companion simctl create (cla: yes, team, team: infra) [54902](https://github.com/flutter/flutter/pull/54902) Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [54903](https://github.com/flutter/flutter/pull/54903) benchmark animation performance of Opacity widget (cla: yes, team) [54908](https://github.com/flutter/flutter/pull/54908) add benchmark for picture recording (cla: yes, team) [54909](https://github.com/flutter/flutter/pull/54909) [flutter_tools] fix multiple defines in flutter tooling, web (cla: yes, team, tool) [54912](https://github.com/flutter/flutter/pull/54912) Move doctor into globals (cla: yes, team, tool) [54916](https://github.com/flutter/flutter/pull/54916) Convert expression evaluation exceptions to errors (cla: yes, team, tool, waiting for tree to go green) [54918](https://github.com/flutter/flutter/pull/54918) [flutter_tools] ensure EventPrinter handles a null parent (cla: yes, tool, waiting for tree to go green) [54919](https://github.com/flutter/flutter/pull/54919) Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework) [54920](https://github.com/flutter/flutter/pull/54920) [flutter_tools] remove Isolate implementations of vm_service methods (cla: yes, tool) [54923](https://github.com/flutter/flutter/pull/54923) [flutter_tools] default tree-shake-icons to enabled and improve performance (cla: yes, tool) [54924](https://github.com/flutter/flutter/pull/54924) CrashReportSender dependency injection (cla: yes, team, tool) [54952](https://github.com/flutter/flutter/pull/54952) Roll pinned package versions (cla: yes, team, waiting for tree to go green) [54959](https://github.com/flutter/flutter/pull/54959) fixed flutter run for projects containing a watchOS companion (cla: yes, tool) [54967](https://github.com/flutter/flutter/pull/54967) Revert "[flutter_tools] fix multiple defines in flutter tooling, web" (cla: yes, team, tool) [54973](https://github.com/flutter/flutter/pull/54973) [flutter_tools] Reland: fix multiple dart defines (cla: yes, team, tool) [54978](https://github.com/flutter/flutter/pull/54978) Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green) [54981](https://github.com/flutter/flutter/pull/54981) disable hit testing if the CompositedTransformFollower is hidden when… (cla: yes, framework) [54985](https://github.com/flutter/flutter/pull/54985) Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green) [54987](https://github.com/flutter/flutter/pull/54987) git pull --ff-only (cla: yes, tool, waiting for tree to go green) [54989](https://github.com/flutter/flutter/pull/54989) Support armv7s architecture (cla: yes, platform-ios, tool) [54991](https://github.com/flutter/flutter/pull/54991) Mark ios_app_with_watch_companion as not flaky (a: tests, cla: yes, team) [54994](https://github.com/flutter/flutter/pull/54994) flutter_gallery__memory_nav and flutter_gallery__back_button_memory are flaky (cla: yes, team) [54997](https://github.com/flutter/flutter/pull/54997) Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [55001](https://github.com/flutter/flutter/pull/55001) FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green) [55002](https://github.com/flutter/flutter/pull/55002) Move GitHubTemplateCreator into reporting library (cla: yes, team, tool) [55003](https://github.com/flutter/flutter/pull/55003) Add flag to enable expression evaluation for web (cla: yes, tool) [55012](https://github.com/flutter/flutter/pull/55012) Even more vm service refactor (cla: yes, tool) [55044](https://github.com/flutter/flutter/pull/55044) Created method to report ImageChunkEvents (cla: yes, framework, waiting for tree to go green) [55047](https://github.com/flutter/flutter/pull/55047) Roll engine f4d6ce13dcc4..b5aedb30fa46 (3 commits) (cla: yes, waiting for tree to go green) [55054](https://github.com/flutter/flutter/pull/55054) Roll engine b5aedb30fa46..dbf16099f186 (1 commits) (cla: yes, waiting for tree to go green) [55057](https://github.com/flutter/flutter/pull/55057) validate engine hash (cla: yes, team) [55062](https://github.com/flutter/flutter/pull/55062) Roll engine dbf16099f186..8abd9e2cac14 (4 commits) (cla: yes, waiting for tree to go green) [55064](https://github.com/flutter/flutter/pull/55064) Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework) [55068](https://github.com/flutter/flutter/pull/55068) Test touch for Android windows added by platform views (cla: yes, team) [55069](https://github.com/flutter/flutter/pull/55069) Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green) [55073](https://github.com/flutter/flutter/pull/55073) Roll engine 8abd9e2cac14..f9e53c72c656 (4 commits) (cla: yes, waiting for tree to go green) [55075](https://github.com/flutter/flutter/pull/55075) Roll engine f9e53c72c656..bbe806b002f9 (1 commits) (cla: yes, waiting for tree to go green) [55078](https://github.com/flutter/flutter/pull/55078) Roll engine bbe806b002f9..204adaf2686a (2 commits) (cla: yes, waiting for tree to go green) [55083](https://github.com/flutter/flutter/pull/55083) Roll engine 204adaf2686a..a5e0b2f2f237 (2 commits) (cla: yes, waiting for tree to go green) [55085](https://github.com/flutter/flutter/pull/55085) [flutter_tools] check if requireloader is defined (cla: yes, tool, waiting for tree to go green) [55122](https://github.com/flutter/flutter/pull/55122) Roll engine a5e0b2f2f237..2b75c6d111f7 (8 commits) (cla: yes, waiting for tree to go green) [55125](https://github.com/flutter/flutter/pull/55125) prettify the flutter web bootstrap file (cla: yes, tool) [55126](https://github.com/flutter/flutter/pull/55126) web benchmarks: handle no outliers case (cla: yes, team, waiting for tree to go green, work in progress; do not review) [55130](https://github.com/flutter/flutter/pull/55130) Enable android_views window touch test (cla: yes, team) [55141](https://github.com/flutter/flutter/pull/55141) Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green) [55152](https://github.com/flutter/flutter/pull/55152) Support tags when running tests from command line (cla: yes, team, tool) [55160](https://github.com/flutter/flutter/pull/55160) [flutter_tools] refactor Chrome launch logic to remove globals/statics (cla: yes, tool) [55167](https://github.com/flutter/flutter/pull/55167) Roll engine 2b75c6d111f7..7ae7ff441935 (8 commits) (cla: yes, waiting for tree to go green) [55181](https://github.com/flutter/flutter/pull/55181) Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [55187](https://github.com/flutter/flutter/pull/55187) [flutter_tools] migrate windows to assemble (cla: yes, tool) [55201](https://github.com/flutter/flutter/pull/55201) Migrating old Gallery to new Slider (cla: yes, f: material design, team) [55207](https://github.com/flutter/flutter/pull/55207) Roll engine 7ae7ff441935..189ec1e7c430 (6 commits) (cla: yes, waiting for tree to go green) [55212](https://github.com/flutter/flutter/pull/55212) [flutter_tools] fix type error in symbolize (cla: yes, tool, waiting for tree to go green) [55217](https://github.com/flutter/flutter/pull/55217) Roll engine 189ec1e7c430..a35f24e2d0e3 (1 commits) (cla: yes, waiting for tree to go green) [55220](https://github.com/flutter/flutter/pull/55220) Revert "validate engine hash" (cla: yes, team) [55221](https://github.com/flutter/flutter/pull/55221) [ExpansionTile] adds padding property (cla: yes, f: material design, framework) [55223](https://github.com/flutter/flutter/pull/55223) Test engine version hash, but skip for Dart HHH bot (cla: yes, team, waiting for tree to go green) [55225](https://github.com/flutter/flutter/pull/55225) Remove the unused getFlutter function (cla: yes, team, waiting for tree to go green) [55228](https://github.com/flutter/flutter/pull/55228) Roll engine a35f24e2d0e3..ae311ca4da5a (2 commits) (cla: yes, waiting for tree to go green) [55230](https://github.com/flutter/flutter/pull/55230) Make Action.enabled be isEnabled(Intent intent) instead. (cla: yes, framework, team) [55243](https://github.com/flutter/flutter/pull/55243) Roll engine ae311ca4da5a..fa8b9a53807e (3 commits) (cla: yes, waiting for tree to go green) [55244](https://github.com/flutter/flutter/pull/55244) [flutter_tools] remove PackageMap and finish PackageConfig migration (cla: yes, tool) [55246](https://github.com/flutter/flutter/pull/55246) Handle surrogate pairs in RenderEditable (cla: yes, framework) [55248](https://github.com/flutter/flutter/pull/55248) Roll engine fa8b9a53807e..b6bb7e796afa (1 commits) (cla: yes, waiting for tree to go green) [55250](https://github.com/flutter/flutter/pull/55250) flutter_tools: Prefer using .of() over .from() when possible (cla: yes, tool) [55253](https://github.com/flutter/flutter/pull/55253) Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool) [55256](https://github.com/flutter/flutter/pull/55256) Roll engine b6bb7e796afa..2bde4f0ae430 (2 commits) (cla: yes, waiting for tree to go green) [55257](https://github.com/flutter/flutter/pull/55257) Add DragTarget callback onAcceptDetails, plus helper class DragTarget… (cla: yes, framework, waiting for tree to go green) [55260](https://github.com/flutter/flutter/pull/55260) Fine tune the Y offset of OutlineInputBorder's floating label (cla: yes, f: material design, framework, waiting for tree to go green) [55263](https://github.com/flutter/flutter/pull/55263) Roll engine 2bde4f0ae430..1dba1ef1f81b (1 commits) (cla: yes, waiting for tree to go green) [55303](https://github.com/flutter/flutter/pull/55303) Fixed a typo in the docs. (cla: yes, framework, waiting for tree to go green) [55310](https://github.com/flutter/flutter/pull/55310) Roll engine 1dba1ef1f81b..e5cd1630670e (11 commits) (cla: yes, waiting for tree to go green) [55314](https://github.com/flutter/flutter/pull/55314) Roll engine e5cd1630670e..cf78b89c3fbb (1 commits) (cla: yes, waiting for tree to go green) [55315](https://github.com/flutter/flutter/pull/55315) Add error message about missing unzip utility (cla: yes, tool) [55328](https://github.com/flutter/flutter/pull/55328) Roll engine cf78b89c3fbb..23897e064f9e (2 commits) (cla: yes, waiting for tree to go green) [55331](https://github.com/flutter/flutter/pull/55331) extract engine sub-metrics; change reported metrics (cla: yes, team) [55333](https://github.com/flutter/flutter/pull/55333) Use kIsWeb instead of private _kIsBrowser in text_input.dart (cla: yes, framework, waiting for tree to go green) [55335](https://github.com/flutter/flutter/pull/55335) Update dartdoc version to 0.31.0 (cla: yes, team, waiting for tree to go green) [55336](https://github.com/flutter/flutter/pull/55336) Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green) [55341](https://github.com/flutter/flutter/pull/55341) [flutter_tools] migrate FlutterView to new vm_service (cla: yes, tool) [55342](https://github.com/flutter/flutter/pull/55342) [flutter_tools] check first for stable tag, then dev tag (cla: yes, tool) [55346](https://github.com/flutter/flutter/pull/55346) Roll engine 23897e064f9e..202f2006df38 (5 commits) (cla: yes, waiting for tree to go green) [55348](https://github.com/flutter/flutter/pull/55348) [flutter_tools] unpin package config and update (cla: yes, team, tool) [55350](https://github.com/flutter/flutter/pull/55350) Roll engine 202f2006df38..b1c51cfe7870 (2 commits) (cla: yes, waiting for tree to go green) [55351](https://github.com/flutter/flutter/pull/55351) Roll engine b1c51cfe7870..6bc619fd66c5 (3 commits) (cla: yes, waiting for tree to go green) [55353](https://github.com/flutter/flutter/pull/55353) remove intellij references to the v1 embedding jars now that the v2 embeddings are referenced via maven (cla: yes, tool) [55354](https://github.com/flutter/flutter/pull/55354) Roll engine 6bc619fd66c5..18df41928a77 (1 commits) (cla: yes, waiting for tree to go green) [55356](https://github.com/flutter/flutter/pull/55356) Roll engine 18df41928a77..8d7071ea463a (1 commits) (cla: yes, waiting for tree to go green) [55363](https://github.com/flutter/flutter/pull/55363) Roll engine 8d7071ea463a..4616931ead74 (1 commits) (cla: yes, waiting for tree to go green) [55368](https://github.com/flutter/flutter/pull/55368) Roll engine 4616931ead74..ef05a18c0b01 (1 commits) (cla: yes, waiting for tree to go green) [55385](https://github.com/flutter/flutter/pull/55385) [flutter_tools] fix version tag `v` stripping (cla: yes, tool) [55390](https://github.com/flutter/flutter/pull/55390) Roll engine ef05a18c0b01..f13ec7431c3e (2 commits) (cla: yes, waiting for tree to go green) [55393](https://github.com/flutter/flutter/pull/55393) Roll engine f13ec7431c3e..cb549c41d314 (2 commits) (cla: yes, waiting for tree to go green) [55401](https://github.com/flutter/flutter/pull/55401) Optimize fuchsia test script. (CQ+1, cla: yes, team, waiting for tree to go green) [55405](https://github.com/flutter/flutter/pull/55405) Roll engine cb549c41d314..ace381d76c60 (3 commits) (cla: yes, waiting for tree to go green) [55408](https://github.com/flutter/flutter/pull/55408) Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green) [55412](https://github.com/flutter/flutter/pull/55412) [flutter_tools] remove globals from pub (cla: yes, tool) [55413](https://github.com/flutter/flutter/pull/55413) Revert "[flutter_tools] default tree-shake-icons to enabled and improve performance" (cla: yes, team, tool) [55414](https://github.com/flutter/flutter/pull/55414) LayoutBuilder: skip calling builder when constraints are the same (cla: yes, framework, team) [55415](https://github.com/flutter/flutter/pull/55415) Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55416](https://github.com/flutter/flutter/pull/55416) Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green) [55417](https://github.com/flutter/flutter/pull/55417) [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool) [55418](https://github.com/flutter/flutter/pull/55418) Roll engine ace381d76c60..d3f1c08f52b8 (1 commits) (cla: yes, waiting for tree to go green) [55420](https://github.com/flutter/flutter/pull/55420) [flutter_tools] fix package config invalidation (cla: yes, tool, waiting for tree to go green) [55433](https://github.com/flutter/flutter/pull/55433) Roll packages, drop custom timeline parsing for tracing tests (cla: yes, team, waiting for tree to go green) [55436](https://github.com/flutter/flutter/pull/55436) [flutter_tools] quality pass on windows build (cla: yes, tool) [55461](https://github.com/flutter/flutter/pull/55461) Roll engine d3f1c08f52b8..feb94f6c9774 (2 commits) (cla: yes, waiting for tree to go green) [55469](https://github.com/flutter/flutter/pull/55469) Fix compute intrinsic size for wrap (cla: yes, framework) [55470](https://github.com/flutter/flutter/pull/55470) Roll engine feb94f6c9774..fe14e03236ca (2 commits) (cla: yes, waiting for tree to go green) [55480](https://github.com/flutter/flutter/pull/55480) Roll engine fe14e03236ca..8fff8da38da2 (1 commits) (cla: yes, waiting for tree to go green) [55482](https://github.com/flutter/flutter/pull/55482) Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green) [55484](https://github.com/flutter/flutter/pull/55484) Revert "Fix FlutterError.onError in debug mode (#53843)" (a: tests, cla: yes, f: material design, framework) [55485](https://github.com/flutter/flutter/pull/55485) Use correct path for `flutter` in `flutter_gallery_v2_chrome_run_test.dart` (cla: yes, team, waiting for tree to go green) [55486](https://github.com/flutter/flutter/pull/55486) Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green) [55492](https://github.com/flutter/flutter/pull/55492) Roll engine 8fff8da38da2..a544b45f26cc (3 commits) (cla: yes, waiting for tree to go green) [55494](https://github.com/flutter/flutter/pull/55494) Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green) [55499](https://github.com/flutter/flutter/pull/55499) fixed flutter pub get failure in tests (cla: yes, tool, waiting for tree to go green) [55500](https://github.com/flutter/flutter/pull/55500) Relands Fix FlutterError.onError in debug mode (cla: yes, framework, waiting for tree to go green) [55510](https://github.com/flutter/flutter/pull/55510) [flutter_tools] precache and unpack updates for desktop release artifacts (cla: yes, tool) [55513](https://github.com/flutter/flutter/pull/55513) [flutter_tools] Delete system temp entries on fatal signals (cla: yes, tool, waiting for tree to go green) [55521](https://github.com/flutter/flutter/pull/55521) Revert "Roll engine 8fff8da38da2..a544b45f26cc (3 commits)" (cla: yes, engine) [55522](https://github.com/flutter/flutter/pull/55522) Roll engine 8fff8da38da2..d2ec21221e29 (8 commits) (cla: yes, waiting for tree to go green) [55527](https://github.com/flutter/flutter/pull/55527) Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens) [55531](https://github.com/flutter/flutter/pull/55531) [flutter_tools] set test directory base as additional root, allow running without index.html (cla: yes, tool) [55556](https://github.com/flutter/flutter/pull/55556) [flutter_tools] quality pass on Linux build (cla: yes, tool) [55560](https://github.com/flutter/flutter/pull/55560) Revert "Roll engine 8fff8da38da2..d2ec21221e29 (8 commits)" (cla: yes, engine) [55562](https://github.com/flutter/flutter/pull/55562) Roll engine d2ec21221e29..2b94311a7764 (5 commits) (cla: yes, waiting for tree to go green) [55564](https://github.com/flutter/flutter/pull/55564) [flutter_tools] support --enable-experiment in flutter test (cla: yes, team, tool) [55577](https://github.com/flutter/flutter/pull/55577) Revert "[flutter_tools] fix version tag `v` stripping" (cla: yes, tool) [55594](https://github.com/flutter/flutter/pull/55594) [flutter_tools] enable `flutter upgrade` to support force pushed branches (cla: yes, tool, waiting for tree to go green) [55599](https://github.com/flutter/flutter/pull/55599) Default to use V2 Slider (cla: yes, f: material design, framework) [55600](https://github.com/flutter/flutter/pull/55600) Fix focus traversal regions to account for transforms. (cla: yes, framework, waiting for tree to go green) [55602](https://github.com/flutter/flutter/pull/55602) [flutter_tools] fix version tag `v` stripping and support old "dev" and new "pre" tags (cla: yes, tool, waiting for tree to go green) [55605](https://github.com/flutter/flutter/pull/55605) [flutter_tools] detect ipv6 in fuchsia server url (cla: yes, tool) [55609](https://github.com/flutter/flutter/pull/55609) Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team) [55614](https://github.com/flutter/flutter/pull/55614) [flutter tools] Move _informUserOfCrash into crash_reporting.dart (cla: yes, tool, waiting for tree to go green) [55617](https://github.com/flutter/flutter/pull/55617) [flutter_tools] remove trailing eth info from fuchsia package server (cla: yes, tool) [55636](https://github.com/flutter/flutter/pull/55636) Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [55651](https://github.com/flutter/flutter/pull/55651) Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green) [55664](https://github.com/flutter/flutter/pull/55664) [flutter_tools] fix pm serve ipv6 linklocal addr issue (cla: yes, tool, waiting for tree to go green) [55699](https://github.com/flutter/flutter/pull/55699) [flutter_tools] allow pulling performance data from assemble (cla: yes, tool) [55701](https://github.com/flutter/flutter/pull/55701) [flutter_tools] surface missing assets originating package (cla: yes, tool, waiting for tree to go green) [55704](https://github.com/flutter/flutter/pull/55704) [flutter_tools] ensure etag headers are ascii (cla: yes, tool) [55715](https://github.com/flutter/flutter/pull/55715) [flutter_tools] add --dart-define option for fuchsia build (cla: yes, tool, waiting for tree to go green) [55748](https://github.com/flutter/flutter/pull/55748) [ci] pin macOS image (cla: yes, waiting for tree to go green) [55749](https://github.com/flutter/flutter/pull/55749) Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review) [55756](https://github.com/flutter/flutter/pull/55756) Add `ExcludeFocus` widget, and a way to prevent focusability for a subtree. (cla: yes) [55759](https://github.com/flutter/flutter/pull/55759) [flutter_tools] catch ProcessException and throw ToolExit during upgrade (cla: yes, tool, waiting for tree to go green) [55761](https://github.com/flutter/flutter/pull/55761) Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green) [55762](https://github.com/flutter/flutter/pull/55762) Print stdout and stderr when the ssh command failed (cla: yes, tool, waiting for tree to go green) [55763](https://github.com/flutter/flutter/pull/55763) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework) [55769](https://github.com/flutter/flutter/pull/55769) Revert "[timeline] Sort timeline events before summarizing (#55763)" (a: tests, cla: yes, framework) [55771](https://github.com/flutter/flutter/pull/55771) [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green) [55772](https://github.com/flutter/flutter/pull/55772) Revert "[flutter_tools] migrate FlutterView to new vm_service" (cla: yes, tool) [55773](https://github.com/flutter/flutter/pull/55773) Remove v prefix in doctor version (cla: yes, tool) [55774](https://github.com/flutter/flutter/pull/55774) [flutter_tools] reland migrate FlutterView to new vmservice (cla: yes, tool) [55775](https://github.com/flutter/flutter/pull/55775) TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [55780](https://github.com/flutter/flutter/pull/55780) [flutter_tools] support multiple fuchsia devices (cla: yes, tool) [55782](https://github.com/flutter/flutter/pull/55782) Removing Deprecated flag for Gallery (cla: yes, f: material design, team, waiting for tree to go green) [55788](https://github.com/flutter/flutter/pull/55788) Revert "[flutter_tools] reland migrate FlutterView to new vmservice" (cla: yes, tool) [55789](https://github.com/flutter/flutter/pull/55789) ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green) [55790](https://github.com/flutter/flutter/pull/55790) Remove dead variable from xcode_backend (cla: yes, t: xcode, tool) [55792](https://github.com/flutter/flutter/pull/55792) [gen_l10n] Output directory option (a: internationalization, cla: yes, team) [55793](https://github.com/flutter/flutter/pull/55793) Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens) [55794](https://github.com/flutter/flutter/pull/55794) [flutter_tools] remove vm service (cla: yes, tool) [55797](https://github.com/flutter/flutter/pull/55797) [flutter_tools] reland migrate FlutterViews to package:vm_service (cla: yes, tool) [55799](https://github.com/flutter/flutter/pull/55799) Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool) [55808](https://github.com/flutter/flutter/pull/55808) Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool) [55812](https://github.com/flutter/flutter/pull/55812) restore quit timeout, adjust some integration test behaviors (cla: yes, team, tool) [55829](https://github.com/flutter/flutter/pull/55829) allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [55832](https://github.com/flutter/flutter/pull/55832) Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green) [55857](https://github.com/flutter/flutter/pull/55857) Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green) [55871](https://github.com/flutter/flutter/pull/55871) Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool) [55873](https://github.com/flutter/flutter/pull/55873) Temporarily disable nnbd flutter test test (cla: yes, waiting for tree to go green) [55876](https://github.com/flutter/flutter/pull/55876) Mark android attach test flaky (cla: yes, team) [55877](https://github.com/flutter/flutter/pull/55877) Mark flutter_gallery_v2_chrome_run_test and flutter_gallery_v2_web_compile_test not flaky (cla: yes, team) [55881](https://github.com/flutter/flutter/pull/55881) Make flutter_attach_test_android test verbose (cla: yes, team) [55882](https://github.com/flutter/flutter/pull/55882) [flutter_tools] Make packages not required for local engine (cla: yes) [55887](https://github.com/flutter/flutter/pull/55887) Fix/use contains ignoring whitespace (cla: yes, tool) [55891](https://github.com/flutter/flutter/pull/55891) manual engine roll (4bcfae82c7c1 -> 0c35a3417) (cla: yes, engine) [55902](https://github.com/flutter/flutter/pull/55902) Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green) [55906](https://github.com/flutter/flutter/pull/55906) Roll engine 0c35a3417da7..01cf8c36ce34 (3 commits) (cla: yes, waiting for tree to go green) [55909](https://github.com/flutter/flutter/pull/55909) [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool) [55911](https://github.com/flutter/flutter/pull/55911) Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green) [55914](https://github.com/flutter/flutter/pull/55914) Roll engine 01cf8c36ce34..fda26fc70f5b (1 commits) (cla: yes, waiting for tree to go green) [55919](https://github.com/flutter/flutter/pull/55919) Roll engine fda26fc70f5b..bd5234780ec2 (2 commits) (cla: yes, waiting for tree to go green) [55920](https://github.com/flutter/flutter/pull/55920) Roll engine bd5234780ec2..2db327657369 (1 commits) (cla: yes, waiting for tree to go green) [55935](https://github.com/flutter/flutter/pull/55935) Read correct file for android view benchmark (cla: yes, team) [55936](https://github.com/flutter/flutter/pull/55936) Fixed #55858 (a: tests, cla: yes, framework) [55939](https://github.com/flutter/flutter/pull/55939) Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green) [55961](https://github.com/flutter/flutter/pull/55961) [flutter_tools] Lazily inject logger into web devices (cla: yes, tool) [55977](https://github.com/flutter/flutter/pull/55977) Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens) [55981](https://github.com/flutter/flutter/pull/55981) [devicelab] Explicitly print stack trace from error in android attach test (cla: yes) [55984](https://github.com/flutter/flutter/pull/55984) [flutter_tools] increase stopApp timeout for FlutterDevice.exitApps (cla: yes) [55988](https://github.com/flutter/flutter/pull/55988) [devicelab] increase eventOrExit timeout to 1 minute (cla: yes) [55990](https://github.com/flutter/flutter/pull/55990) [flutter_tools] android device stopApp handles null apk (cla: yes) [55995](https://github.com/flutter/flutter/pull/55995) Make CustomClipper extend Listenable (cla: yes, waiting for tree to go green) [55998](https://github.com/flutter/flutter/pull/55998) Fixes the navigator pages update crashes when there is still route wa… (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green) [56022](https://github.com/flutter/flutter/pull/56022) Fix WidgetsBinding.firstFrameRasterized not completing (cla: yes, waiting for tree to go green) [56056](https://github.com/flutter/flutter/pull/56056) [web] Change display mode of PWA default to standalone (cla: yes) [56059](https://github.com/flutter/flutter/pull/56059) [flutter_tools] support bundling SkSL shaders in flutter build apk/appbundle (cla: yes, tool) [56067](https://github.com/flutter/flutter/pull/56067) [flutter_tools] add support for faster incremental build (cla: yes) [56077](https://github.com/flutter/flutter/pull/56077) Add package_root for fuchsia_tools (cla: yes, waiting for tree to go green) [56081](https://github.com/flutter/flutter/pull/56081) [web] Implement defaultTargetPlatform MacOS/iOS for web. (cla: yes) [56084](https://github.com/flutter/flutter/pull/56084) Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [56089](https://github.com/flutter/flutter/pull/56089) Redirect stdout/stderr in Windows template (cla: yes) [56090](https://github.com/flutter/flutter/pull/56090) Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [56091](https://github.com/flutter/flutter/pull/56091) Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [56094](https://github.com/flutter/flutter/pull/56094) [flutter_tools] fix iOS build inconsistencies and pipe through performance file (cla: yes) [56103](https://github.com/flutter/flutter/pull/56103) [flutter_tools] reduce initial cache size on web (cla: yes, tool, waiting for tree to go green) [56107](https://github.com/flutter/flutter/pull/56107) [flutter_tools] don't recreate license, manifest, asset if unchanged (cla: yes) [56136](https://github.com/flutter/flutter/pull/56136) Temporarily disable new Gallery perf test (cla: yes) [56139](https://github.com/flutter/flutter/pull/56139) [analyze] fix const lints (cla: yes) [56141](https://github.com/flutter/flutter/pull/56141) [version] update all versions (cla: yes, waiting for tree to go green) [56146](https://github.com/flutter/flutter/pull/56146) Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green) [56160](https://github.com/flutter/flutter/pull/56160) Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green) [56162](https://github.com/flutter/flutter/pull/56162) Roll engine 2db327657369..72fe227a50d9 (42 commits) (cla: yes, waiting for tree to go green) [56164](https://github.com/flutter/flutter/pull/56164) let the embedding maven engine dependency reference the storage proxy (cla: yes, waiting for tree to go green) [56167](https://github.com/flutter/flutter/pull/56167) [flutter_tools] integrate l10n tool into build/run (cla: yes, tool) [56173](https://github.com/flutter/flutter/pull/56173) [flutter_tools] support flutter run -d edge (cla: yes, tool) [56174](https://github.com/flutter/flutter/pull/56174) Roll engine 72fe227a50d9..ab277b3b6f3c (2 commits) (cla: yes, waiting for tree to go green) [56177](https://github.com/flutter/flutter/pull/56177) Roll engine ab277b3b6f3c..edf65e2861bf (1 commits) (cla: yes, waiting for tree to go green) [56178](https://github.com/flutter/flutter/pull/56178) Update 1.17 engine version. (cla: yes) [56182](https://github.com/flutter/flutter/pull/56182) Roll engine edf65e2861bf..d0bcc6980e4e (1 commits) (cla: yes, waiting for tree to go green) [56187](https://github.com/flutter/flutter/pull/56187) Roll engine d0bcc6980e4e..86c0c54bef50 (1 commits) (cla: yes, waiting for tree to go green) [56190](https://github.com/flutter/flutter/pull/56190) [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green) [56203](https://github.com/flutter/flutter/pull/56203) [flutter_tools] ensure track-widget-creation can be disabled on Android (cla: yes) [56205](https://github.com/flutter/flutter/pull/56205) Roll engine 86c0c54bef50..2307b615eb63 (1 commits) (cla: yes, waiting for tree to go green) [56215](https://github.com/flutter/flutter/pull/56215) Roll engine 2307b615eb63..94e6baa7560e (1 commits) (cla: yes, waiting for tree to go green) [56219](https://github.com/flutter/flutter/pull/56219) Fix typo for TextStyle.fontFamilyFallback document (cla: yes, waiting for tree to go green) [56223](https://github.com/flutter/flutter/pull/56223) [flutter_tools] remove flutter view cache (cla: yes) [56224](https://github.com/flutter/flutter/pull/56224) [flutter_tools] make gallery hot reload 5x faster with one neat trick (cla: yes) [56225](https://github.com/flutter/flutter/pull/56225) Roll engine 94e6baa7560e..813fd04c7dfd (1 commits) (cla: yes, waiting for tree to go green) [56229](https://github.com/flutter/flutter/pull/56229) Roll engine 813fd04c7dfd..e3cb6812ed6d (1 commits) (cla: yes, waiting for tree to go green) [56233](https://github.com/flutter/flutter/pull/56233) Roll engine e3cb6812ed6d..7a492012a66a (1 commits) (cla: yes, waiting for tree to go green) [56240](https://github.com/flutter/flutter/pull/56240) fix the reload and restart service extension methods (cla: yes, tool, waiting for tree to go green) [56255](https://github.com/flutter/flutter/pull/56255) Roll engine 7a492012a66a..906bf5968465 (1 commits) (cla: yes, waiting for tree to go green) [56258](https://github.com/flutter/flutter/pull/56258) Roll engine 906bf5968465..2037e0f18d9b (1 commits) (waiting for tree to go green) [56274](https://github.com/flutter/flutter/pull/56274) Roll engine 2037e0f18d9b..180a497ee558 (5 commits) (cla: yes, waiting for tree to go green) [56290](https://github.com/flutter/flutter/pull/56290) Turn implicit casts in code generated by `flutter_platform.dart` into explicit casts. (cla: yes, waiting for tree to go green) [56295](https://github.com/flutter/flutter/pull/56295) Fix overly specific detection of non-UTF8 files in analyzer bot. (cla: yes) [56309](https://github.com/flutter/flutter/pull/56309) Trial PR to use an engine that has the null safety unfork CL in it. (cla: yes) [56324](https://github.com/flutter/flutter/pull/56324) add macOS to ui integration test (cla: yes) [56328](https://github.com/flutter/flutter/pull/56328) DoubleTap recognizer support and improved error message (cla: yes, waiting for tree to go green) [56329](https://github.com/flutter/flutter/pull/56329) BuildInfo tests without context (cla: yes, team) [56330](https://github.com/flutter/flutter/pull/56330) Use androidSdk globals variable everywhere (cla: yes, team, tool) [56331](https://github.com/flutter/flutter/pull/56331) Inject logger and fs into printHowToConsumeAar, test without context (cla: yes, team, tool) [56333](https://github.com/flutter/flutter/pull/56333) Roll engine 180a497ee558..95ecd9a4050c (8 commits) (cla: yes, waiting for tree to go green) [56335](https://github.com/flutter/flutter/pull/56335) Gradle artifacts and tasks tests without context (cla: yes, team, tool) [56336](https://github.com/flutter/flutter/pull/56336) [devicelab] enable macOS, windows, linux, and web on devicelab bots (cla: yes) [56341](https://github.com/flutter/flutter/pull/56341) Add OutlinedBorder class (cla: yes, waiting for tree to go green) [56342](https://github.com/flutter/flutter/pull/56342) Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green) [56373](https://github.com/flutter/flutter/pull/56373) [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green) [56378](https://github.com/flutter/flutter/pull/56378) Roll engine 95ecd9a4050c..33d236795015 (11 commits) (cla: yes, waiting for tree to go green) [56379](https://github.com/flutter/flutter/pull/56379) Manual roll of engine to version 33d2367950154e7f8daf9ce9992a45001628… (cla: yes) [56385](https://github.com/flutter/flutter/pull/56385) Revert "[flutter_tools] remove flutter view cache" (cla: yes, tool) [56387](https://github.com/flutter/flutter/pull/56387) [flutter_tools] reland remove flutter view cache (cla: yes, waiting for tree to go green) [56390](https://github.com/flutter/flutter/pull/56390) Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [56393](https://github.com/flutter/flutter/pull/56393) Pin engine.version to cherrypicked change (cla: yes) [56394](https://github.com/flutter/flutter/pull/56394) Added an empty list example to the ListView docs (cla: yes) [56397](https://github.com/flutter/flutter/pull/56397) [devicelab] allow the tool to use the word waiting more than once (cla: yes) [56398](https://github.com/flutter/flutter/pull/56398) [devicelab] add verification print and remove timeout test (cla: yes) [56401](https://github.com/flutter/flutter/pull/56401) [devicelab] unmark android_attach, twc tests, remove mac twc test (cla: yes, waiting for tree to go green) [56407](https://github.com/flutter/flutter/pull/56407) fixup! Update grammar in basic.dart #56251 (cla: yes, framework, waiting for tree to go green) [56409](https://github.com/flutter/flutter/pull/56409) InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green) [56410](https://github.com/flutter/flutter/pull/56410) [flutter_tools] Restore base/platform.dart (cla: yes, tool) [56416](https://github.com/flutter/flutter/pull/56416) Save results of A/B test runs in a JSON file for future processing (cla: yes, waiting for tree to go green) [56418](https://github.com/flutter/flutter/pull/56418) Handle uncaught error for warnIfSlow (cla: yes, waiting for tree to go green) [56428](https://github.com/flutter/flutter/pull/56428) Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green) [56430](https://github.com/flutter/flutter/pull/56430) Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green) [56445](https://github.com/flutter/flutter/pull/56445) Revert "Add DevTools memory test" (cla: yes, team) [56471](https://github.com/flutter/flutter/pull/56471) Roll engine 4b7380b55f6d..c3cd83baf8bc (18 commits) (cla: yes, waiting for tree to go green) [56472](https://github.com/flutter/flutter/pull/56472) [flutter_tools] prevent wildcard assets from causing build invalidation issues (cla: yes, tool, waiting for tree to go green) [56481](https://github.com/flutter/flutter/pull/56481) [flutter_tools] throw StateError instead of null (cla: yes, waiting for tree to go green) [56485](https://github.com/flutter/flutter/pull/56485) Roll engine c3cd83baf8bc..d6aa099de7c7 (3 commits) (cla: yes, waiting for tree to go green) [56490](https://github.com/flutter/flutter/pull/56490) [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green) [56491](https://github.com/flutter/flutter/pull/56491) [flutter_tools] fix windows vs code lookup with missing platform environment variables (cla: yes, waiting for tree to go green) [56492](https://github.com/flutter/flutter/pull/56492) Fix silent test failure in image cache tests (cla: yes, waiting for tree to go green) [56494](https://github.com/flutter/flutter/pull/56494) Wire up autofocus for OutlineButton (cla: yes, f: material design, framework) [56501](https://github.com/flutter/flutter/pull/56501) Add --force to `roll_dev.dart` (cla: yes, waiting for tree to go green) [56502](https://github.com/flutter/flutter/pull/56502) Swap xcode_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool, waiting for tree to go green) [56505](https://github.com/flutter/flutter/pull/56505) Swap xcodeproj_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool) [56506](https://github.com/flutter/flutter/pull/56506) Roll engine d6aa099de7c7..3953c3ccd15a (4 commits) (cla: yes, waiting for tree to go green) [56521](https://github.com/flutter/flutter/pull/56521) Have the physics enforce the scroll position. (cla: yes, framework) [56531](https://github.com/flutter/flutter/pull/56531) feature: add usermessage when miss platform project (cla: yes, tool) [56549](https://github.com/flutter/flutter/pull/56549) Expose includeSemantics option to RawKeyboardListener (cla: yes, framework) [56564](https://github.com/flutter/flutter/pull/56564) [flutter_tools] ensure track-widget-creation can be changed on devcompiler (cla: yes, tool, waiting for tree to go green) [56568](https://github.com/flutter/flutter/pull/56568) Remove semantics node generated by `ExcludeFocus` (cla: yes, waiting for tree to go green) [56575](https://github.com/flutter/flutter/pull/56575) Roll new gallery version in the perf test (cla: yes, severe: performance, team, waiting for tree to go green) [56582](https://github.com/flutter/flutter/pull/56582) Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green) [56589](https://github.com/flutter/flutter/pull/56589) Added MaterialStateProperty.all() convenience method (cla: yes) [56594](https://github.com/flutter/flutter/pull/56594) Shard firebase_test_lab_tests (cla: yes, team) [56596](https://github.com/flutter/flutter/pull/56596) add web benchmark that measures efficiency of clipped out pictures (cla: yes, team) [56605](https://github.com/flutter/flutter/pull/56605) Remove direct uses of LocalPlatform (cla: yes, team, tool) [56611](https://github.com/flutter/flutter/pull/56611) Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green) [56614](https://github.com/flutter/flutter/pull/56614) Revert "Paste shows only when content on clipboard (#54902)" (cla: yes, f: cupertino, f: material design, framework) [56618](https://github.com/flutter/flutter/pull/56618) Update Linux template for headless mode (cla: yes, tool, waiting for tree to go green) [56620](https://github.com/flutter/flutter/pull/56620) Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green) [56623](https://github.com/flutter/flutter/pull/56623) [devicelab] fix web twc task missing display (cla: yes, team) [56630](https://github.com/flutter/flutter/pull/56630) [flutter tools] Fix an assert in IOSSimulator.getLogReader (cla: yes, tool) [56633](https://github.com/flutter/flutter/pull/56633) [flutter_tools] enable tree-shake-icons by default for non-web targets (cla: yes, tool) [56634](https://github.com/flutter/flutter/pull/56634) [flutter_tools] rename getSkSL file output ext to .sksl.json (cla: yes, tool) [56638](https://github.com/flutter/flutter/pull/56638) Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [56641](https://github.com/flutter/flutter/pull/56641) Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [56645](https://github.com/flutter/flutter/pull/56645) Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [56677](https://github.com/flutter/flutter/pull/56677) Manual roll of engine 7e205b37e5...3953c3ccd1 (cla: yes, engine) [56684](https://github.com/flutter/flutter/pull/56684) Manual roll of engine 9b905d3f03...7e205b37e5 (cla: yes, engine) [56685](https://github.com/flutter/flutter/pull/56685) typo fix on the FLUTTER_STORAGE_BASE_URL usage (cla: yes, tool, waiting for tree to go green) [56689](https://github.com/flutter/flutter/pull/56689) Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56694](https://github.com/flutter/flutter/pull/56694) [flutter_tools] fix aar defaults test (cla: yes, tool) [56695](https://github.com/flutter/flutter/pull/56695) [devicelab] mark web_enable_twc as non-flaky (cla: yes, team, waiting for tree to go green) [56700](https://github.com/flutter/flutter/pull/56700) Mark new Gallery test as non-flaky (cla: yes, team) [56703](https://github.com/flutter/flutter/pull/56703) Always remove the workspace settings when set to legacy build settings (cla: yes, tool, waiting for tree to go green) [56706](https://github.com/flutter/flutter/pull/56706) [flutter_tools] Don't try to execute gradle wrapper out of /tmp (cla: yes, tool) [56710](https://github.com/flutter/flutter/pull/56710) [web] Unskip TextStyle web tests (cla: yes, framework, waiting for tree to go green) [56714](https://github.com/flutter/flutter/pull/56714) flutter tool: PowerShell executable detection added, fixing usage of PS version >=6 (cla: yes, waiting for tree to go green) [56720](https://github.com/flutter/flutter/pull/56720) [flutter_tools] fix documentation on default built ios (cla: yes, tool) [56721](https://github.com/flutter/flutter/pull/56721) fix `roll_dev.dart` to query remote ref, rather than local (cla: yes, team, waiting for tree to go green) [56727](https://github.com/flutter/flutter/pull/56727) Update README.md (cla: yes, team, waiting for tree to go green) [56732](https://github.com/flutter/flutter/pull/56732) fix pushAndRemoveUntil incorrectly removes the routes below the first… (cla: yes, f: routes, framework, waiting for tree to go green) [56735](https://github.com/flutter/flutter/pull/56735) Shard Cirrus build_tests (cla: yes, team) [56740](https://github.com/flutter/flutter/pull/56740) Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [56786](https://github.com/flutter/flutter/pull/56786) [flutter_tools] cache-bust in service worker (cla: yes, team, tool, waiting for tree to go green) [56794](https://github.com/flutter/flutter/pull/56794) [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green) [56800](https://github.com/flutter/flutter/pull/56800) Revert "[flutter_tools] integrate l10n tool into build/run" (cla: yes, tool) [56806](https://github.com/flutter/flutter/pull/56806) Revert "Bring back paste button hide behavior" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56859](https://github.com/flutter/flutter/pull/56859) Fix wrong link in description on the platform system channel (cla: yes, framework, waiting for tree to go green) [56895](https://github.com/flutter/flutter/pull/56895) [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green) [56897](https://github.com/flutter/flutter/pull/56897) Roll engine 9d8daf2383ea..d96f962ca21a (13 commits) (cla: yes, waiting for tree to go green) [56906](https://github.com/flutter/flutter/pull/56906) more docs about diagnostics in release mode (cla: yes, framework) [56922](https://github.com/flutter/flutter/pull/56922) Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56924](https://github.com/flutter/flutter/pull/56924) [flutter_tools] hide tree-shake-icons (cla: yes, tool, waiting for tree to go green) [56926](https://github.com/flutter/flutter/pull/56926) Roll engine d96f962ca21a..2c46e209a34a (6 commits) (cla: yes, waiting for tree to go green) [56928](https://github.com/flutter/flutter/pull/56928) Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green) [56932](https://github.com/flutter/flutter/pull/56932) Roll engine 2c46e209a34a..ada8a0fd64a3 (1 commits) (cla: yes, waiting for tree to go green) [56934](https://github.com/flutter/flutter/pull/56934) Revert "[flutter_tools] hide tree-shake-icons" (cla: yes, tool, waiting for tree to go green) [56941](https://github.com/flutter/flutter/pull/56941) Roll engine ada8a0fd64a3..156970a2487c (2 commits) (cla: yes, waiting for tree to go green) [56943](https://github.com/flutter/flutter/pull/56943) [flutter_tools] expand Regexp log match to include more AndroidRuntime failures (cla: yes, tool, waiting for tree to go green) [56945](https://github.com/flutter/flutter/pull/56945) [flutter_tools] unblock fuchsia roll (cla: yes, tool, waiting for tree to go green) [56946](https://github.com/flutter/flutter/pull/56946) [flutter_tools] introduce a BuildSystem interface (cla: yes, tool, waiting for tree to go green) [56951](https://github.com/flutter/flutter/pull/56951) Revert "Bring back paste button hide behavior 2" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team) [56952](https://github.com/flutter/flutter/pull/56952) Add more documentation to addTimingsCallback (cla: yes, framework, waiting for tree to go green) [56956](https://github.com/flutter/flutter/pull/56956) ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green) [56958](https://github.com/flutter/flutter/pull/56958) Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green) [56959](https://github.com/flutter/flutter/pull/56959) Make initial daemon devices population fast (cla: yes, tool) [56961](https://github.com/flutter/flutter/pull/56961) Remove dead definesCustomBuildConfigurations (cla: yes, team, tool, waiting for tree to go green) [56968](https://github.com/flutter/flutter/pull/56968) setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green) [57005](https://github.com/flutter/flutter/pull/57005) Fix minor typo in 'flutter create --list-samples' help text (cla: yes, tool, waiting for tree to go green) [57016](https://github.com/flutter/flutter/pull/57016) [web] Add path construction benchmark (cla: yes, team) [57027](https://github.com/flutter/flutter/pull/57027) Fix xcode_backend.sh to strip bitcode for archive build, if the project has bitcode disabled entirely (cla: yes, tool, waiting for tree to go green) [57033](https://github.com/flutter/flutter/pull/57033) Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green) [57036](https://github.com/flutter/flutter/pull/57036) fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green) [57037](https://github.com/flutter/flutter/pull/57037) Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green) [57039](https://github.com/flutter/flutter/pull/57039) Allow Recorder override shouldContinue (cla: yes, team, waiting for tree to go green) [57047](https://github.com/flutter/flutter/pull/57047) Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green) [57052](https://github.com/flutter/flutter/pull/57052) Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool) [57053](https://github.com/flutter/flutter/pull/57053) Updated gen_missing_localizations to copy the english strings instead of using 'TBD'. (cla: yes, f: material design, framework, team, waiting for tree to go green) [57058](https://github.com/flutter/flutter/pull/57058) 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review) [57065](https://github.com/flutter/flutter/pull/57065) Remove deprecated child parameter for NestedScrollView's overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green) [57075](https://github.com/flutter/flutter/pull/57075) [flutter_tools] re-enable non-nullable test (cla: yes, team, tool, waiting for tree to go green) [57077](https://github.com/flutter/flutter/pull/57077) [flutter_tools] do not set timestamp of package_config file (cla: yes, tool, waiting for tree to go green) [57085](https://github.com/flutter/flutter/pull/57085) Remove redundant transform from showInViewport (cla: yes, framework, waiting for tree to go green) [57094](https://github.com/flutter/flutter/pull/57094) MouseCursor uses a special class instead of null to defer (cla: yes, framework) [57109](https://github.com/flutter/flutter/pull/57109) Roll engine 156970a2487c..b59e3e9c39a2 (23 commits) (cla: yes, waiting for tree to go green) [57117](https://github.com/flutter/flutter/pull/57117) [flutter_tools] expose track-widget-creation to build aar (cla: yes, tool, waiting for tree to go green) [57135](https://github.com/flutter/flutter/pull/57135) [flutter_tools] Support profile and release builds on Linux (cla: yes, tool, waiting for tree to go green) [57136](https://github.com/flutter/flutter/pull/57136) update initial route documentation (cla: yes, framework, waiting for tree to go green) [57139](https://github.com/flutter/flutter/pull/57139) Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [57143](https://github.com/flutter/flutter/pull/57143) Disable DartDev when launching flutter_tools (cla: yes, tool, waiting for tree to go green) [57145](https://github.com/flutter/flutter/pull/57145) [Add2App Android] Fix the issue of Hotreload broken on latest Dev release with Android device (cla: yes, tool, waiting for tree to go green) [57150](https://github.com/flutter/flutter/pull/57150) Roll engine b59e3e9c39a2..ae2222f47e78 (8 commits) (cla: yes, waiting for tree to go green) [57152](https://github.com/flutter/flutter/pull/57152) Update snippets README.md to include more detail (cla: yes, team) [57161](https://github.com/flutter/flutter/pull/57161) Remove empty Supporting Files group from Swift app template (cla: yes, tool, waiting for tree to go green) [57162](https://github.com/flutter/flutter/pull/57162) throw more specific toolexit when git fails during upgrade (cla: yes, tool, waiting for tree to go green) [57167](https://github.com/flutter/flutter/pull/57167) Remove obsolete UpdateCounted prefix (cla: yes, framework, waiting for tree to go green) [57172](https://github.com/flutter/flutter/pull/57172) Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green) [57173](https://github.com/flutter/flutter/pull/57173) [flutter_tools] allow adb to fail to un forward without crashing (cla: yes, tool, waiting for tree to go green) [57182](https://github.com/flutter/flutter/pull/57182) [flutter_tools] fix period in URL for androidX incompat (cla: yes, tool, waiting for tree to go green) [57184](https://github.com/flutter/flutter/pull/57184) [flutter_tools] ensure package_config is re-created if pub get is run (cla: yes, tool, waiting for tree to go green) [57189](https://github.com/flutter/flutter/pull/57189) Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green) [57195](https://github.com/flutter/flutter/pull/57195) Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [57201](https://github.com/flutter/flutter/pull/57201) correctly dispose listeners by image widget (cla: yes, framework, waiting for tree to go green) [57231](https://github.com/flutter/flutter/pull/57231) Mark gallery tests as flaky (cla: yes, team) [57235](https://github.com/flutter/flutter/pull/57235) [null-safety] disable tests until framework has migrated (cla: yes, team, waiting for tree to go green) [57238](https://github.com/flutter/flutter/pull/57238) Switch to CMake for Linux desktop (cla: yes, tool) [57240](https://github.com/flutter/flutter/pull/57240) [web] Update test skip description. (a: tests, cla: yes, framework, platform-web) [57244](https://github.com/flutter/flutter/pull/57244) Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework) [57247](https://github.com/flutter/flutter/pull/57247) Improve error message when using popuntil with bad predicate (cla: yes, framework, waiting for tree to go green) [57252](https://github.com/flutter/flutter/pull/57252) Roll engine ae2222f47e78..47513a70eb6d (21 commits) (cla: yes, waiting for tree to go green) [57257](https://github.com/flutter/flutter/pull/57257) [flutter_tools] Add additional bash entrypoint for running dart sdk directly (cla: yes) [57258](https://github.com/flutter/flutter/pull/57258) Roll engine 47513a70eb6d..50e55cf69e8a (1 commits) (cla: yes, waiting for tree to go green) [57261](https://github.com/flutter/flutter/pull/57261) Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green) [57264](https://github.com/flutter/flutter/pull/57264) Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green) [57268](https://github.com/flutter/flutter/pull/57268) Remove license statements in template files. (cla: yes, tool, waiting for tree to go green) [57269](https://github.com/flutter/flutter/pull/57269) Roll engine 50e55cf69e8a..aaf9e79f1d29 (2 commits) (cla: yes, waiting for tree to go green) [57270](https://github.com/flutter/flutter/pull/57270) add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework) [57274](https://github.com/flutter/flutter/pull/57274) Desktop default window size (cla: yes, tool, waiting for tree to go green) [57286](https://github.com/flutter/flutter/pull/57286) Revert " Bring back paste button hide behavior 3" (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green) [57287](https://github.com/flutter/flutter/pull/57287) remove pending timers list code out of assert message (a: tests, cla: yes, framework) [57291](https://github.com/flutter/flutter/pull/57291) [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework) [57299](https://github.com/flutter/flutter/pull/57299) add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green) [57319](https://github.com/flutter/flutter/pull/57319) Fix Autofill example (cla: yes, framework, waiting for tree to go green) [57321](https://github.com/flutter/flutter/pull/57321) Update packages (cla: yes, team, tool, waiting for tree to go green) [57324](https://github.com/flutter/flutter/pull/57324) Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green) [57327](https://github.com/flutter/flutter/pull/57327) Value Indicator uses Global position (cla: yes, f: material design, framework) [57328](https://github.com/flutter/flutter/pull/57328) Update flutter_gallery_assets to ^0.2.0 (cla: yes, team, tool) [57332](https://github.com/flutter/flutter/pull/57332) Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green) [57339](https://github.com/flutter/flutter/pull/57339) fix route annoucement for first route and last route (cla: yes, framework, waiting for tree to go green) [57340](https://github.com/flutter/flutter/pull/57340) Reland "Add DevTools memory test (#55486)" (cla: yes, team, waiting for tree to go green) [57345](https://github.com/flutter/flutter/pull/57345) Protect the deletion of the local engine temp dir in case it is alrea… (cla: yes, tool, waiting for tree to go green) [57349](https://github.com/flutter/flutter/pull/57349) Device manager choose running device (cla: yes, tool, waiting for tree to go green) [57355](https://github.com/flutter/flutter/pull/57355) [flutter tools] Improve messages when we fail to connect to the Observatory (cla: yes, tool, waiting for tree to go green) [57392](https://github.com/flutter/flutter/pull/57392) [flutter_tools] check for Runner.sln when parsing for plugins (cla: yes, tool) [57400](https://github.com/flutter/flutter/pull/57400) [flutter_tools] handle missing null check in manifest parser (cla: yes, tool) [57402](https://github.com/flutter/flutter/pull/57402) Roll engine aaf9e79f1d29..2bd71fb60a43 (52 commits) (cla: yes, waiting for tree to go green) [57412](https://github.com/flutter/flutter/pull/57412) Fixed a typo. (cla: yes, framework, waiting for tree to go green) [57415](https://github.com/flutter/flutter/pull/57415) Fix CMake invocation for 3.10 compat (cla: yes, tool) [57445](https://github.com/flutter/flutter/pull/57445) [flutter_tools] remove globals/context for android testing (cla: yes, tool, waiting for tree to go green) [57446](https://github.com/flutter/flutter/pull/57446) [flutter_tools] minor cleanups to try catch (cla: yes, tool) [57447](https://github.com/flutter/flutter/pull/57447) [flutter_tools] put system clock on globals (cla: yes, tool) [57448](https://github.com/flutter/flutter/pull/57448) [flutter_tools] remove zone level overrides of verbose and daemon logging (cla: yes, tool) [57450](https://github.com/flutter/flutter/pull/57450) [flutter_tools] fix incorrect comment on web runner (cla: yes, tool, waiting for tree to go green) [57452](https://github.com/flutter/flutter/pull/57452) Add Linux GTK artifacts to unpack list (cla: yes, tool) [57461](https://github.com/flutter/flutter/pull/57461) Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green) [57473](https://github.com/flutter/flutter/pull/57473) Roll engine 2bd71fb60a43..aafd9f72283f (9 commits) (cla: yes, waiting for tree to go green) [57487](https://github.com/flutter/flutter/pull/57487) Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green) [57498](https://github.com/flutter/flutter/pull/57498) Temporarily allow pluginClass: none on desktop (cla: yes, tool) [57499](https://github.com/flutter/flutter/pull/57499) Roll engine aafd9f72283f..90f45bd3efce (4 commits) (cla: yes, waiting for tree to go green) [57500](https://github.com/flutter/flutter/pull/57500) SnackBarAction.createState() should have return type State<SnackBarAction> (cla: yes, f: material design, framework, waiting for tree to go green) [57506](https://github.com/flutter/flutter/pull/57506) [flutter_tools] chunk the hashing of large files (cla: yes, tool, waiting for tree to go green) [57510](https://github.com/flutter/flutter/pull/57510) [flutter_tools] reland: integrate l10n tool into hot reload/restart/build (cla: yes, tool) [57511](https://github.com/flutter/flutter/pull/57511) Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green) [57515](https://github.com/flutter/flutter/pull/57515) Remove TRANSFORM from Linux CMake files (cla: yes, tool) [57516](https://github.com/flutter/flutter/pull/57516) Update platform_view.dart (cla: yes, framework, waiting for tree to go green) [57517](https://github.com/flutter/flutter/pull/57517) Roll engine 90f45bd3efce..4b1a70e6a256 (4 commits) (cla: yes, waiting for tree to go green) [57519](https://github.com/flutter/flutter/pull/57519) Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green) [57521](https://github.com/flutter/flutter/pull/57521) Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green) [57522](https://github.com/flutter/flutter/pull/57522) Add doc and test for Container's hitTest behavior (cla: yes, framework, waiting for tree to go green) [57526](https://github.com/flutter/flutter/pull/57526) Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green) [57529](https://github.com/flutter/flutter/pull/57529) Roll engine 4b1a70e6a256..2d4e83921d31 (3 commits) (cla: yes, waiting for tree to go green) [57532](https://github.com/flutter/flutter/pull/57532) Always show device discovery diagnostics in "flutter devices" (cla: yes, tool, waiting for tree to go green) [57534](https://github.com/flutter/flutter/pull/57534) Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green) [57535](https://github.com/flutter/flutter/pull/57535) Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green) [57538](https://github.com/flutter/flutter/pull/57538) Re-add line to Linux template CMakeLists.txt (cla: yes, tool) [57574](https://github.com/flutter/flutter/pull/57574) Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green) [57576](https://github.com/flutter/flutter/pull/57576) Add Web Benchmarks for Flutter Gallery (Flutter Side) — 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green) [57588](https://github.com/flutter/flutter/pull/57588) New license page. (a: internationalization, cla: yes, f: material design, framework) [57590](https://github.com/flutter/flutter/pull/57590) Update the flutter script's locking mechanism and follow_links (cla: yes, tool) [57601](https://github.com/flutter/flutter/pull/57601) Add Android private keystore to project gitignore (cla: yes, tool, waiting for tree to go green) [57605](https://github.com/flutter/flutter/pull/57605) fix navigator observer announcement order (cla: yes, framework, waiting for tree to go green) [57611](https://github.com/flutter/flutter/pull/57611) Revert "[flutter_tools] remove globals/context for android testing" (cla: yes, tool) [57614](https://github.com/flutter/flutter/pull/57614) [flutter_tools] reland: remove globals from android device/testing (cla: yes, tool) [57621](https://github.com/flutter/flutter/pull/57621) Remove MaterialControls from examples/flutter_view (cla: yes, d: examples, team) [57624](https://github.com/flutter/flutter/pull/57624) Remove unused integration test iOS directory (cla: yes, team) [57628](https://github.com/flutter/flutter/pull/57628) Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework) [57629](https://github.com/flutter/flutter/pull/57629) Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens) [57644](https://github.com/flutter/flutter/pull/57644) Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green) [57670](https://github.com/flutter/flutter/pull/57670) Add code example for CustomScrollView on how to make it grow in two directions along its scroll axis (cla: yes, framework, waiting for tree to go green) [57688](https://github.com/flutter/flutter/pull/57688) Change release archive check to warning (cla: yes, tool, waiting for tree to go green) [57690](https://github.com/flutter/flutter/pull/57690) [flutter_tools] hide all development tools (cla: yes, tool, waiting for tree to go green) [57696](https://github.com/flutter/flutter/pull/57696) Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green) [57701](https://github.com/flutter/flutter/pull/57701) Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green) [57703](https://github.com/flutter/flutter/pull/57703) [flutter_tools] ensure emulator command does not crash with missing avdmanager (cla: yes, tool, waiting for tree to go green) [57704](https://github.com/flutter/flutter/pull/57704) Use pub inside the Flutter directory (cla: yes, team, waiting for tree to go green) [57733](https://github.com/flutter/flutter/pull/57733) #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green) [57736](https://github.com/flutter/flutter/pull/57736) [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green) [57745](https://github.com/flutter/flutter/pull/57745) Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green) [57749](https://github.com/flutter/flutter/pull/57749) Add release and profile support for Windows (cla: yes, tool) [57751](https://github.com/flutter/flutter/pull/57751) Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [57809](https://github.com/flutter/flutter/pull/57809) Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green) [57813](https://github.com/flutter/flutter/pull/57813) [flutter_tools] add vm service method to pull SkSL (cla: yes, tool, waiting for tree to go green) [57821](https://github.com/flutter/flutter/pull/57821) fix a typo in trace events for the image cache (cla: yes, framework, team, waiting for tree to go green) [57829](https://github.com/flutter/flutter/pull/57829) [flutter_tools] forward flutter format to dart format and deprecate (cla: yes, tool, waiting for tree to go green) [57830](https://github.com/flutter/flutter/pull/57830) [flutter_tools] validate android arch and build number (cla: yes, tool, waiting for tree to go green) [57838](https://github.com/flutter/flutter/pull/57838) Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green) [57841](https://github.com/flutter/flutter/pull/57841) Deleted deprecated profile func and profile.dart (cla: yes, framework, waiting for tree to go green) [57868](https://github.com/flutter/flutter/pull/57868) [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green) [57871](https://github.com/flutter/flutter/pull/57871) [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool) [57873](https://github.com/flutter/flutter/pull/57873) [flutter_tools] URI encode dart-define values (cla: yes, tool, waiting for tree to go green) [57874](https://github.com/flutter/flutter/pull/57874) [flutter_tools] throw if asked to build release for x86_64 (cla: yes, tool, waiting for tree to go green) [57907](https://github.com/flutter/flutter/pull/57907) flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool) [57963](https://github.com/flutter/flutter/pull/57963) [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool) [58011](https://github.com/flutter/flutter/pull/58011) write test to convince self of lack of timing issue (cla: yes, tool) [58016](https://github.com/flutter/flutter/pull/58016) Consistent American spelling of 'behavior' (cla: yes, f: material design, framework, waiting for tree to go green) [58018](https://github.com/flutter/flutter/pull/58018) Prevent building non-android plugins in build aar (cla: yes, team, tool, waiting for tree to go green) [58024](https://github.com/flutter/flutter/pull/58024) fix cupertino page route dismisses hero transition when swipe to the … (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58027](https://github.com/flutter/flutter/pull/58027) Link to migration guide template from pull request template (cla: yes, team, waiting for tree to go green) [58030](https://github.com/flutter/flutter/pull/58030) Remove invalid `local` from macos_assemble.sh (cla: yes, tool, waiting for tree to go green) [58031](https://github.com/flutter/flutter/pull/58031) Roll Engine from 9ce1e5c5c7e7 to 1a8349888e97 (69 revisions) (cla: yes, waiting for tree to go green) [58037](https://github.com/flutter/flutter/pull/58037) [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green) [58039](https://github.com/flutter/flutter/pull/58039) [flutter_tools] Put a heap size limit on the frontend_server (cla: yes, tool, waiting for tree to go green) [58050](https://github.com/flutter/flutter/pull/58050) Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review) [58064](https://github.com/flutter/flutter/pull/58064) print checksum differences when detected by --verify-only (cla: yes, tool) [58069](https://github.com/flutter/flutter/pull/58069) Fix Linux plugin template build visibility (cla: yes, tool) [58094](https://github.com/flutter/flutter/pull/58094) Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green) [58098](https://github.com/flutter/flutter/pull/58098) Added Documentation for AnimationController.repeat() (cla: yes, framework) [58104](https://github.com/flutter/flutter/pull/58104) Run `flutter update-packages --force-upgrade`. (cla: yes, team) [58111](https://github.com/flutter/flutter/pull/58111) Roll Engine from 1a8349888e97 to 2663be837081 (16 revisions) (cla: yes, waiting for tree to go green) [58112](https://github.com/flutter/flutter/pull/58112) Mark non-flaky test as such (cla: yes, team) [58117](https://github.com/flutter/flutter/pull/58117) Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green) [58118](https://github.com/flutter/flutter/pull/58118) Add function to set structured error early (cla: yes, framework) [58121](https://github.com/flutter/flutter/pull/58121) Update stocks example to use l10n.yaml workflow (cla: yes, team, waiting for tree to go green) [58123](https://github.com/flutter/flutter/pull/58123) Revert "write test to convince self of lack of timing issue" (cla: yes, tool) [58131](https://github.com/flutter/flutter/pull/58131) [flutter] allow loading either NOTICES or LICENSE (cla: yes, framework, waiting for tree to go green) [58135](https://github.com/flutter/flutter/pull/58135) [release] remove .dart_tool directory from uploaded zip (cla: yes, team, waiting for tree to go green) [58136](https://github.com/flutter/flutter/pull/58136) Roll Engine from 2663be837081 to 2b616caad05c (2 revisions) (cla: yes, waiting for tree to go green) [58137](https://github.com/flutter/flutter/pull/58137) Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green) [58140](https://github.com/flutter/flutter/pull/58140) Add a backward variant of BenchCardInfiniteScroll (cla: yes, team) [58151](https://github.com/flutter/flutter/pull/58151) Error message when size has not been set in RenderBox's performLayout should be well versed (cla: yes, framework, waiting for tree to go green) [58154](https://github.com/flutter/flutter/pull/58154) Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green) [58174](https://github.com/flutter/flutter/pull/58174) Start from a clean slate when bundling Linux build (cla: yes, tool) [58175](https://github.com/flutter/flutter/pull/58175) [devicelab] less sensitivity to whitespace in flutter_performance_test (cla: yes, team) [58180](https://github.com/flutter/flutter/pull/58180) Roll Engine from 2b616caad05c to c86dcac156cd (7 revisions) (cla: yes, waiting for tree to go green) [58188](https://github.com/flutter/flutter/pull/58188) [flutter_tools] only copy cached dill after startup (cla: yes, tool) [58189](https://github.com/flutter/flutter/pull/58189) Update Windows template version (cla: yes, tool) [58193](https://github.com/flutter/flutter/pull/58193) Revert "[flutter_tools] always initialize the resident runner from di… (cla: yes, tool, waiting for tree to go green) [58202](https://github.com/flutter/flutter/pull/58202) Build routes even less (cla: yes, framework, waiting for tree to go green) [58203](https://github.com/flutter/flutter/pull/58203) Various bits of trivial cleanup (cla: yes, framework, waiting for tree to go green) [58204](https://github.com/flutter/flutter/pull/58204) Error message improvements (cla: yes, framework, waiting for tree to go green) [58206](https://github.com/flutter/flutter/pull/58206) Dedupe (and update) the --track-widget-creation documentation (cla: yes, framework, waiting for tree to go green) [58208](https://github.com/flutter/flutter/pull/58208) Revert "Revert "[flutter_tools] always initialize the resident runner from di…" (cla: yes, tool, waiting for tree to go green) [58209](https://github.com/flutter/flutter/pull/58209) Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework) [58210](https://github.com/flutter/flutter/pull/58210) [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework) [58213](https://github.com/flutter/flutter/pull/58213) update build doc string to advocate avoiding doing tasks other than b… (cla: yes, d: api docs, framework, waiting for tree to go green) [58214](https://github.com/flutter/flutter/pull/58214) Roll Engine from c86dcac156cd to c5d012900f7d (2 revisions) (cla: yes, waiting for tree to go green) [58215](https://github.com/flutter/flutter/pull/58215) Fix extraneous spaces printed by flutter tool if the lock isn't waited on. (cla: yes, tool) [58221](https://github.com/flutter/flutter/pull/58221) Roll Engine from c5d012900f7d to 17737e6fd4ec (6 revisions) (cla: yes, waiting for tree to go green) [58230](https://github.com/flutter/flutter/pull/58230) Roll Engine from 17737e6fd4ec to c19459ab7d3f (2 revisions) (cla: yes, waiting for tree to go green) [58255](https://github.com/flutter/flutter/pull/58255) Roll Engine from c19459ab7d3f to 6a470b8bccf0 (3 revisions) (cla: yes, waiting for tree to go green) [58257](https://github.com/flutter/flutter/pull/58257) Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool) [58258](https://github.com/flutter/flutter/pull/58258) Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58259](https://github.com/flutter/flutter/pull/58259) enable Navigator.of to accept a navigator element and return its stat… (cla: yes, framework, waiting for tree to go green) [58267](https://github.com/flutter/flutter/pull/58267) [flutter_tools] remove execute permissions on shared.sh, and move off path (cla: yes, waiting for tree to go green) [58272](https://github.com/flutter/flutter/pull/58272) Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework) [58276](https://github.com/flutter/flutter/pull/58276) Roll Engine from 6a470b8bccf0 to 4d78121a11db (3 revisions) (cla: yes, waiting for tree to go green) [58277](https://github.com/flutter/flutter/pull/58277) Enabling the ImageFiltered(ImageFilter.matrix) page of macrobenchmark (cla: yes, team, waiting for tree to go green) [58281](https://github.com/flutter/flutter/pull/58281) Revert flutter command to shlock when flock isn't available (cla: yes) [58282](https://github.com/flutter/flutter/pull/58282) Roll Engine from 4d78121a11db to 685699b351a9 (1 revision) (cla: yes, waiting for tree to go green) [58284](https://github.com/flutter/flutter/pull/58284) Send text error in JSON and print in tools (cla: yes, framework, tool) [58293](https://github.com/flutter/flutter/pull/58293) Roll Engine from 685699b351a9 to 3dfbe722b965 (2 revisions) (cla: yes, waiting for tree to go green) [58328](https://github.com/flutter/flutter/pull/58328) [flutter_tools] deprecate flutter generate and codegen (cla: yes, team, tool, waiting for tree to go green) [58332](https://github.com/flutter/flutter/pull/58332) [flutter_tools] cleanup to devfs Operations (cla: yes, tool) [58335](https://github.com/flutter/flutter/pull/58335) [flutter_tools] do not include material icon incorrectly (cla: yes, tool) [58340](https://github.com/flutter/flutter/pull/58340) Roll Engine from 3dfbe722b965 to 923687f0e7ff (2 revisions) (cla: yes, waiting for tree to go green) [58344](https://github.com/flutter/flutter/pull/58344) Revert "Add clipBehavior to widgets with clipRect" (cla: yes, f: material design, framework, team) [58346](https://github.com/flutter/flutter/pull/58346) EditableText.bringIntoView calls showOnScreen (cla: yes, framework, waiting for tree to go green) [58350](https://github.com/flutter/flutter/pull/58350) More information about our error message APIs. (cla: yes, framework) [58372](https://github.com/flutter/flutter/pull/58372) Fix non-local-engine Linux release builds (cla: yes, tool, waiting for tree to go green) [58390](https://github.com/flutter/flutter/pull/58390) use Expand-Archive and Compress-Archive in windows os utils (cla: yes, tool) [58392](https://github.com/flutter/flutter/pull/58392) iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break) [58421](https://github.com/flutter/flutter/pull/58421) Fix typo in error message for flutter doctor (cla: yes, tool, waiting for tree to go green) [58430](https://github.com/flutter/flutter/pull/58430) [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory) [58436](https://github.com/flutter/flutter/pull/58436) Roll Engine from 923687f0e7ff to d501c49cce4c (5 revisions) (cla: yes, waiting for tree to go green) [58443](https://github.com/flutter/flutter/pull/58443) Roll Engine from d501c49cce4c to c5234bce6e9f (1 revision) (cla: yes, waiting for tree to go green) [58444](https://github.com/flutter/flutter/pull/58444) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green) [58448](https://github.com/flutter/flutter/pull/58448) InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework) [58449](https://github.com/flutter/flutter/pull/58449) Roll Engine from c5234bce6e9f to e39301f23f32 (2 revisions) (cla: yes, waiting for tree to go green) [58454](https://github.com/flutter/flutter/pull/58454) Revert "[flutter_tools] only copy cached dill after startup" (cla: yes, tool) [58455](https://github.com/flutter/flutter/pull/58455) [flutter_tools] reland: copy dill after startup (cla: yes, tool) [58456](https://github.com/flutter/flutter/pull/58456) Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green) [58458](https://github.com/flutter/flutter/pull/58458) Rename integration test ios_app_with_watch_companion -> ios_app_with_extensions (cla: yes, team) [58460](https://github.com/flutter/flutter/pull/58460) Roll Engine from e39301f23f32 to 5a085ac3c6a2 (6 revisions) (cla: yes, waiting for tree to go green) [58474](https://github.com/flutter/flutter/pull/58474) [flutter tools] Don't return success if we trigger runZoned's error callback (cla: yes, tool, waiting for tree to go green) [58482](https://github.com/flutter/flutter/pull/58482) Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green) [58499](https://github.com/flutter/flutter/pull/58499) [devicelab] mark ios transition_perf as non-flaky (cla: yes, team, waiting for tree to go green) [58503](https://github.com/flutter/flutter/pull/58503) Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework) [58504](https://github.com/flutter/flutter/pull/58504) Revert "Remove outdated disable_input_output_paths from example project Podfiles" (cla: yes, d: examples, team) [58509](https://github.com/flutter/flutter/pull/58509) Roll Engine from 5a085ac3c6a2 to 2a024ead01e7 (5 revisions) (cla: yes, waiting for tree to go green) [58511](https://github.com/flutter/flutter/pull/58511) Add material page, cupertino page, and transition page classes (cla: yes, framework) [58513](https://github.com/flutter/flutter/pull/58513) benchmark updating many child layers (cla: yes, team) [58514](https://github.com/flutter/flutter/pull/58514) add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green) [58520](https://github.com/flutter/flutter/pull/58520) Roll Engine from 2a024ead01e7 to 6589dcb2d459 (4 revisions) (cla: yes, waiting for tree to go green) [58522](https://github.com/flutter/flutter/pull/58522) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green) [58524](https://github.com/flutter/flutter/pull/58524) Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green) [58525](https://github.com/flutter/flutter/pull/58525) Revert "[flutter_tools] Put a heap size limit on the frontend_server" (cla: yes, tool, waiting for tree to go green) [58530](https://github.com/flutter/flutter/pull/58530) [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green) [58533](https://github.com/flutter/flutter/pull/58533) [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool) [58535](https://github.com/flutter/flutter/pull/58535) Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework) [58538](https://github.com/flutter/flutter/pull/58538) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58539](https://github.com/flutter/flutter/pull/58539) [flutter_tools] Allow the tool to suppress compilation errors. (cla: yes, tool) [58541](https://github.com/flutter/flutter/pull/58541) Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green) [58544](https://github.com/flutter/flutter/pull/58544) Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green) [58545](https://github.com/flutter/flutter/pull/58545) Roll Engine from 6589dcb2d459 to 859d892f1fca (4 revisions) (cla: yes, waiting for tree to go green) [58549](https://github.com/flutter/flutter/pull/58549) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [58551](https://github.com/flutter/flutter/pull/58551) [flutter_tools] iOS VM Service logs should include stderr (cla: yes, tool, waiting for tree to go green) [58557](https://github.com/flutter/flutter/pull/58557) [flutter_tools] remove handling of error that is fixed (cla: yes, tool, waiting for tree to go green) [58593](https://github.com/flutter/flutter/pull/58593) Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green) [58607](https://github.com/flutter/flutter/pull/58607) Revert "[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58617](https://github.com/flutter/flutter/pull/58617) Remove already covered devicelab test: tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team) [58618](https://github.com/flutter/flutter/pull/58618) Revert "Don't elapse real time during IOSDevice.startApp tests" (cla: yes, tool) [58620](https://github.com/flutter/flutter/pull/58620) Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team) [58621](https://github.com/flutter/flutter/pull/58621) Make it possible to remove nodes from traversal sort. (cla: yes, framework, waiting for tree to go green) [58622](https://github.com/flutter/flutter/pull/58622) Don't elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green) [58630](https://github.com/flutter/flutter/pull/58630) Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green) [58635](https://github.com/flutter/flutter/pull/58635) Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green) [58644](https://github.com/flutter/flutter/pull/58644) Add FakeAsync to delay tests (cla: yes, team, tool) [58645](https://github.com/flutter/flutter/pull/58645) Move create project build tests to permeable command shard (cla: yes, team, tool) [58646](https://github.com/flutter/flutter/pull/58646) Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [58647](https://github.com/flutter/flutter/pull/58647) Roll Engine from 859d892f1fca to 2608f2ee9f54 (9 revisions) (cla: yes, waiting for tree to go green) [58648](https://github.com/flutter/flutter/pull/58648) Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green) [58649](https://github.com/flutter/flutter/pull/58649) Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green) [58650](https://github.com/flutter/flutter/pull/58650) Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework) [58653](https://github.com/flutter/flutter/pull/58653) [flutter_tools] avoid serving files outside of expected paths (cla: yes, tool, waiting for tree to go green) [58655](https://github.com/flutter/flutter/pull/58655) debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green) [58656](https://github.com/flutter/flutter/pull/58656) Add the ability to ignore lines depending on comments (cla: yes, team, tool) [58670](https://github.com/flutter/flutter/pull/58670) LG debugging/logcat fixed (cla: yes, tool) [58686](https://github.com/flutter/flutter/pull/58686) [PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [58688](https://github.com/flutter/flutter/pull/58688) [flutter_tools] unbreak g3 roll (tool, waiting for tree to go green) [58692](https://github.com/flutter/flutter/pull/58692) Revert "Roll Engine from 859d892f1fca to 2608f2ee9f54 (9 revisions)" (cla: yes, engine) [58698](https://github.com/flutter/flutter/pull/58698) Roll Engine from 859d892f1fca to d3427ddb8546 (17 revisions) (cla: yes, waiting for tree to go green) [58701](https://github.com/flutter/flutter/pull/58701) Increase delay to verify cause of flakiness (cla: yes, team, waiting for tree to go green) [58703](https://github.com/flutter/flutter/pull/58703) [flutter_tools] use -f when fetching tags (cla: yes, tool) [58708](https://github.com/flutter/flutter/pull/58708) Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [58709](https://github.com/flutter/flutter/pull/58709) Revert "Roll Engine from 859d892f1fca to d3427ddb8546 (17 revisions)" (cla: yes) [58710](https://github.com/flutter/flutter/pull/58710) Roll Engine from 859d892f1fca to d3427ddb8546 (17 revisions) (cla: yes, waiting for tree to go green) [58711](https://github.com/flutter/flutter/pull/58711) [flutter_tools] unbreak g3 usage of installHook (cla: yes, tool, waiting for tree to go green) [58713](https://github.com/flutter/flutter/pull/58713) Don't require a specific Windows 10 SDK (cla: yes, tool) [58715](https://github.com/flutter/flutter/pull/58715) Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green) [58719](https://github.com/flutter/flutter/pull/58719) Revert "use Expand-Archive and Compress-Archive in windows os utils" (cla: yes, tool) [58720](https://github.com/flutter/flutter/pull/58720) Revert "Roll Engine from 859d892f1fca to d3427ddb8546 (17 revisions)" (cla: yes) [58723](https://github.com/flutter/flutter/pull/58723) Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green) [58732](https://github.com/flutter/flutter/pull/58732) Revert "flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies" (cla: yes, tool) [58736](https://github.com/flutter/flutter/pull/58736) Update engine hash for 1.19.0-4.0.pre (cla: yes, engine) [58743](https://github.com/flutter/flutter/pull/58743) [flutter_tools] write sksl on exit (cla: yes, tool) [58746](https://github.com/flutter/flutter/pull/58746) add missing arguments for all constructors of ListView and GridView (cla: yes, framework, waiting for tree to go green) [58747](https://github.com/flutter/flutter/pull/58747) Add Android device build/OS/API Level information to logs. (cla: yes, team) [58751](https://github.com/flutter/flutter/pull/58751) Roll Engine from 859d892f1fca to 8cc760065b4d (29 revisions) (cla: yes, waiting for tree to go green) [58754](https://github.com/flutter/flutter/pull/58754) Update build doc (cla: yes, framework, waiting for tree to go green) [58771](https://github.com/flutter/flutter/pull/58771) [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green) [58780](https://github.com/flutter/flutter/pull/58780) fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green) [58783](https://github.com/flutter/flutter/pull/58783) fix typo in macrobenchmarks/lib/main (cla: yes, team) [58798](https://github.com/flutter/flutter/pull/58798) [flutter_tools] don't use verbose when in doctor or help command (cla: yes, tool) [58799](https://github.com/flutter/flutter/pull/58799) Revert "Increase delay to verify cause of flakiness" (cla: yes, team, waiting for tree to go green) [58800](https://github.com/flutter/flutter/pull/58800) Roll Engine from 8cc760065b4d to e87a05fbba78 (7 revisions) (cla: yes, waiting for tree to go green) [58804](https://github.com/flutter/flutter/pull/58804) [flutter_tools] minor cleanup to vm service connection (cla: yes, tool, waiting for tree to go green) [58808](https://github.com/flutter/flutter/pull/58808) Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [58812](https://github.com/flutter/flutter/pull/58812) [flutter tools] Change the desktop device names and IDs (cla: yes, tool) [58815](https://github.com/flutter/flutter/pull/58815) Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green) [58817](https://github.com/flutter/flutter/pull/58817) [flutter_tools] remove deprecation warning on flutter format (cla: yes, tool, waiting for tree to go green) [58820](https://github.com/flutter/flutter/pull/58820) Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green) [58823](https://github.com/flutter/flutter/pull/58823) Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework) [58826](https://github.com/flutter/flutter/pull/58826) Roll Engine from e87a05fbba78 to dbb57f1874fd (6 revisions) (cla: yes, waiting for tree to go green) [58829](https://github.com/flutter/flutter/pull/58829) Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green) [58830](https://github.com/flutter/flutter/pull/58830) [flutter_tools] disable dartdev when calling snapshots directly (cla: yes, tool, waiting for tree to go green) [58831](https://github.com/flutter/flutter/pull/58831) Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green) [58838](https://github.com/flutter/flutter/pull/58838) Turn off flaky indicator for flutter_gallery__back_button_memory and flutter_gallery__memory_nav (cla: yes, team) [58842](https://github.com/flutter/flutter/pull/58842) [flutter_tools] fix capitalization in build commands (cla: yes, tool, waiting for tree to go green) [58843](https://github.com/flutter/flutter/pull/58843) Restore some typography tests (cla: yes, f: material design, framework) [58847](https://github.com/flutter/flutter/pull/58847) Roll Engine from dbb57f1874fd to ff6462e45779 (3 revisions) (cla: yes, waiting for tree to go green) [58871](https://github.com/flutter/flutter/pull/58871) [flutter_tools] use correct sdk path for analysis (cla: yes, tool) [58872](https://github.com/flutter/flutter/pull/58872) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [58875](https://github.com/flutter/flutter/pull/58875) [flutter_tools] inject output preferences at the top level (cla: yes, tool) [58879](https://github.com/flutter/flutter/pull/58879) [flutter_tools] support bundle-sksl-path on all desktop and mobile targets (cla: yes, tool) [58885](https://github.com/flutter/flutter/pull/58885) Roll Engine from ff6462e45779 to c0365be2ab70 (7 revisions) (cla: yes, waiting for tree to go green) [58887](https://github.com/flutter/flutter/pull/58887) [flutter_tools] only restrict devices based on arch + buildMode, not emulator status (cla: yes, tool, waiting for tree to go green) [58890](https://github.com/flutter/flutter/pull/58890) [flutter_tools] change service worker load to NOTICES (cla: yes, tool) [58891](https://github.com/flutter/flutter/pull/58891) [flutter_tools] rename library to be less absurd (cla: yes, tool, waiting for tree to go green) [58893](https://github.com/flutter/flutter/pull/58893) Roll Engine from c0365be2ab70 to bd7dd73b4744 (3 revisions) (cla: yes, waiting for tree to go green) [58899](https://github.com/flutter/flutter/pull/58899) Roll Engine from bd7dd73b4744 to 5709dc531814 (1 revision) (cla: yes, waiting for tree to go green) [58903](https://github.com/flutter/flutter/pull/58903) Roll Engine from 5709dc531814 to 3f224d8e861f (2 revisions) (cla: yes, waiting for tree to go green) [58929](https://github.com/flutter/flutter/pull/58929) Roll Engine from 3f224d8e861f to f38a197945e9 (5 revisions) (cla: yes, waiting for tree to go green) [58935](https://github.com/flutter/flutter/pull/58935) Roll Engine from f38a197945e9 to 8516b39dcdc8 (1 revision) (cla: yes, waiting for tree to go green) [58946](https://github.com/flutter/flutter/pull/58946) Roll Engine from 8516b39dcdc8 to dfdd88deb7e3 (1 revision) (cla: yes, waiting for tree to go green) [58952](https://github.com/flutter/flutter/pull/58952) Roll Engine from dfdd88deb7e3 to c7f9725521c0 (1 revision) (cla: yes, waiting for tree to go green) [58971](https://github.com/flutter/flutter/pull/58971) Update animation.dart - Staggered animations: TweenSequences example (cla: yes, framework) [58986](https://github.com/flutter/flutter/pull/58986) Line break for devicelab/bin/run.dart help info (cla: yes, team) [58994](https://github.com/flutter/flutter/pull/58994) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59001](https://github.com/flutter/flutter/pull/59001) fix analysis on master (cla: yes, tool) [59002](https://github.com/flutter/flutter/pull/59002) Revert "Send text error in JSON and print in tools" (cla: yes, framework, tool) [59007](https://github.com/flutter/flutter/pull/59007) Roll Engine from c7f9725521c0 to f581f428e981 (5 revisions) (cla: yes, waiting for tree to go green) [59008](https://github.com/flutter/flutter/pull/59008) Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green) [59009](https://github.com/flutter/flutter/pull/59009) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green) [59010](https://github.com/flutter/flutter/pull/59010) Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green) [59011](https://github.com/flutter/flutter/pull/59011) Roll Engine from f581f428e981 to 5edd7666287c (2 revisions) (cla: yes, waiting for tree to go green) [59012](https://github.com/flutter/flutter/pull/59012) Release cache lock for commands after required artifacts are downloaded (cla: yes, tool, waiting for tree to go green) [59013](https://github.com/flutter/flutter/pull/59013) Make non-flaky tests as such (cla: yes, team, waiting for tree to go green) [59014](https://github.com/flutter/flutter/pull/59014) Handle selection ranges where getBoxesForSelection returns an empty list (cla: yes, framework, waiting for tree to go green) [59015](https://github.com/flutter/flutter/pull/59015) fix overscroll position if there is sliver before center sliver in cu… (cla: yes, f: scrolling, framework, waiting for tree to go green) [59018](https://github.com/flutter/flutter/pull/59018) Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green) [59023](https://github.com/flutter/flutter/pull/59023) add a help link to the default module template readme (cla: yes, tool, waiting for tree to go green) [59025](https://github.com/flutter/flutter/pull/59025) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool) [59026](https://github.com/flutter/flutter/pull/59026) [flutter_tools] Fix slow ios_device_start_prebuilt_test (cla: yes, tool, waiting for tree to go green) [59028](https://github.com/flutter/flutter/pull/59028) Roll Engine from 5edd7666287c to 580ab9c3c592 (3 revisions) (cla: yes, waiting for tree to go green) [59035](https://github.com/flutter/flutter/pull/59035) Revert "[flutter_tools] use correct sdk path for analysis" (cla: yes, tool) [59039](https://github.com/flutter/flutter/pull/59039) Roll Engine from 580ab9c3c592 to 6fd335671508 (3 revisions) (cla: yes, waiting for tree to go green) [59044](https://github.com/flutter/flutter/pull/59044) Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59046](https://github.com/flutter/flutter/pull/59046) Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool) [59069](https://github.com/flutter/flutter/pull/59069) nnbd annotations in flutter_goldens_client (cla: yes, waiting for tree to go green) [59080](https://github.com/flutter/flutter/pull/59080) Remove use of BundleUtilities in Linux build (cla: yes, tool) [59081](https://github.com/flutter/flutter/pull/59081) [flutter_tools] Reland: use correct sdk path for analysis (cla: yes, tool) [59083](https://github.com/flutter/flutter/pull/59083) [flutter_tools] include dart-defines in cached kernel name (cla: yes, tool, waiting for tree to go green) [59087](https://github.com/flutter/flutter/pull/59087) [flutter_tools] create NotifyingLogger at the top level when running flutter run --machine or flutter attach --machine (cla: yes, tool) [59095](https://github.com/flutter/flutter/pull/59095) Roll Engine from 6fd335671508 to e8c13aa012c9 (10 revisions) (cla: yes, waiting for tree to go green) [59096](https://github.com/flutter/flutter/pull/59096) Fix docs for Focus.onKey event propagation (cla: yes, framework, waiting for tree to go green) [59102](https://github.com/flutter/flutter/pull/59102) Update engine hash for 1.19.0-4.1.pre (cla: yes, engine) [59108](https://github.com/flutter/flutter/pull/59108) fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green) [59111](https://github.com/flutter/flutter/pull/59111) Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green) [59115](https://github.com/flutter/flutter/pull/59115) Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green) [59117](https://github.com/flutter/flutter/pull/59117) Make the InkResponse's focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green) [59120](https://github.com/flutter/flutter/pull/59120) Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59128](https://github.com/flutter/flutter/pull/59128) Fix typo in scroll_aware_image_provider.dart (cla: yes, framework, waiting for tree to go green) [59156](https://github.com/flutter/flutter/pull/59156) Add sample code to PositionedTransition (cla: yes, framework) [59160](https://github.com/flutter/flutter/pull/59160) Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design) [59162](https://github.com/flutter/flutter/pull/59162) Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green) [59175](https://github.com/flutter/flutter/pull/59175) [flutter_tools] remove globals from proxy validator (cla: yes, tool) [59184](https://github.com/flutter/flutter/pull/59184) [flutter_tools] remove globals from compilers (cla: yes, team, tool) [59186](https://github.com/flutter/flutter/pull/59186) Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework) [59187](https://github.com/flutter/flutter/pull/59187) Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green) [59191](https://github.com/flutter/flutter/pull/59191) [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [59196](https://github.com/flutter/flutter/pull/59196) [Widgets] Add DefaultTextHeightBehavior inherited widget. (cla: yes, framework, waiting for tree to go green) [59197](https://github.com/flutter/flutter/pull/59197) Revert "[flutter_tools] inject output preferences at the top level" (cla: yes, tool) [59201](https://github.com/flutter/flutter/pull/59201) Add iOS Podfile migration warning to support federated plugins (cla: yes, tool, waiting for tree to go green) [59209](https://github.com/flutter/flutter/pull/59209) Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59210](https://github.com/flutter/flutter/pull/59210) Do not depend on embedded $dartUriBase (tool) [59215](https://github.com/flutter/flutter/pull/59215) [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green) [59217](https://github.com/flutter/flutter/pull/59217) Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green) [59219](https://github.com/flutter/flutter/pull/59219) Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [59221](https://github.com/flutter/flutter/pull/59221) Revert "Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)" (a: text input, cla: yes, framework, waiting for tree to go green) [59222](https://github.com/flutter/flutter/pull/59222) Roll Engine from e8c13aa012c9 to 965fbbed1776 (42 revisions) (cla: yes, waiting for tree to go green) [59250](https://github.com/flutter/flutter/pull/59250) Don't crash on requests for invalid package URLs (cla: yes, tool, waiting for tree to go green) [59251](https://github.com/flutter/flutter/pull/59251) [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green) [59257](https://github.com/flutter/flutter/pull/59257) fix tree (cla: yes, team) [59267](https://github.com/flutter/flutter/pull/59267) Characters package (cla: yes, team, waiting for tree to go green) [59273](https://github.com/flutter/flutter/pull/59273) Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green) [59276](https://github.com/flutter/flutter/pull/59276) Add --device-id option for devicelab/bin/run.dart (cla: yes, team) [59279](https://github.com/flutter/flutter/pull/59279) First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green) [59280](https://github.com/flutter/flutter/pull/59280) test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green) [59282](https://github.com/flutter/flutter/pull/59282) Roll Engine from 965fbbed1776 to d417772d7acd (21 revisions) (cla: yes, waiting for tree to go green) [59283](https://github.com/flutter/flutter/pull/59283) [versions] Update all the versions (cla: yes, team, tool) [59285](https://github.com/flutter/flutter/pull/59285) Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green) [59287](https://github.com/flutter/flutter/pull/59287) Switch Linux to the GTK embedding (cla: yes, tool) [59290](https://github.com/flutter/flutter/pull/59290) Reverse the semantics order of modal barrier and modal scope (cla: yes, framework) [59291](https://github.com/flutter/flutter/pull/59291) [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool) [59294](https://github.com/flutter/flutter/pull/59294) flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool, waiting for tree to go green) [59310](https://github.com/flutter/flutter/pull/59310) Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green) [59317](https://github.com/flutter/flutter/pull/59317) Implement Comparable<TimeOfDay> (cla: yes, f: material design, framework, waiting for tree to go green) [59334](https://github.com/flutter/flutter/pull/59334) Revert "Roll Engine from 965fbbed1776 to d417772d7acd (21 revisions)" (cla: yes, engine) [59342](https://github.com/flutter/flutter/pull/59342) Add support for horizontal and vertical double-arrow system cursors (cla: yes, framework, waiting for tree to go green) [59343](https://github.com/flutter/flutter/pull/59343) CMake fix for Linux projects without plugins (cla: yes, tool, waiting for tree to go green) [59347](https://github.com/flutter/flutter/pull/59347) Revert "[Widgets] Add DefaultTextHeightBehavior inherited widget." (cla: yes, framework) [59350](https://github.com/flutter/flutter/pull/59350) Re-land "[Widgets] Add DefaultTextHeightBehavior inherited widget." (cla: yes, framework, waiting for tree to go green) [59358](https://github.com/flutter/flutter/pull/59358) Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green) [59360](https://github.com/flutter/flutter/pull/59360) More useful error messages when you use Stack without a textDirection. (cla: yes, framework, waiting for tree to go green) [59363](https://github.com/flutter/flutter/pull/59363) Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green) [59364](https://github.com/flutter/flutter/pull/59364) Reland non-breaking "Add clipBehavior to widgets with clipRect #55977" (cla: yes, f: material design, framework, team) [59365](https://github.com/flutter/flutter/pull/59365) Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green) [59369](https://github.com/flutter/flutter/pull/59369) [flutter_tools] move mingit path addition back to flutter.bat (cla: yes, tool, waiting for tree to go green) [59379](https://github.com/flutter/flutter/pull/59379) Handle backspace edgecase in trailing whitespace formatter. (cla: yes, framework, waiting for tree to go green) [59384](https://github.com/flutter/flutter/pull/59384) Roll Engine from 965fbbed1776 to 801559ac4ed3 (50 revisions) (cla: yes, waiting for tree to go green) [59405](https://github.com/flutter/flutter/pull/59405) [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green) [59436](https://github.com/flutter/flutter/pull/59436) Removed an unused static local key from ScrollAction. (cla: yes, framework, waiting for tree to go green) [59474](https://github.com/flutter/flutter/pull/59474) Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green) [59478](https://github.com/flutter/flutter/pull/59478) InteractiveViewer mouse scale bug (cla: yes, framework, waiting for tree to go green) [59481](https://github.com/flutter/flutter/pull/59481) [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59484](https://github.com/flutter/flutter/pull/59484) Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green) [59487](https://github.com/flutter/flutter/pull/59487) [flutter_tools] deprecate build aot (cla: yes, tool) [59490](https://github.com/flutter/flutter/pull/59490) Revert "Roll Engine from 965fbbed1776 to 801559ac4ed3 (50 revisions)" (cla: yes, engine) [59497](https://github.com/flutter/flutter/pull/59497) More word substitutions (cla: yes, tool, waiting for tree to go green) [59500](https://github.com/flutter/flutter/pull/59500) Update recipes location. (cla: yes, framework, team) [59503](https://github.com/flutter/flutter/pull/59503) Revert "Build routes even less" (cla: yes, framework, waiting for tree to go green) [59507](https://github.com/flutter/flutter/pull/59507) Add `--platforms` to `flutter create -t plugin` command (cla: yes, tool, waiting for tree to go green) [59508](https://github.com/flutter/flutter/pull/59508) Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green) [59512](https://github.com/flutter/flutter/pull/59512) [flutter_tools] update libimobiledevice (cla: yes, tool) [59514](https://github.com/flutter/flutter/pull/59514) Replace collection's SetEquality with flutter's own (cla: yes, f: cupertino, framework, waiting for tree to go green) [59521](https://github.com/flutter/flutter/pull/59521) Remove dependency on package:collection by moving mergeSort into foundation/collections.dart (cla: yes, framework) [59539](https://github.com/flutter/flutter/pull/59539) [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool) [59561](https://github.com/flutter/flutter/pull/59561) Revert "Modernize selection menu appearance" (a: internationalization, cla: yes, f: cupertino, f: material design, framework) [59568](https://github.com/flutter/flutter/pull/59568) [flutter_tools] fix the post message event attribute used to skip waiting (cla: yes, tool, waiting for tree to go green) [59571](https://github.com/flutter/flutter/pull/59571) [flutter_tools] add toggle `b` and service extension to change platform brightness (cla: yes, framework, tool) [59586](https://github.com/flutter/flutter/pull/59586) Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green) [59588](https://github.com/flutter/flutter/pull/59588) Skip codecov upload (cla: yes) [59607](https://github.com/flutter/flutter/pull/59607) Specify encoding for vswhere output (cla: yes, tool) [59617](https://github.com/flutter/flutter/pull/59617) Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green) [59620](https://github.com/flutter/flutter/pull/59620) Export characters (cla: yes, framework, waiting for tree to go green) [59624](https://github.com/flutter/flutter/pull/59624) [flutter_tools] make expando on vm service null safe to handle web stuff (cla: yes, tool, waiting for tree to go green) [59626](https://github.com/flutter/flutter/pull/59626) [flutter_tools] handle NPE in list views method (cla: yes, tool) [59630](https://github.com/flutter/flutter/pull/59630) Fix Linux shell window default size (cla: yes, tool) [59631](https://github.com/flutter/flutter/pull/59631) ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green) [59632](https://github.com/flutter/flutter/pull/59632) Don't crash when pubspec isn't a map (cla: yes, tool, waiting for tree to go green) [59641](https://github.com/flutter/flutter/pull/59641) [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green) [59666](https://github.com/flutter/flutter/pull/59666) update _isolates_io.dart for better nnbd migration (cla: yes, framework) [59677](https://github.com/flutter/flutter/pull/59677) Revert "Characters Package" (cla: yes, f: material design, framework) [59681](https://github.com/flutter/flutter/pull/59681) Roll Engine from 965fbbed1776 to 237b5f32eff8 (95 revisions) (cla: yes, waiting for tree to go green) [59692](https://github.com/flutter/flutter/pull/59692) Revert "Roll Engine from 965fbbed1776 to 237b5f32eff8 (95 revisions) … (cla: yes, engine) [59695](https://github.com/flutter/flutter/pull/59695) Change iOS device discovery from polling to long-running observation (cla: yes, tool) [59705](https://github.com/flutter/flutter/pull/59705) skip fuchsia_precache-linux on release branches (cla: yes, waiting for tree to go green) [59706](https://github.com/flutter/flutter/pull/59706) [flutter_tools] maintain file manifest for create (cla: yes, tool) [59709](https://github.com/flutter/flutter/pull/59709) Clean up PollingDeviceDiscovery dispose (cla: yes, tool, waiting for tree to go green) [59711](https://github.com/flutter/flutter/pull/59711) fix the widget span layout when text scale factor != 1 (cla: yes, framework, waiting for tree to go green) [59714](https://github.com/flutter/flutter/pull/59714) Use a HeaderBar for Linux applications. (cla: yes, tool) [59717](https://github.com/flutter/flutter/pull/59717) Manual engine roll to update format of `compileExpression` RPC response (cla: yes, engine, tool, waiting for tree to go green) [59758](https://github.com/flutter/flutter/pull/59758) Update engine hash for flutter-1.20-candidate.1 (cla: yes, engine) [59773](https://github.com/flutter/flutter/pull/59773) [flutter_tools] add missing null-safety flags (cla: yes, tool) [59774](https://github.com/flutter/flutter/pull/59774) Revert "Manual engine roll to update format of `compileExpression` RP… (cla: yes, engine, tool) [59778](https://github.com/flutter/flutter/pull/59778) Reland Characters Usage (cla: yes, f: material design, framework) [59784](https://github.com/flutter/flutter/pull/59784) [devicelab] fix concurrent hot reload test: stderr != failure (cla: yes, team) [59786](https://github.com/flutter/flutter/pull/59786) [flutter_tools] make parent logger optional (cla: yes, tool) [59789](https://github.com/flutter/flutter/pull/59789) Make flutter and dart scripts invoke their batch file equivalents on Windows (cla: yes, tool) [59791](https://github.com/flutter/flutter/pull/59791) Fix doc for DecoratedBox (cla: yes, framework, waiting for tree to go green) [59802](https://github.com/flutter/flutter/pull/59802) Remove Linux shell window_configuration.cc (cla: yes, tool) [59803](https://github.com/flutter/flutter/pull/59803) Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green) [59804](https://github.com/flutter/flutter/pull/59804) Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green) [59807](https://github.com/flutter/flutter/pull/59807) Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green) [59809](https://github.com/flutter/flutter/pull/59809) Add integration tests for structured error (cla: yes, tool, waiting for tree to go green) [59810](https://github.com/flutter/flutter/pull/59810) Revert "flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies" (cla: yes, tool) [59813](https://github.com/flutter/flutter/pull/59813) Revert "Add the ability to ignore lines depending on comments" (cla: yes, tool) [59818](https://github.com/flutter/flutter/pull/59818) Roll Engine from b5f5e6332cb4 to f1355815488f (5 revisions) (cla: yes, waiting for tree to go green) [59822](https://github.com/flutter/flutter/pull/59822) [flutter_tools] track null safety usage (cla: yes, tool, waiting for tree to go green) [59826](https://github.com/flutter/flutter/pull/59826) Enabled expression evaluation in flutter for web by default (cla: yes, tool, waiting for tree to go green) [59832](https://github.com/flutter/flutter/pull/59832) [versions] update all versions (cla: yes, team, tool, waiting for tree to go green) [59856](https://github.com/flutter/flutter/pull/59856) Make upscaling images opt-in (a: images, cla: yes, framework) [59865](https://github.com/flutter/flutter/pull/59865) Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework) [59867](https://github.com/flutter/flutter/pull/59867) Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green) [59870](https://github.com/flutter/flutter/pull/59870) Revert "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59874](https://github.com/flutter/flutter/pull/59874) Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green) [59876](https://github.com/flutter/flutter/pull/59876) Re-land "Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter" (a: tests, cla: yes, f: cupertino, f: material design, framework, team) [59877](https://github.com/flutter/flutter/pull/59877) Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework) [59883](https://github.com/flutter/flutter/pull/59883) Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green) [59888](https://github.com/flutter/flutter/pull/59888) Fix the layout calculation in sliver list where the scroll offset cor… (cla: yes, f: scrolling, framework, waiting for tree to go green) [59892](https://github.com/flutter/flutter/pull/59892) Roll Engine from f1355815488f to 676cd566f731 (7 revisions) (cla: yes, waiting for tree to go green) [59896](https://github.com/flutter/flutter/pull/59896) gitignore `.last_build_id` file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green) [59900](https://github.com/flutter/flutter/pull/59900) Fix issue with stack traces getting mangled (a: tests, cla: yes, framework) [59906](https://github.com/flutter/flutter/pull/59906) Roll Engine from 676cd566f731 to 91a63d6a44c5 (4 revisions) (cla: yes, waiting for tree to go green) [59907](https://github.com/flutter/flutter/pull/59907) port devicelab from idevice_id -> xcdevices (cla: yes, team, tool) [59913](https://github.com/flutter/flutter/pull/59913) [EditableText] Inherit from DefaultTextHeightBehavior (cla: yes, framework) [59932](https://github.com/flutter/flutter/pull/59932) Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green) [59937](https://github.com/flutter/flutter/pull/59937) Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green) [59961](https://github.com/flutter/flutter/pull/59961) Support GTK keycodes (cla: yes, framework, team) [59966](https://github.com/flutter/flutter/pull/59966) Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green) [59981](https://github.com/flutter/flutter/pull/59981) Revert "Implement Comparable<TimeOfDay>" (cla: yes, f: material design, framework) [59982](https://github.com/flutter/flutter/pull/59982) [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework) [59986](https://github.com/flutter/flutter/pull/59986) Revert "fix the widget span layout when text scale factor != 1" (cla: yes, framework) [59992](https://github.com/flutter/flutter/pull/59992) Revert "[PageTransitionsBuilder] Fix 'ZoomPageTransition' built more than once" (cla: yes, f: material design, framework) [59996](https://github.com/flutter/flutter/pull/59996) [flutter_tools] android test cleanups (cla: yes, tool, waiting for tree to go green) [59997](https://github.com/flutter/flutter/pull/59997) [flutter_tools] cleanup fuchsia tests (cla: yes, tool, waiting for tree to go green) [59999](https://github.com/flutter/flutter/pull/59999) [flutter_tools] cleanup iOS test (tool, waiting for tree to go green) [60000](https://github.com/flutter/flutter/pull/60000) Revert "Fix outline button solid path when BorderSize.width is used" (f: material design, framework) [60002](https://github.com/flutter/flutter/pull/60002) 1.19 CP: [flutter_tools] move mingit path addition back to flutter.bat (#59369) (cla: yes, engine) [60009](https://github.com/flutter/flutter/pull/60009) RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green) [60015](https://github.com/flutter/flutter/pull/60015) Fix the paths in keyboard map templates (cla: yes, team) [60017](https://github.com/flutter/flutter/pull/60017) Fix typo in Linux CMake template (cla: yes, tool, waiting for tree to go green) [60018](https://github.com/flutter/flutter/pull/60018) [flutter_tools] switch linux desktop feature on (cla: yes, tool, waiting for tree to go green) [60021](https://github.com/flutter/flutter/pull/60021) reland "fix the widget span layout when text scale factor != 1" and h… (cla: yes, framework, waiting for tree to go green) [60041](https://github.com/flutter/flutter/pull/60041) Use assemble build system directly for build ios-framework (cla: yes, team, tool) [60042](https://github.com/flutter/flutter/pull/60042) Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework) [60045](https://github.com/flutter/flutter/pull/60045) Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team) [60059](https://github.com/flutter/flutter/pull/60059) Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green) [60060](https://github.com/flutter/flutter/pull/60060) [flutter_tools] fix root directory tests (cla: yes, tool) [60096](https://github.com/flutter/flutter/pull/60096) Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green) [60102](https://github.com/flutter/flutter/pull/60102) [flutter_tools] add null safety argument to unbreak frob (cla: yes, tool) [60111](https://github.com/flutter/flutter/pull/60111) Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool) [60114](https://github.com/flutter/flutter/pull/60114) Roll Engine from 91a63d6a44c5 to 57d13339997f (49 revisions) (cla: yes, waiting for tree to go green) [60116](https://github.com/flutter/flutter/pull/60116) [flutter_tools] Add support for web in plugin template. (cla: yes, tool, waiting for tree to go green) [60119](https://github.com/flutter/flutter/pull/60119) [flutter_tools] separate target platform, host platform, and architecture (cla: yes, tool) [60127](https://github.com/flutter/flutter/pull/60127) [versions] update all versions and fix tool tests (cla: yes, team, tool) [60128](https://github.com/flutter/flutter/pull/60128) Roll Engine from 57d13339997f to 2b6c71c4d3ab (5 revisions) (cla: yes, waiting for tree to go green) [60129](https://github.com/flutter/flutter/pull/60129) fix ink feature tries to get parent transformations when it is in the… (cla: yes, f: material design, framework, waiting for tree to go green) [60136](https://github.com/flutter/flutter/pull/60136) Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green) [60139](https://github.com/flutter/flutter/pull/60139) Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green) [60141](https://github.com/flutter/flutter/pull/60141) Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework) [60144](https://github.com/flutter/flutter/pull/60144) [flutter_tools] more test fixes (cla: yes, tool) [60147](https://github.com/flutter/flutter/pull/60147) Revert "[flutter_tools] separate target platform, host platform, and architecture" (cla: yes, tool) [60152](https://github.com/flutter/flutter/pull/60152) Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green) [60156](https://github.com/flutter/flutter/pull/60156) [flutter_tools] even more test fixes (cla: yes, tool) [60158](https://github.com/flutter/flutter/pull/60158) Roll Engine from 2b6c71c4d3ab to 50da4ae2ca20 (7 revisions) (cla: yes, waiting for tree to go green) [60159](https://github.com/flutter/flutter/pull/60159) Make `flutter create .` on plugins also regenerates files for platforms already supported (cla: yes, tool, waiting for tree to go green) [60163](https://github.com/flutter/flutter/pull/60163) Consider the Linux template stable (cla: yes, tool) [60168](https://github.com/flutter/flutter/pull/60168) Roll Engine from 50da4ae2ca20 to 2a9fed87a7c2 (2 revisions) (cla: yes, waiting for tree to go green) [60172](https://github.com/flutter/flutter/pull/60172) [flutter_tools] start fixing command tests (cla: yes, tool) [60185](https://github.com/flutter/flutter/pull/60185) [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool) [60187](https://github.com/flutter/flutter/pull/60187) Roll Engine from 2a9fed87a7c2 to a0deaf9b04dc (4 revisions) (cla: yes, waiting for tree to go green) [60200](https://github.com/flutter/flutter/pull/60200) [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green) [60218](https://github.com/flutter/flutter/pull/60218) Roll Engine from a0deaf9b04dc to 733b1aa7b90d (4 revisions) (cla: yes, waiting for tree to go green) [60219](https://github.com/flutter/flutter/pull/60219) Update inaccurate documentation for isUtf16Surrogate method (cla: yes, framework, waiting for tree to go green) [60221](https://github.com/flutter/flutter/pull/60221) [flutter_tools] de-flake integration tests (cla: yes, tool) [60222](https://github.com/flutter/flutter/pull/60222) Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green) [60224](https://github.com/flutter/flutter/pull/60224) [flutter_tools] Update WebAssetServer to avoid context, fix tests (cla: yes, tool) [60228](https://github.com/flutter/flutter/pull/60228) Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool) [60231](https://github.com/flutter/flutter/pull/60231) [flutter_tools] remove most use of global packages path (cla: yes, tool) [60234](https://github.com/flutter/flutter/pull/60234) Roll Engine from 733b1aa7b90d to 291dab6f1723 (4 revisions) (cla: yes, waiting for tree to go green) [60241](https://github.com/flutter/flutter/pull/60241) [flutter_tools] fix tests that depend on correct cache existance (cla: yes, tool) [60242](https://github.com/flutter/flutter/pull/60242) Roll Engine from 291dab6f1723 to 24d2143b98d6 (1 revision) (cla: yes, waiting for tree to go green) [60245](https://github.com/flutter/flutter/pull/60245) [PageTransitionsBuilder] Reland Fix 'ZoomPageTransition' built more than once (cla: yes, f: material design, framework, waiting for tree to go green) [60248](https://github.com/flutter/flutter/pull/60248) Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green) [60252](https://github.com/flutter/flutter/pull/60252) Roll Engine from 24d2143b98d6 to 0c141262115f (5 revisions) (cla: yes, waiting for tree to go green) [60254](https://github.com/flutter/flutter/pull/60254) Roll Engine from 0c141262115f to 73ff2bdd36ab (3 revisions) (cla: yes, waiting for tree to go green) [60263](https://github.com/flutter/flutter/pull/60263) [flutter_tools] last pass on general.shard unit tests (cla: yes, tool) [60291](https://github.com/flutter/flutter/pull/60291) Roll Engine from 73ff2bdd36ab to 781885120002 (12 revisions) (cla: yes, waiting for tree to go green) [60302](https://github.com/flutter/flutter/pull/60302) skip verify-codesigned-binaries test until cirrus logic is fixed (cla: yes) [60314](https://github.com/flutter/flutter/pull/60314) Roll Engine from 781885120002 to 9ad489e7d7ba (4 revisions) (cla: yes, waiting for tree to go green) [60316](https://github.com/flutter/flutter/pull/60316) Don't access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green) [60317](https://github.com/flutter/flutter/pull/60317) [flutter_tools] surface null safety/experiment flags in attach (cla: yes, tool, waiting for tree to go green) [60318](https://github.com/flutter/flutter/pull/60318) Roll Engine from 9ad489e7d7ba to b5691124a3bf (4 revisions) (cla: yes, waiting for tree to go green) [60320](https://github.com/flutter/flutter/pull/60320) Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green) [60329](https://github.com/flutter/flutter/pull/60329) [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green) [60330](https://github.com/flutter/flutter/pull/60330) Roll Engine from b5691124a3bf to e9edf32d40f7 (3 revisions) (cla: yes, waiting for tree to go green) [60332](https://github.com/flutter/flutter/pull/60332) Roll Engine from e9edf32d40f7 to 22b099bc6366 (1 revision) (cla: yes, waiting for tree to go green) [60336](https://github.com/flutter/flutter/pull/60336) Heavy Widget construction and destruction performance test (a: tests, cla: yes, team) [60345](https://github.com/flutter/flutter/pull/60345) Update AUTHORS with couple contributors. (cla: yes, waiting for tree to go green) [60350](https://github.com/flutter/flutter/pull/60350) Roll Engine from 22b099bc6366 to 559d93d97886 (3 revisions) (cla: yes, waiting for tree to go green) [60367](https://github.com/flutter/flutter/pull/60367) Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green) [60379](https://github.com/flutter/flutter/pull/60379) Do not call Picture.toImage on web during shader warm-up (cla: yes, framework, waiting for tree to go green) [60381](https://github.com/flutter/flutter/pull/60381) Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool) [60383](https://github.com/flutter/flutter/pull/60383) [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60384](https://github.com/flutter/flutter/pull/60384) Roll Engine from 559d93d97886 to fc0e27210c46 (8 revisions) (cla: yes, waiting for tree to go green) [60388](https://github.com/flutter/flutter/pull/60388) Roll Engine from fc0e27210c46 to c332675a8c2f (1 revision) (cla: yes, waiting for tree to go green) [60391](https://github.com/flutter/flutter/pull/60391) re-enable codesign test (cla: yes, waiting for tree to go green) [60394](https://github.com/flutter/flutter/pull/60394) Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green) [60395](https://github.com/flutter/flutter/pull/60395) [flutter tools] Revert desktop device name changes and print the category instead (cla: yes, tool, waiting for tree to go green) [60396](https://github.com/flutter/flutter/pull/60396) Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green) [60405](https://github.com/flutter/flutter/pull/60405) Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green) [60407](https://github.com/flutter/flutter/pull/60407) `benchmarks/macrobenchmarks` platforme file update (cla: yes, team) [60412](https://github.com/flutter/flutter/pull/60412) Simplify the animation control for macrobenchmarks test case (cla: yes, team) [60415](https://github.com/flutter/flutter/pull/60415) restore imagefiltered_transform_animation_perf__timeline_summary benchmark (cla: yes, team) [60478](https://github.com/flutter/flutter/pull/60478) Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework) [60480](https://github.com/flutter/flutter/pull/60480) [flutter_tools] remove globals from base/android (cla: yes, tool) [60481](https://github.com/flutter/flutter/pull/60481) Adding ColorFiltered "Widget of the week" video to docs. (cla: yes, framework, waiting for tree to go green) [60482](https://github.com/flutter/flutter/pull/60482) Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green) [60490](https://github.com/flutter/flutter/pull/60490) Experiment with tester on the flutter_tools general shard (cla: yes, team) [60497](https://github.com/flutter/flutter/pull/60497) Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green) [60504](https://github.com/flutter/flutter/pull/60504) Update new gallery HEAD commit (cla: yes, team) [60507](https://github.com/flutter/flutter/pull/60507) Fix commit hash gallery (cla: yes, team) [60523](https://github.com/flutter/flutter/pull/60523) InteractiveViewer scroll direction (cla: yes, framework, waiting for tree to go green) [60530](https://github.com/flutter/flutter/pull/60530) Revert "fix paint order of ink feature (#59108)" (cla: yes, f: material design, framework) [60532](https://github.com/flutter/flutter/pull/60532) InteractiveViewer with a changing screen size (cla: yes, framework, waiting for tree to go green) [60535](https://github.com/flutter/flutter/pull/60535) gitignore generated_plugin_registrant.dart (cla: yes, waiting for tree to go green) [60536](https://github.com/flutter/flutter/pull/60536) Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green) [60545](https://github.com/flutter/flutter/pull/60545) Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green) [60546](https://github.com/flutter/flutter/pull/60546) Fix daemon device discovery crash when Xcode isn't installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green) [60549](https://github.com/flutter/flutter/pull/60549) RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green) [60551](https://github.com/flutter/flutter/pull/60551) Revert "[flutter_tools] update libimobiledevice" (cla: yes, tool) [60552](https://github.com/flutter/flutter/pull/60552) New license page with fix for zero licenses. (a: internationalization, f: material design, framework) [60553](https://github.com/flutter/flutter/pull/60553) Mark non-flaky test as such (cla: yes, team, waiting for tree to go green) [60554](https://github.com/flutter/flutter/pull/60554) Web macrobenchmark: bench_mouse_region_grid_hover now tests hitTestDuration (cla: yes, team, waiting for tree to go green) [60563](https://github.com/flutter/flutter/pull/60563) ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green) [60564](https://github.com/flutter/flutter/pull/60564) Roll Engine from c332675a8c2f to 729ca5ee63e3 (17 revisions) (cla: yes, waiting for tree to go green) [60567](https://github.com/flutter/flutter/pull/60567) Roll Engine from 729ca5ee63e3 to fc725775253e (1 revision) (cla: yes, waiting for tree to go green) [60569](https://github.com/flutter/flutter/pull/60569) Re-land "[flutter_tools] update libimobiledevice" (cla: yes, tool) [60570](https://github.com/flutter/flutter/pull/60570) [flutter_tools] support sound null-safety mode for the web (cla: yes, tool) [60574](https://github.com/flutter/flutter/pull/60574) Roll Engine from fc725775253e to a974b78117dc (4 revisions) (cla: yes, waiting for tree to go green) [60586](https://github.com/flutter/flutter/pull/60586) Issues/58053 - Set default textBaseline to alphabetic in the Table widget (cla: yes, framework, waiting for tree to go green) [60596](https://github.com/flutter/flutter/pull/60596) Roll Engine from a974b78117dc to 6354156e51f1 (6 revisions) (cla: yes, waiting for tree to go green) [60600](https://github.com/flutter/flutter/pull/60600) Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design) [60611](https://github.com/flutter/flutter/pull/60611) 1.17.5 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool) [60615](https://github.com/flutter/flutter/pull/60615) [flutter_tools] ensure flutter daemon can exit correctly (cla: yes, tool) [60617](https://github.com/flutter/flutter/pull/60617) [flutter_tool] fix ide-config crash because of no android key (cla: yes, tool) [60621](https://github.com/flutter/flutter/pull/60621) Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green) [60623](https://github.com/flutter/flutter/pull/60623) Take screenshots of wirelessly paired iOS devices (platform-ios, tool) [60629](https://github.com/flutter/flutter/pull/60629) Switch Windows to CMake (cla: yes, tool) [60633](https://github.com/flutter/flutter/pull/60633) [flutter_tools] add null-safety flags to dill cache location (cla: yes, tool) [60638](https://github.com/flutter/flutter/pull/60638) fix pubspec dependencies (cla: yes, team) [60645](https://github.com/flutter/flutter/pull/60645) Revert "Tweaking Material Chip a11y semantics to match buttons (#60141)" (cla: yes, f: material design, framework, waiting for tree to go green) [60648](https://github.com/flutter/flutter/pull/60648) Roll Engine from 6354156e51f1 to 2dc202d82388 (10 revisions) (cla: yes, waiting for tree to go green) [60652](https://github.com/flutter/flutter/pull/60652) Upgrade packages (team) [60654](https://github.com/flutter/flutter/pull/60654) Only try the GDK X11 backend, as the FlView only currently supports X11 (cla: yes, tool) [60658](https://github.com/flutter/flutter/pull/60658) [flutter_tools] fix crash if grouped doctor validator crashes (cla: yes, tool, waiting for tree to go green) [60659](https://github.com/flutter/flutter/pull/60659) Roll Engine from 2dc202d82388 to 712f619737f1 (3 revisions) (cla: yes, waiting for tree to go green) [60660](https://github.com/flutter/flutter/pull/60660) In layers_test create a canvas to start recording on the PictureRecorder (cla: yes, framework, waiting for tree to go green) [60668](https://github.com/flutter/flutter/pull/60668) Roll tester version (cla: yes, team) [60684](https://github.com/flutter/flutter/pull/60684) Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [60685](https://github.com/flutter/flutter/pull/60685) Roll Engine from 712f619737f1 to 88a8e9db1806 (9 revisions) (cla: yes, waiting for tree to go green) [60693](https://github.com/flutter/flutter/pull/60693) Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green) [60708](https://github.com/flutter/flutter/pull/60708) [flutter_tools] support starting in canvaskit with FLUTTER_WEB_USE_SKIA=true (tool, waiting for tree to go green) [60717](https://github.com/flutter/flutter/pull/60717) 1.19 CP: Fix daemon device discovery crash when Xcode isn't installed (#60546) (CQ+1, cla: yes) [60723](https://github.com/flutter/flutter/pull/60723) add a timeout to dashing (cla: yes, team) [60726](https://github.com/flutter/flutter/pull/60726) Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green) [60730](https://github.com/flutter/flutter/pull/60730) Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green) [60734](https://github.com/flutter/flutter/pull/60734) Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework) [60742](https://github.com/flutter/flutter/pull/60742) Roll Engine from 88a8e9db1806 to 65ac8be350ad (15 revisions) (cla: yes, waiting for tree to go green) [60760](https://github.com/flutter/flutter/pull/60760) Roll Engine from 65ac8be350ad to 51ca1432b3be (1 revision) (cla: yes, waiting for tree to go green) [60764](https://github.com/flutter/flutter/pull/60764) Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green) [60774](https://github.com/flutter/flutter/pull/60774) await TimelineSummary.write***ToFile (a: tests, cla: yes, team) [60787](https://github.com/flutter/flutter/pull/60787) [flutter_tools] remove some globals from flutter_tester device (cla: yes, tool) [60790](https://github.com/flutter/flutter/pull/60790) Roll Engine from 51ca1432b3be to f8bbcc396ba9 (7 revisions) (cla: yes, waiting for tree to go green) [60824](https://github.com/flutter/flutter/pull/60824) Update engine hash to cherry-pick version a751393 (cla: yes, engine) [60832](https://github.com/flutter/flutter/pull/60832) Fix typo in popup_menu.dart (cla: yes, f: material design, framework) [60836](https://github.com/flutter/flutter/pull/60836) Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green) [60915](https://github.com/flutter/flutter/pull/60915) [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green) [60916](https://github.com/flutter/flutter/pull/60916) Revert "Fix remaining holes in stack trace demangling" (a: tests, cla: yes, framework) [60925](https://github.com/flutter/flutter/pull/60925) fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green) [60927](https://github.com/flutter/flutter/pull/60927) [flutter_tools] fix crash if the platform section was a list (cla: yes, tool) [60929](https://github.com/flutter/flutter/pull/60929) Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green) [60930](https://github.com/flutter/flutter/pull/60930) Add `embedderId` to `PointerEvent` (cla: yes, framework) [60932](https://github.com/flutter/flutter/pull/60932) [flutter_tools] add sdk constraint to plugin/package templates (cla: yes, tool) [60934](https://github.com/flutter/flutter/pull/60934) Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60936](https://github.com/flutter/flutter/pull/60936) Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green) [60951](https://github.com/flutter/flutter/pull/60951) Roll Engine from f8bbcc396ba9 to 0e9b2508439a (24 revisions) (cla: yes, waiting for tree to go green) [60955](https://github.com/flutter/flutter/pull/60955) Set engine version to head containing cherrypicks (cla: yes, engine) [60956](https://github.com/flutter/flutter/pull/60956) Assert valid composing TextRange (cla: yes, framework, waiting for tree to go green) [60957](https://github.com/flutter/flutter/pull/60957) Roll Engine from 0e9b2508439a to f22ac9da9c78 (1 revision) (cla: yes, waiting for tree to go green) [60991](https://github.com/flutter/flutter/pull/60991) [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green) [60996](https://github.com/flutter/flutter/pull/60996) Reland "Fix remaining holes in stack trace demangling"" (a: tests, cla: yes, framework) [60998](https://github.com/flutter/flutter/pull/60998) [flutter_tools] deprecate flutter version (cla: yes, tool, waiting for tree to go green) [61000](https://github.com/flutter/flutter/pull/61000) Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green) [61003](https://github.com/flutter/flutter/pull/61003) [flutter_tools] make precache force blow away stamp files (cla: yes, tool) [61010](https://github.com/flutter/flutter/pull/61010) Revert "Add `embedderId` to `PointerEvent` (#60930)" (cla: yes, engine, framework, team) [61012](https://github.com/flutter/flutter/pull/61012) prevents sliver app bar from changing semantics tree when it is not n… (a: accessibility, f: material design, framework, waiting for tree to go green) [61013](https://github.com/flutter/flutter/pull/61013) Re-land gesture detection for hybrid platform views (engine, framework, team) [61019](https://github.com/flutter/flutter/pull/61019) InteractiveViewer pan axis locking (cla: yes, framework, waiting for tree to go green) [61025](https://github.com/flutter/flutter/pull/61025) benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green) [61033](https://github.com/flutter/flutter/pull/61033) Do not cache itemBuilder calls in a GridView (cla: yes, framework, waiting for tree to go green) [61034](https://github.com/flutter/flutter/pull/61034) Roll packages (cla: yes, team, tool) [61035](https://github.com/flutter/flutter/pull/61035) Fix bug where dispose message requires a map (cla: yes, framework) [61062](https://github.com/flutter/flutter/pull/61062) Mark new test as not flaky (cla: yes, team) [61064](https://github.com/flutter/flutter/pull/61064) Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green) [61066](https://github.com/flutter/flutter/pull/61066) Issue with comparison operator in generated service worker (cla: yes, tool, waiting for tree to go green) [61090](https://github.com/flutter/flutter/pull/61090) Roll Engine from d0d6a4c2362d to 0dc86cda19d5 (9 revisions) (cla: yes, waiting for tree to go green) [61102](https://github.com/flutter/flutter/pull/61102) Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework) [61103](https://github.com/flutter/flutter/pull/61103) [flutter_tools] ensure AppRunLogger is injected for run/attach machine (cla: yes, tool, waiting for tree to go green) [61109](https://github.com/flutter/flutter/pull/61109) Revert "Expose height and width factor in AnimatedAlign " (cla: yes, framework) [61118](https://github.com/flutter/flutter/pull/61118) Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green) [61126](https://github.com/flutter/flutter/pull/61126) Roll Engine from 0dc86cda19d5 to 0ec6f6c3f255 (3 revisions) (cla: yes, waiting for tree to go green) [61127](https://github.com/flutter/flutter/pull/61127) Test update_packages for git packages (cla: yes, tool, waiting for tree to go green) [61128](https://github.com/flutter/flutter/pull/61128) Update tester to latest version (team) [61129](https://github.com/flutter/flutter/pull/61129) [flutter_tools] fix recursive asset variant issue (cla: yes, tool, waiting for tree to go green) ### Merged PRs in `flutter/engine` There were 1316 pull requests. [13959](https://github.com/flutter/engine/pull/13959) iOS UITextInput autocorrection prompt (cla: yes) [15868](https://github.com/flutter/engine/pull/15868) Roll ANGLE to ToT (cla: yes) [16826](https://github.com/flutter/engine/pull/16826) [fuchsia] Remove redundant libs (cla: yes) [16935](https://github.com/flutter/engine/pull/16935) Improve iOS PlatformViews to better handle thread merging. (cla: yes) [17015](https://github.com/flutter/engine/pull/17015) Support EventChannel C++ plugin API for Linux/Windows (cla: yes) [17151](https://github.com/flutter/engine/pull/17151) Small updates to objcdocs (cla: yes) [17175](https://github.com/flutter/engine/pull/17175) Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [17275](https://github.com/flutter/engine/pull/17275) [tools][fuchsia] Do not tar debug symbol CIPD uploads (cla: yes) [17304](https://github.com/flutter/engine/pull/17304) Add pointer events to the Linux shell (cla: yes) [17305](https://github.com/flutter/engine/pull/17305) onRequestPermissionsResult now require calling super on AndroidX master (cla: yes) [17363](https://github.com/flutter/engine/pull/17363) Refactor FlutterEngine usage in Linux shell (cla: yes) [17381](https://github.com/flutter/engine/pull/17381) Clear focus if a platform view goes away (cla: yes) [17393](https://github.com/flutter/engine/pull/17393) Fix bug in handling delete key event for android (cla: yes, waiting for tree to go green) [17407](https://github.com/flutter/engine/pull/17407) use clang on Windows (cla: yes) [17410](https://github.com/flutter/engine/pull/17410) Move Linux shell docstrings to headers (cla: yes) [17420](https://github.com/flutter/engine/pull/17420) Make DPAD movement consider grapheme clusters (affects: text input, cla: yes) [17465](https://github.com/flutter/engine/pull/17465) Android Autofill (cla: yes) [17474](https://github.com/flutter/engine/pull/17474) Fixed a bug that left a blank at the bottom of the screen (cla: yes) [17484](https://github.com/flutter/engine/pull/17484) Use const refs in for loops where reasonable (cla: yes) [17489](https://github.com/flutter/engine/pull/17489) Improve C++ plugin lifetime handling (cla: yes) [17491](https://github.com/flutter/engine/pull/17491) Roll src/third_party/skia 8afde5f39508..8efbbbc0d1d4 (14 commits) (cla: yes, waiting for tree to go green) [17492](https://github.com/flutter/engine/pull/17492) Add test for profile mode diagnostics (cla: yes) [17493](https://github.com/flutter/engine/pull/17493) Add autofill support to ios text input plugin (cla: yes) [17494](https://github.com/flutter/engine/pull/17494) Roll src/third_party/dart fae35fca47c9..e736495eb7f0 (26 commits) (cla: yes, waiting for tree to go green) [17495](https://github.com/flutter/engine/pull/17495) [web] Detect when the mouseup occurs outside of window (cla: yes, platform-web, waiting for tree to go green) [17496](https://github.com/flutter/engine/pull/17496) Roll src/third_party/skia 8efbbbc0d1d4..e70e0c055f56 (1 commits) (cla: yes, waiting for tree to go green) [17497](https://github.com/flutter/engine/pull/17497) Roll fuchsia/sdk/core/mac-amd64 from 6V5BR... to tKvUB... (cla: yes, waiting for tree to go green) [17498](https://github.com/flutter/engine/pull/17498) Roll fuchsia/sdk/core/linux-amd64 from -jFTb... to TWx2R... (cla: yes, waiting for tree to go green) [17499](https://github.com/flutter/engine/pull/17499) Started clearing out the parent of orphaned semantic objects. (cla: yes) [17500](https://github.com/flutter/engine/pull/17500) Revert "[tools][fuchsia] Do not tar debug symbol CIPD uploads (#17275)" (cla: yes) [17501](https://github.com/flutter/engine/pull/17501) Revert "[tools][fuchsia] Do not tar debug symbol CIPD uploads (#17275)" (cla: yes) [17502](https://github.com/flutter/engine/pull/17502) Fix include paths of fml/time headers in the shell and rasterizer (cla: yes) [17503](https://github.com/flutter/engine/pull/17503) Roll src/third_party/dart e736495eb7f0..f144d5fdca56 (31 commits) (cla: yes, waiting for tree to go green) [17504](https://github.com/flutter/engine/pull/17504) Roll src/third_party/skia e70e0c055f56..cc8a76f3c763 (23 commits) (cla: yes, waiting for tree to go green) [17506](https://github.com/flutter/engine/pull/17506) [tools][fuchsia] Reland "Do not tar debug symbol CIPD uploads" (cla: yes) [17507](https://github.com/flutter/engine/pull/17507) REFACTOR: split up accessibility bridge and semantics object (cla: yes) [17508](https://github.com/flutter/engine/pull/17508) Add the Android SDK lambda stub library to the classpath (cla: yes) [17509](https://github.com/flutter/engine/pull/17509) Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android) [17510](https://github.com/flutter/engine/pull/17510) Roll src/third_party/dart f144d5fdca56..1e4a56ee7202 (20 commits) (cla: yes, waiting for tree to go green) [17511](https://github.com/flutter/engine/pull/17511) Fix AlertDialogs built by platform views (cla: yes, waiting for tree to go green) [17512](https://github.com/flutter/engine/pull/17512) Roll fuchsia/sdk/core/mac-amd64 from tKvUB... to BHVYY... (cla: yes, waiting for tree to go green) [17513](https://github.com/flutter/engine/pull/17513) Roll src/third_party/dart 1e4a56ee7202..28eb884d4709 (1 commits) (cla: yes, waiting for tree to go green) [17514](https://github.com/flutter/engine/pull/17514) Roll fuchsia/sdk/core/linux-amd64 from TWx2R... to hUO_b... (cla: yes, waiting for tree to go green) [17515](https://github.com/flutter/engine/pull/17515) Roll src/third_party/dart 28eb884d4709..80ae6ed91d6d (2 commits) (cla: yes, waiting for tree to go green) [17516](https://github.com/flutter/engine/pull/17516) Roll fuchsia/sdk/core/mac-amd64 from BHVYY... to 6CeXq... (cla: yes, waiting for tree to go green) [17518](https://github.com/flutter/engine/pull/17518) Roll src/third_party/dart 80ae6ed91d6d..a7f1a5e677e5 (1 commits) (cla: yes, waiting for tree to go green) [17519](https://github.com/flutter/engine/pull/17519) Roll fuchsia/sdk/core/linux-amd64 from hUO_b... to Ezm2f... (cla: yes, waiting for tree to go green) [17520](https://github.com/flutter/engine/pull/17520) Roll src/third_party/dart a7f1a5e677e5..987ad1d96748 (1 commits) (cla: yes, waiting for tree to go green) [17521](https://github.com/flutter/engine/pull/17521) Roll fuchsia/sdk/core/mac-amd64 from 6CeXq... to LDdBU... (cla: yes, waiting for tree to go green) [17522](https://github.com/flutter/engine/pull/17522) Roll src/third_party/dart 987ad1d96748..05103dfe5a0e (2 commits) (cla: yes, waiting for tree to go green) [17524](https://github.com/flutter/engine/pull/17524) Fix flutter_windows_unittests runtime dependency (cla: yes) [17525](https://github.com/flutter/engine/pull/17525) Roll fuchsia/sdk/core/linux-amd64 from Ezm2f... to 3yOjK... (cla: yes, waiting for tree to go green) [17526](https://github.com/flutter/engine/pull/17526) Roll src/third_party/dart 05103dfe5a0e..a8251f820b09 (4 commits) (cla: yes, waiting for tree to go green) [17527](https://github.com/flutter/engine/pull/17527) Roll fuchsia/sdk/core/mac-amd64 from LDdBU... to wZ5qZ... (cla: yes, waiting for tree to go green) [17528](https://github.com/flutter/engine/pull/17528) Roll src/third_party/dart a8251f820b09..1210d27678a0 (5 commits) (cla: yes, waiting for tree to go green) [17529](https://github.com/flutter/engine/pull/17529) Roll src/third_party/skia cc8a76f3c763..04513752fd6e (22 commits) (cla: yes, waiting for tree to go green) [17530](https://github.com/flutter/engine/pull/17530) Roll src/third_party/skia 04513752fd6e..3ef77ddf9ec4 (3 commits) (cla: yes, waiting for tree to go green) [17531](https://github.com/flutter/engine/pull/17531) Roll src/third_party/dart 1210d27678a0..275a76f2fcd8 (4 commits) (cla: yes, waiting for tree to go green) [17532](https://github.com/flutter/engine/pull/17532) Fixed nullability in plugin header and overridden type mismatch error. (cla: yes) [17533](https://github.com/flutter/engine/pull/17533) [web] using pkill to quit safari (cla: yes) [17534](https://github.com/flutter/engine/pull/17534) Do not enable antialiasing by default in CanvasKit mode (cla: yes) [17535](https://github.com/flutter/engine/pull/17535) Added missing declaration (only showed up in g3 builds). (cla: yes) [17536](https://github.com/flutter/engine/pull/17536) Added errors to match g3 builds and simple errors (cla: yes) [17537](https://github.com/flutter/engine/pull/17537) Revert "[tools][fuchsia] Do not tar debug symbol CIPD uploads (#17506)" (cla: yes) [17541](https://github.com/flutter/engine/pull/17541) always forward move event (cla: yes, waiting for tree to go green) [17544](https://github.com/flutter/engine/pull/17544) [web] fix clipboard.getData (cla: yes) [17562](https://github.com/flutter/engine/pull/17562) Roll src/third_party/dart 275a76f2fcd8..dcdc71d7639a (31 commits) (cla: yes, waiting for tree to go green) [17563](https://github.com/flutter/engine/pull/17563) Revert "Improve C++ plugin lifetime handling (#17489)" (cla: yes) [17564](https://github.com/flutter/engine/pull/17564) Revert "Added errors to match g3 builds and simple errors (#17536)" (cla: yes) [17566](https://github.com/flutter/engine/pull/17566) Added "unrecognized-selector" errors to match g3 builds (cla: yes) [17567](https://github.com/flutter/engine/pull/17567) Add comments to build_and_test_linux_unopt_debug (cla: yes) [17568](https://github.com/flutter/engine/pull/17568) Roll src/third_party/skia 3ef77ddf9ec4..b41a420ed8db (35 commits) (cla: yes, waiting for tree to go green) [17569](https://github.com/flutter/engine/pull/17569) [manual roll] Roll fuchsia/sdk/core/linux-amd64 from 3yOjK... to VzWN4... (cla: yes, waiting for tree to go green) [17570](https://github.com/flutter/engine/pull/17570) Reland "Improve C++ plugin lifetime handling" (cla: yes) [17571](https://github.com/flutter/engine/pull/17571) Remove SceneDisplayLag trace event temporarily (cla: yes) [17572](https://github.com/flutter/engine/pull/17572) Pull a sysroot on Linux (cla: yes) [17573](https://github.com/flutter/engine/pull/17573) Use a sysroot when building Linux host (cla: yes) [17574](https://github.com/flutter/engine/pull/17574) Enabled hiding the home indicator with SystemChrome.setEnabledSystemUIOverlays (cla: yes) [17575](https://github.com/flutter/engine/pull/17575) [perf] Add a SceneDisplayLag event when we miss vsyncs (cla: yes) [17576](https://github.com/flutter/engine/pull/17576) Roll fuchsia/sdk/core/mac-amd64 from wZ5qZ... to dCOo1... (cla: yes, waiting for tree to go green) [17577](https://github.com/flutter/engine/pull/17577) [windows] Sends complete key data to framework (cla: yes, waiting for tree to go green) [17578](https://github.com/flutter/engine/pull/17578) Fix typo in shell_benchmarks (cla: yes, waiting for tree to go green) [17579](https://github.com/flutter/engine/pull/17579) Roll src/third_party/skia b41a420ed8db..07b2bafbbc3c (13 commits) (cla: yes, waiting for tree to go green) [17580](https://github.com/flutter/engine/pull/17580) [web] Fix window.defaultRouteName (cla: yes, platform-web) [17583](https://github.com/flutter/engine/pull/17583) Change the directory to the scenario app (cla: yes) [17584](https://github.com/flutter/engine/pull/17584) Add logs between fuchsia test steps. (cla: yes) [17585](https://github.com/flutter/engine/pull/17585) Roll src/third_party/dart dcdc71d7639a..a90b84544426 (32 commits) (cla: yes, waiting for tree to go green) [17586](https://github.com/flutter/engine/pull/17586) Roll src/third_party/dart a90b84544426..28c4c6c156e5 (2 commits) (cla: yes, waiting for tree to go green) [17587](https://github.com/flutter/engine/pull/17587) Roll src/third_party/skia 07b2bafbbc3c..f6860405e1bf (9 commits) (cla: yes, waiting for tree to go green) [17588](https://github.com/flutter/engine/pull/17588) set -e on assemble_apk.sh (cla: yes, platform-android, waiting for tree to go green) [17591](https://github.com/flutter/engine/pull/17591) [web] Fix multi-reply on message channel. Add test (cla: yes) [17592](https://github.com/flutter/engine/pull/17592) Roll src/third_party/skia f6860405e1bf..8561fc23c927 (7 commits) (cla: yes, waiting for tree to go green) [17593](https://github.com/flutter/engine/pull/17593) add docs to platformviewios (and some drive-by changes) (cla: yes) [17595](https://github.com/flutter/engine/pull/17595) [web] Fix regression of pointer events on mobile browsers (cla: yes, platform-web) [17596](https://github.com/flutter/engine/pull/17596) Roll src/third_party/dart 28c4c6c156e5..114752421dca (17 commits) (cla: yes, waiting for tree to go green) [17597](https://github.com/flutter/engine/pull/17597) [tools][fuchsia] Reland 'Do not tar debug symbol CIPD uploads' (cla: yes, waiting for tree to go green) [17598](https://github.com/flutter/engine/pull/17598) Run integration tests on ci (cla: yes) [17600](https://github.com/flutter/engine/pull/17600) Revert "Improve iOS PlatformViews to better handle thread merging." (cla: yes) [17601](https://github.com/flutter/engine/pull/17601) Read SkSLs from asset (cla: yes, perf: speed, severe: performance) [17604](https://github.com/flutter/engine/pull/17604) Roll fuchsia/sdk/core/mac-amd64 from dCOo1... to REQ-c... (cla: yes, waiting for tree to go green) [17607](https://github.com/flutter/engine/pull/17607) Fix C++ MethodChannel reply type (cla: yes) [17608](https://github.com/flutter/engine/pull/17608) [web] Fix Path hit test code for high dpi devices (cla: yes) [17609](https://github.com/flutter/engine/pull/17609) Reland "Improve iOS PlatformViews to better handle thread merging. #16935" (cla: yes, waiting for tree to go green) [17612](https://github.com/flutter/engine/pull/17612) Remove Samsung workaround (cla: yes) [17613](https://github.com/flutter/engine/pull/17613) Revert getSystemGestureExclusionRects and setSystemGestureExclusionRects (cla: yes) [17615](https://github.com/flutter/engine/pull/17615) [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web) [17616](https://github.com/flutter/engine/pull/17616) make compiler worker count configurable; increase default (cla: yes) [17617](https://github.com/flutter/engine/pull/17617) Eliminate verify_framework presubmit step (cla: yes) [17620](https://github.com/flutter/engine/pull/17620) Roll src/third_party/skia 8561fc23c927..854ac61e90a4 (36 commits) (cla: yes, waiting for tree to go green) [17621](https://github.com/flutter/engine/pull/17621) Optimize static content scrolling (cla: yes, perf: speed, severe: performance) [17622](https://github.com/flutter/engine/pull/17622) Eliminate fx_log_init call (cla: yes, waiting for tree to go green) [17623](https://github.com/flutter/engine/pull/17623) Roll src/third_party/dart 114752421dca..9f65693f5772 (30 commits) (cla: yes, waiting for tree to go green) [17624](https://github.com/flutter/engine/pull/17624) Made it so unit tests can be written against all ios engine code. (cla: yes) [17625](https://github.com/flutter/engine/pull/17625) Remove duplicated cirrus tasks. (cla: yes) [17626](https://github.com/flutter/engine/pull/17626) [a11y] Support TalkBack reading by word, character, and paragraph (cla: yes) [17627](https://github.com/flutter/engine/pull/17627) Roll src/third_party/skia 854ac61e90a4..48d345fd83fd (1 commits) (cla: yes, waiting for tree to go green) [17629](https://github.com/flutter/engine/pull/17629) Roll src/third_party/skia 48d345fd83fd..05e2350de5a9 (3 commits) (cla: yes, waiting for tree to go green) [17630](https://github.com/flutter/engine/pull/17630) Roll src/third_party/dart 9f65693f5772..9a51d7003dd5 (2 commits) (cla: yes, waiting for tree to go green) [17631](https://github.com/flutter/engine/pull/17631) Roll fuchsia/sdk/core/mac-amd64 from REQ-c... to teyLc... (cla: yes, waiting for tree to go green) [17633](https://github.com/flutter/engine/pull/17633) Roll src/third_party/skia 05e2350de5a9..f7255d72f8da (1 commits) (cla: yes, waiting for tree to go green) [17634](https://github.com/flutter/engine/pull/17634) Always build GTK shell (cla: yes, waiting for tree to go green) [17635](https://github.com/flutter/engine/pull/17635) reduce web shard count from 8 to 4 (cla: yes) [17638](https://github.com/flutter/engine/pull/17638) Roll src/third_party/skia f7255d72f8da..96bfeff55c58 (4 commits) (cla: yes, waiting for tree to go green) [17639](https://github.com/flutter/engine/pull/17639) Roll src/third_party/skia 96bfeff55c58..801ba0d6064f (8 commits) (cla: yes, waiting for tree to go green) [17640](https://github.com/flutter/engine/pull/17640) Roll fuchsia/sdk/core/linux-amd64 from VzWN4... to LnaL2... (cla: yes) [17643](https://github.com/flutter/engine/pull/17643) Implement Hashcode for TextEditingValue in InputConnectionAdaptor (cla: yes, waiting for tree to go green) [17644](https://github.com/flutter/engine/pull/17644) Roll src/third_party/skia 801ba0d6064f..daf94c56bcb3 (4 commits) (cla: yes, waiting for tree to go green) [17645](https://github.com/flutter/engine/pull/17645) [web] Fix compositing order when adding paragraph tags (cla: yes) [17646](https://github.com/flutter/engine/pull/17646) Unregister the TextInputChannel method handler when the TextInputPlugin is destroyed (cla: yes) [17648](https://github.com/flutter/engine/pull/17648) Roll src/third_party/dart 9a51d7003dd5..9e2c8ef0009b (20 commits) (cla: yes, waiting for tree to go green) [17649](https://github.com/flutter/engine/pull/17649) Introduce task_runner_checker, task_runner_weak_ptr (cla: yes) [17651](https://github.com/flutter/engine/pull/17651) Roll fuchsia/sdk/core/mac-amd64 from teyLc... to zCKPv... (cla: yes, waiting for tree to go green) [17652](https://github.com/flutter/engine/pull/17652) Update editing state in InputConnectionAdaptor.setSelection (cla: yes) [17653](https://github.com/flutter/engine/pull/17653) Add support for setting allow http flag in Dart VM (cla: yes, waiting for tree to go green) [17655](https://github.com/flutter/engine/pull/17655) Roll src/third_party/skia daf94c56bcb3..459ecee2cbdc (1 commits) (cla: yes, waiting for tree to go green) [17658](https://github.com/flutter/engine/pull/17658) Roll src/third_party/dart 9e2c8ef0009b..89b0f6726123 (8 commits) (cla: yes, waiting for tree to go green) [17659](https://github.com/flutter/engine/pull/17659) Roll src/third_party/dart 89b0f6726123..23a8788f6a9c (1 commits) (cla: yes, waiting for tree to go green) [17661](https://github.com/flutter/engine/pull/17661) Roll fuchsia/sdk/core/mac-amd64 from zCKPv... to yCVt4... (cla: yes, waiting for tree to go green) [17663](https://github.com/flutter/engine/pull/17663) Roll src/third_party/skia 459ecee2cbdc..6dfc55454671 (2 commits) (cla: yes, waiting for tree to go green) [17668](https://github.com/flutter/engine/pull/17668) Roll src/third_party/dart 23a8788f6a9c..8ef508ba3667 (2 commits) (cla: yes, waiting for tree to go green) [17671](https://github.com/flutter/engine/pull/17671) Roll fuchsia/sdk/core/mac-amd64 from yCVt4... to G7eYf... (cla: yes, waiting for tree to go green) [17672](https://github.com/flutter/engine/pull/17672) Roll src/third_party/skia 6dfc55454671..32c61af49cdb (1 commits) (cla: yes, waiting for tree to go green) [17673](https://github.com/flutter/engine/pull/17673) Roll src/third_party/dart 8ef508ba3667..c9710e5059ad (1 commits) (cla: yes, waiting for tree to go green) [17675](https://github.com/flutter/engine/pull/17675) Roll src/third_party/skia 32c61af49cdb..4b4efe4d6f1f (3 commits) (cla: yes, waiting for tree to go green) [17677](https://github.com/flutter/engine/pull/17677) Roll src/third_party/skia 4b4efe4d6f1f..d468a1619a2f (1 commits) (cla: yes, waiting for tree to go green) [17680](https://github.com/flutter/engine/pull/17680) Roll src/third_party/dart c9710e5059ad..2aecf30d2b2e (1 commits) (cla: yes, waiting for tree to go green) [17682](https://github.com/flutter/engine/pull/17682) Enable required extension VK_KHR_external_semaphore_capabilities in shell_test (cla: yes) [17683](https://github.com/flutter/engine/pull/17683) Use VK_LAYER_KHRONOS_validation only on Fuchsia (cla: yes, waiting for tree to go green) [17684](https://github.com/flutter/engine/pull/17684) Enable Vulkan validation layers for shell_test (cla: yes, waiting for tree to go green) [17685](https://github.com/flutter/engine/pull/17685) Roll src/third_party/skia d468a1619a2f..f3953d04a0b8 (11 commits) (cla: yes, waiting for tree to go green) [17686](https://github.com/flutter/engine/pull/17686) In tests run dart code on ui(rather than on platform) thread. (cla: yes, waiting for tree to go green) [17687](https://github.com/flutter/engine/pull/17687) Pipeline: complete method returns a bool to indicate if complete is successful (cla: yes) [17688](https://github.com/flutter/engine/pull/17688) Remove pipeline in favor of layer tree holder (cla: yes) [17689](https://github.com/flutter/engine/pull/17689) Roll fuchsia/sdk/core/mac-amd64 from G7eYf... to 8JtFK... (cla: yes, waiting for tree to go green) [17693](https://github.com/flutter/engine/pull/17693) Roll src/third_party/skia f3953d04a0b8..4f17b60208fa (9 commits) (cla: yes, waiting for tree to go green) [17694](https://github.com/flutter/engine/pull/17694) Roll src/third_party/dart 2aecf30d2b2e..4aa896464a48 (26 commits) (cla: yes, waiting for tree to go green) [17696](https://github.com/flutter/engine/pull/17696) Roll src/third_party/skia 4f17b60208fa..f50063625a0c (1 commits) (cla: yes, waiting for tree to go green) [17697](https://github.com/flutter/engine/pull/17697) Roll src/third_party/skia f50063625a0c..ad653d8378d7 (3 commits) (cla: yes, waiting for tree to go green) [17698](https://github.com/flutter/engine/pull/17698) Roll src/third_party/dart 4aa896464a48..3e43a3dcadf9 (3 commits) (cla: yes, waiting for tree to go green) [17701](https://github.com/flutter/engine/pull/17701) Roll fuchsia/sdk/core/mac-amd64 from 8JtFK... to X4B0z... (cla: yes, waiting for tree to go green) [17704](https://github.com/flutter/engine/pull/17704) Adjust the GLFW build options (cla: yes) [17706](https://github.com/flutter/engine/pull/17706) Fix Windows clipboard handling (cla: yes) [17707](https://github.com/flutter/engine/pull/17707) switched to using the ocmock build file in //build (cla: yes) [17708](https://github.com/flutter/engine/pull/17708) Add a gn flag to disable desktop embeddings (cla: yes) [17709](https://github.com/flutter/engine/pull/17709) Roll src/third_party/skia ad653d8378d7..44e2c5f0babc (9 commits) (cla: yes, waiting for tree to go green) [17710](https://github.com/flutter/engine/pull/17710) [web] Fix extra canvas generation due to context access (cla: yes) [17712](https://github.com/flutter/engine/pull/17712) Remove layer integral offset snapping (cla: yes) [17713](https://github.com/flutter/engine/pull/17713) Use the right constant for macOS event timestamps (cla: yes) [17714](https://github.com/flutter/engine/pull/17714) Added some tests after the fact for #17499 (cla: yes) [17715](https://github.com/flutter/engine/pull/17715) Roll fuchsia/sdk/core/linux-amd64 from LnaL2... to M1a9q... (cla: yes) [17716](https://github.com/flutter/engine/pull/17716) Updates to use predefined keys. (cla: yes) [17717](https://github.com/flutter/engine/pull/17717) Remove franciscojma86 from autoassign (cla: yes) [17718](https://github.com/flutter/engine/pull/17718) System mouse cursor: Web (cla: yes) [17726](https://github.com/flutter/engine/pull/17726) Roll fuchsia/sdk/core/mac-amd64 from X4B0z... to dqerH... (cla: yes, waiting for tree to go green) [17727](https://github.com/flutter/engine/pull/17727) Roll src/third_party/skia 44e2c5f0babc..e6995c74cdfa (12 commits) (cla: yes, waiting for tree to go green) [17729](https://github.com/flutter/engine/pull/17729) Release acquired typed data before calling Dart_SetReturnValue. (cla: yes, waiting for tree to go green) [17730](https://github.com/flutter/engine/pull/17730) Roll src/third_party/skia e6995c74cdfa..d276e3f0099a (2 commits) (cla: yes, waiting for tree to go green) [17731](https://github.com/flutter/engine/pull/17731) Roll src/third_party/dart 3e43a3dcadf9..eb18db2116dc (37 commits) (cla: yes, waiting for tree to go green) [17732](https://github.com/flutter/engine/pull/17732) Roll fuchsia/sdk/core/linux-amd64 from M1a9q... to Udupa... (cla: yes, waiting for tree to go green) [17733](https://github.com/flutter/engine/pull/17733) Roll src/third_party/skia d276e3f0099a..9ff1d841f6cc (4 commits) (cla: yes, waiting for tree to go green) [17735](https://github.com/flutter/engine/pull/17735) remove allocation from growLTRB; remove dynamism in vector_math (cla: yes) [17736](https://github.com/flutter/engine/pull/17736) Remove fuchsia build from cirrus. (cla: yes) [17738](https://github.com/flutter/engine/pull/17738) Canvas regression (cla: yes) [17739](https://github.com/flutter/engine/pull/17739) Roll src/third_party/dart eb18db2116dc..d5c38cd35486 (18 commits) (cla: yes, waiting for tree to go green) [17740](https://github.com/flutter/engine/pull/17740) Update 1.17 engine hash to Dart 2.8.0-20.11.beta (cla: yes) [17741](https://github.com/flutter/engine/pull/17741) Roll fuchsia/sdk/core/mac-amd64 from dqerH... to urCsS... (cla: yes, waiting for tree to go green) [17742](https://github.com/flutter/engine/pull/17742) [web] Synthesize keyup event when the browser doesn't trigger a keyup (cla: yes, platform-web) [17745](https://github.com/flutter/engine/pull/17745) Remove unused parameter from GetLineXOffset (cla: yes) [17747](https://github.com/flutter/engine/pull/17747) Roll src/third_party/dart d5c38cd35486..983f882180cd (8 commits) (cla: yes, waiting for tree to go green) [17750](https://github.com/flutter/engine/pull/17750) Handle paragraph alignment and direction in newline rectangles (cla: yes, waiting for tree to go green) [17752](https://github.com/flutter/engine/pull/17752) Roll src/third_party/skia 9ff1d841f6cc..938b4532b48f (20 commits) (cla: yes, waiting for tree to go green) [17753](https://github.com/flutter/engine/pull/17753) [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance) [17754](https://github.com/flutter/engine/pull/17754) Roll fuchsia/sdk/core/linux-amd64 from Udupa... to Pgthi... (cla: yes, waiting for tree to go green) [17755](https://github.com/flutter/engine/pull/17755) PlatformResolvedLocale localization message channel (cla: yes) [17756](https://github.com/flutter/engine/pull/17756) Guard canvas virtuals so we can remove legacy didConcat44 (cla: yes) [17757](https://github.com/flutter/engine/pull/17757) Roll fuchsia/sdk/core/mac-amd64 from urCsS... to W1XGO... (cla: yes, waiting for tree to go green) [17758](https://github.com/flutter/engine/pull/17758) Roll src/third_party/skia 938b4532b48f..7a9c9d66f12c (2 commits) (cla: yes, waiting for tree to go green) [17759](https://github.com/flutter/engine/pull/17759) Roll src/third_party/dart 983f882180cd..5900a0ac492b (10 commits) (cla: yes, waiting for tree to go green) [17760](https://github.com/flutter/engine/pull/17760) Convert MatrixDecomposition from SkMatrix44 to SkM44 (cla: yes) [17761](https://github.com/flutter/engine/pull/17761) Roll src/third_party/skia 7a9c9d66f12c..efebaa2a1152 (7 commits) (cla: yes, waiting for tree to go green) [17762](https://github.com/flutter/engine/pull/17762) Remove android unopt build and test from cirrus. (cla: yes) [17763](https://github.com/flutter/engine/pull/17763) Convert semantics_node from SkMatrix44 to SkM44 (cla: yes) [17765](https://github.com/flutter/engine/pull/17765) [web] remove the web_engine_integration tests from cirrus ci (cla: yes) [17767](https://github.com/flutter/engine/pull/17767) [web] fix ulimit issues on Mac (cla: yes) [17768](https://github.com/flutter/engine/pull/17768) Windows text input fixes (cla: yes) [17771](https://github.com/flutter/engine/pull/17771) [web] new text editing method. (cla: yes) [17785](https://github.com/flutter/engine/pull/17785) Revert "Remove layer integral offset snapping" (cla: yes) [17786](https://github.com/flutter/engine/pull/17786) Roll src/third_party/skia efebaa2a1152..f49debf07dc6 (24 commits) (cla: yes) [17791](https://github.com/flutter/engine/pull/17791) Replace RasterCache::Get with RasterCache:Draw (cla: yes) [17792](https://github.com/flutter/engine/pull/17792) Dispatch platform view touch events to the presentation (cla: yes) [17793](https://github.com/flutter/engine/pull/17793) Roll src/third_party/dart 5900a0ac492b..5b19445d9cb2 (51 commits) (cla: yes, waiting for tree to go green) [17794](https://github.com/flutter/engine/pull/17794) Roll src/third_party/skia f49debf07dc6..2686d69bf05b (15 commits) (cla: yes, waiting for tree to go green) [17795](https://github.com/flutter/engine/pull/17795) Roll fuchsia/sdk/core/linux-amd64 from Pgthi... to XpyTd... (cla: yes, waiting for tree to go green) [17796](https://github.com/flutter/engine/pull/17796) [web] Cleanup. Split path and surface stats code into separate files (cla: yes) [17797](https://github.com/flutter/engine/pull/17797) Roll fuchsia/sdk/core/mac-amd64 from W1XGO... to Pk4Fj... (cla: yes, waiting for tree to go green) [17798](https://github.com/flutter/engine/pull/17798) [fuchsia] Adjust Skia GPU resource cache size (cla: yes) [17799](https://github.com/flutter/engine/pull/17799) Add a gn.bat script that runs ./flutter/tools/gn. (cla: yes) [17800](https://github.com/flutter/engine/pull/17800) Roll src/third_party/skia 2686d69bf05b..c632aa633792 (1 commits) (cla: yes, waiting for tree to go green) [17801](https://github.com/flutter/engine/pull/17801) Roll src/third_party/dart 5b19445d9cb2..4814f000de2b (4 commits) (cla: yes, waiting for tree to go green) [17802](https://github.com/flutter/engine/pull/17802) Roll src/third_party/skia c632aa633792..fb490911a952 (1 commits) (cla: yes, waiting for tree to go green) [17803](https://github.com/flutter/engine/pull/17803) Fix accessibility focus loss when first focusing on text field (cla: yes) [17804](https://github.com/flutter/engine/pull/17804) Roll src/third_party/skia fb490911a952..0ebc69c9ef34 (1 commits) (cla: yes, waiting for tree to go green) [17805](https://github.com/flutter/engine/pull/17805) Roll src/third_party/dart 4814f000de2b..d9b4c87ab4c7 (1 commits) (cla: yes, waiting for tree to go green) [17806](https://github.com/flutter/engine/pull/17806) Roll src/third_party/skia 0ebc69c9ef34..ae28b321d07d (2 commits) (cla: yes, waiting for tree to go green) [17807](https://github.com/flutter/engine/pull/17807) Roll src/third_party/dart d9b4c87ab4c7..bc59a4091857 (2 commits) (cla: yes, waiting for tree to go green) [17808](https://github.com/flutter/engine/pull/17808) Roll fuchsia/sdk/core/mac-amd64 from Pk4Fj... to cXXSn... (cla: yes, waiting for tree to go green) [17810](https://github.com/flutter/engine/pull/17810) Roll src/third_party/skia ae28b321d07d..62687b1ec3c8 (1 commits) (cla: yes, waiting for tree to go green) [17811](https://github.com/flutter/engine/pull/17811) Roll fuchsia/sdk/core/linux-amd64 from XpyTd... to pbcf1... (cla: yes, waiting for tree to go green) [17812](https://github.com/flutter/engine/pull/17812) Roll src/third_party/dart bc59a4091857..88876d564247 (1 commits) (cla: yes, waiting for tree to go green) [17813](https://github.com/flutter/engine/pull/17813) Roll src/third_party/skia 62687b1ec3c8..0c9327e48e9c (1 commits) (cla: yes, waiting for tree to go green) [17815](https://github.com/flutter/engine/pull/17815) Pass amber-files directory to tests. (cla: yes) [17816](https://github.com/flutter/engine/pull/17816) Fix a typo so that the secure input view is properly initialized (cla: yes) [17818](https://github.com/flutter/engine/pull/17818) Trial PR to enable null safety unfork in the Dart SDK. (cla: yes) [17819](https://github.com/flutter/engine/pull/17819) Roll fuchsia/sdk/core/linux-amd64 from pbcf1... to 1Utoy... (cla: yes, waiting for tree to go green) [17820](https://github.com/flutter/engine/pull/17820) Roll fuchsia/sdk/core/mac-amd64 from cXXSn... to akM_d... (cla: yes, waiting for tree to go green) [17822](https://github.com/flutter/engine/pull/17822) Roll src/third_party/dart 88876d564247..63a92a3b0027 (5 commits) (cla: yes, waiting for tree to go green) [17823](https://github.com/flutter/engine/pull/17823) Roll src/third_party/skia 0c9327e48e9c..5d440647d3a2 (4 commits) (cla: yes, waiting for tree to go green) [17824](https://github.com/flutter/engine/pull/17824) Roll src/third_party/dart 63a92a3b0027..4859de9f090f (6 commits) (cla: yes, waiting for tree to go green) [17825](https://github.com/flutter/engine/pull/17825) Roll src/third_party/skia 5d440647d3a2..eaeb99625312 (2 commits) (cla: yes, waiting for tree to go green) [17826](https://github.com/flutter/engine/pull/17826) Roll src/third_party/dart 4859de9f090f..a12c36dd97de (7 commits) (cla: yes, waiting for tree to go green) [17828](https://github.com/flutter/engine/pull/17828) Remove legacy version of SkCanvas::didConcat44 (cla: yes) [17831](https://github.com/flutter/engine/pull/17831) Use UTF-16 for C++ text input model (cla: yes) [17833](https://github.com/flutter/engine/pull/17833) Accessibility null check to catch out of bounds hitTest (cla: yes) [17834](https://github.com/flutter/engine/pull/17834) Roll fuchsia/sdk/core/mac-amd64 from akM_d... to mnlkL... (cla: yes, waiting for tree to go green) [17836](https://github.com/flutter/engine/pull/17836) Roll fuchsia/sdk/core/linux-amd64 from 1Utoy... to RPQuv... (cla: yes, waiting for tree to go green) [17837](https://github.com/flutter/engine/pull/17837) Roll src/third_party/skia eaeb99625312..76312fbf9778 (13 commits) (cla: yes, waiting for tree to go green) [17839](https://github.com/flutter/engine/pull/17839) Extend external view embedder on Android (cla: yes) [17840](https://github.com/flutter/engine/pull/17840) Roll src/third_party/dart a12c36dd97de..61c8ac8b4661 (21 commits) (cla: yes, waiting for tree to go green) [17841](https://github.com/flutter/engine/pull/17841) Roll src/third_party/skia 76312fbf9778..9d4b3185a28c (2 commits) (cla: yes, waiting for tree to go green) [17842](https://github.com/flutter/engine/pull/17842) Roll src/third_party/skia 9d4b3185a28c..607a489345ad (3 commits) (cla: yes, waiting for tree to go green) [17843](https://github.com/flutter/engine/pull/17843) Roll src/third_party/dart 61c8ac8b4661..704642a9b00e (1 commits) (cla: yes, waiting for tree to go green) [17844](https://github.com/flutter/engine/pull/17844) Roll src/third_party/skia 607a489345ad..24ea293cd25b (1 commits) (cla: yes, waiting for tree to go green) [17845](https://github.com/flutter/engine/pull/17845) Roll fuchsia/sdk/core/mac-amd64 from mnlkL... to vcYwc... (cla: yes, waiting for tree to go green) [17847](https://github.com/flutter/engine/pull/17847) Roll src/third_party/skia 24ea293cd25b..efb2133b0dd3 (7 commits) (cla: yes, waiting for tree to go green) [17848](https://github.com/flutter/engine/pull/17848) Update 1.17 engine hash to Dart 2.8.0-20.10.beta (cla: yes) [17849](https://github.com/flutter/engine/pull/17849) Roll CanvasKit to 0.14.0, fix Canvas.saveLayer(null, paint) (cla: yes) [17850](https://github.com/flutter/engine/pull/17850) Roll src/third_party/dart 704642a9b00e..ad8ed8bd468c (8 commits) (cla: yes, waiting for tree to go green) [17852](https://github.com/flutter/engine/pull/17852) Report SceneBuilder submetrics through profiling API (cla: yes) [17853](https://github.com/flutter/engine/pull/17853) Roll src/third_party/skia efb2133b0dd3..5a9e7fba1e3a (3 commits) (cla: yes, waiting for tree to go green) [17854](https://github.com/flutter/engine/pull/17854) Bundle the validation layers and enable them if --enable-vulkan-validation-layers is specified to gn (cla: yes) [17855](https://github.com/flutter/engine/pull/17855) Roll src/third_party/skia 5a9e7fba1e3a..4f8297db64df (5 commits) (cla: yes, waiting for tree to go green) [17856](https://github.com/flutter/engine/pull/17856) Use Float32List as Matrix storage inside the Web engine (cla: yes) [17857](https://github.com/flutter/engine/pull/17857) Add missing case for TextInput.requestAutofill (cla: yes) [17858](https://github.com/flutter/engine/pull/17858) Roll fuchsia/sdk/core/linux-amd64 from RPQuv... to 7Q4KR... (cla: yes, waiting for tree to go green) [17859](https://github.com/flutter/engine/pull/17859) Roll src/third_party/skia 4f8297db64df..2432d061ed35 (4 commits) (cla: yes, waiting for tree to go green) [17861](https://github.com/flutter/engine/pull/17861) Read SkSL from json asset (cla: yes) [17862](https://github.com/flutter/engine/pull/17862) Roll src/third_party/dart ad8ed8bd468c..87b829bacd36 (13 commits) (cla: yes, waiting for tree to go green) [17863](https://github.com/flutter/engine/pull/17863) Roll src/third_party/skia 2432d061ed35..e9663db508df (1 commits) (cla: yes, waiting for tree to go green) [17864](https://github.com/flutter/engine/pull/17864) [web] Prevent unnecessary DOM append call when canvas is reused (cla: yes) [17865](https://github.com/flutter/engine/pull/17865) Roll fuchsia/sdk/core/mac-amd64 from vcYwc... to ItiAX... (cla: yes, waiting for tree to go green) [17866](https://github.com/flutter/engine/pull/17866) [web] Speedup color to css string 25% (cla: yes, perf: speed) [17867](https://github.com/flutter/engine/pull/17867) [web] Remove left/top/transform reset since all code paths now set ltwh (cla: yes) [17868](https://github.com/flutter/engine/pull/17868) Roll src/third_party/skia e9663db508df..a6cd5588d231 (4 commits) (cla: yes, waiting for tree to go green) [17870](https://github.com/flutter/engine/pull/17870) Roll src/third_party/dart 87b829bacd36..e6baa97e9adc (5 commits) (cla: yes, waiting for tree to go green) [17871](https://github.com/flutter/engine/pull/17871) Roll src/third_party/skia a6cd5588d231..68a22428270c (1 commits) (cla: yes, waiting for tree to go green) [17873](https://github.com/flutter/engine/pull/17873) Roll src/third_party/dart e6baa97e9adc..64b8ded48b0d (5 commits) (cla: yes, waiting for tree to go green) [17874](https://github.com/flutter/engine/pull/17874) Roll src/third_party/skia 68a22428270c..b920a0b91b1c (1 commits) (cla: yes, waiting for tree to go green) [17875](https://github.com/flutter/engine/pull/17875) Roll fuchsia/sdk/core/linux-amd64 from 7Q4KR... to kEtiu... (cla: yes, waiting for tree to go green) [17876](https://github.com/flutter/engine/pull/17876) [fuchsia] Use dart::ComponentContext() (cla: yes) [17878](https://github.com/flutter/engine/pull/17878) [tracing] SceneDisplayLag is a synchronous event (cla: yes) [17880](https://github.com/flutter/engine/pull/17880) Roll src/third_party/skia b920a0b91b1c..5e1a57f42120 (5 commits) (cla: yes, waiting for tree to go green) [17882](https://github.com/flutter/engine/pull/17882) Protect LanguageRange behind Android O. That's when it was added. (cla: yes) [17885](https://github.com/flutter/engine/pull/17885) [web] Batch systemFontChange messages (cla: yes) [17887](https://github.com/flutter/engine/pull/17887) [web] autofill hints (cla: yes) [17890](https://github.com/flutter/engine/pull/17890) Roll fuchsia/sdk/core/mac-amd64 from ItiAX... to ornVJ... (cla: yes, waiting for tree to go green) [17891](https://github.com/flutter/engine/pull/17891) Stop clang code formatter checker breaking if local files match glob (cla: yes) [17895](https://github.com/flutter/engine/pull/17895) Roll src/third_party/dart 64b8ded48b0d..b0d35855d88c (24 commits) (cla: yes, waiting for tree to go green) [17897](https://github.com/flutter/engine/pull/17897) Hand off presentation properly in VirtualDisplayController.resize() (cla: yes) [17901](https://github.com/flutter/engine/pull/17901) Roll src/third_party/skia 5e1a57f42120..b965ff597315 (15 commits) (cla: yes, waiting for tree to go green) [17906](https://github.com/flutter/engine/pull/17906) [web] When a canvas element is reused and is first element in child list, preserve zIndex. (cla: yes) [17910](https://github.com/flutter/engine/pull/17910) Run Flutter platform tasks in GLib main loop (cla: yes) [17912](https://github.com/flutter/engine/pull/17912) Fix units used in Linux shell timestamps. (cla: yes) [17913](https://github.com/flutter/engine/pull/17913) Roll fuchsia/sdk/core/linux-amd64 from kEtiu... to kpECk... (cla: yes, waiting for tree to go green) [17914](https://github.com/flutter/engine/pull/17914) Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance) [17915](https://github.com/flutter/engine/pull/17915) Reland "Remove layer integral offset snapping" (cla: yes) [17916](https://github.com/flutter/engine/pull/17916) Revert "[tracing] SceneDisplayLag is a synchronous event" (cla: yes) [17917](https://github.com/flutter/engine/pull/17917) Roll src/third_party/dart b0d35855d88c..94178e920ee8 (37 commits) (cla: yes, waiting for tree to go green) [17919](https://github.com/flutter/engine/pull/17919) Roll fuchsia/sdk/core/mac-amd64 from ornVJ... to 9-v-E... (cla: yes, waiting for tree to go green) [17921](https://github.com/flutter/engine/pull/17921) Add initial unit tests for the android embedding (cla: yes) [17926](https://github.com/flutter/engine/pull/17926) Roll src/third_party/dart 94178e920ee8..a69cb6d700f5 (22 commits) (cla: yes, waiting for tree to go green) [17928](https://github.com/flutter/engine/pull/17928) Roll src/third_party/skia b965ff597315..1e21d14f2b8b (25 commits) (cla: yes, waiting for tree to go green) [17929](https://github.com/flutter/engine/pull/17929) Roll fuchsia/sdk/core/linux-amd64 from kpECk... to _dAFU... (cla: yes, waiting for tree to go green) [17931](https://github.com/flutter/engine/pull/17931) Update 1.17 engine hash to Dart 2.8.0 stable () [17933](https://github.com/flutter/engine/pull/17933) [web] Fix exception when getting boxes for rich text range (platform-web) [17936](https://github.com/flutter/engine/pull/17936) [web] Don't allow empty initial route (cla: yes, platform-web, waiting for tree to go green) [17938](https://github.com/flutter/engine/pull/17938) Roll fuchsia/sdk/core/linux-amd64 from _dAFU... to G4HpJ... (cla: yes, waiting for tree to go green) [17941](https://github.com/flutter/engine/pull/17941) RendererContextManager (cla: yes) [17942](https://github.com/flutter/engine/pull/17942) Roll src/third_party/skia 1e21d14f2b8b..c12aad9485a9 (20 commits) (cla: yes, waiting for tree to go green) [17943](https://github.com/flutter/engine/pull/17943) Change the repo fetch script used in integration tests (cla: yes) [17945](https://github.com/flutter/engine/pull/17945) Roll src/third_party/dart a69cb6d700f5..216e3df4526c (16 commits) (cla: yes, waiting for tree to go green) [17948](https://github.com/flutter/engine/pull/17948) Set SkSL asset manager in RunConfiguration ctor (cla: yes, platform-android, waiting for tree to go green) [17950](https://github.com/flutter/engine/pull/17950) Roll src/third_party/dart 216e3df4526c..2e438d1baffc (7 commits) (cla: yes, waiting for tree to go green) [17954](https://github.com/flutter/engine/pull/17954) Fix memory leak of FlutterCustomAccessibilityAction (cla: yes) [17955](https://github.com/flutter/engine/pull/17955) Roll fuchsia/sdk/core/mac-amd64 from 9-v-E... to 2CE6x... (cla: yes, waiting for tree to go green) [17957](https://github.com/flutter/engine/pull/17957) Roll src/third_party/skia c12aad9485a9..97cfb05aabe4 (3 commits) (cla: yes, waiting for tree to go green) [17960](https://github.com/flutter/engine/pull/17960) Custom unicode handling for Android backspace via JNI to ICU (cla: yes, waiting for tree to go green) [17963](https://github.com/flutter/engine/pull/17963) Roll fuchsia/sdk/core/mac-amd64 from 2CE6x... to 9O3Ef... (cla: yes, waiting for tree to go green) [17964](https://github.com/flutter/engine/pull/17964) Fix method handler control flow in Windows and Linux text input plugins (cla: yes) [17966](https://github.com/flutter/engine/pull/17966) Roll src/third_party/skia 97cfb05aabe4..1ae3e75a0b4c (2 commits) (cla: yes, waiting for tree to go green) [17967](https://github.com/flutter/engine/pull/17967) Roll src/third_party/dart 2e438d1baffc..a53d336b9fd4 (4 commits) (cla: yes, waiting for tree to go green) [17968](https://github.com/flutter/engine/pull/17968) Roll src/third_party/skia 1ae3e75a0b4c..981d590e8eba (1 commits) (cla: yes, waiting for tree to go green) [17971](https://github.com/flutter/engine/pull/17971) Manual roll of Dart 03429b20cd67f85d65cc589b529ab8c1a4780912...a53d336b9fd4bbb415d2f1e3f4c653aa107f31c7 (cla: yes) [17972](https://github.com/flutter/engine/pull/17972) Roll src/third_party/skia 981d590e8eba..78debd6f6d83 (5 commits) (cla: yes, waiting for tree to go green) [17975](https://github.com/flutter/engine/pull/17975) Roll fuchsia/sdk/core/mac-amd64 from 9O3Ef... to arZdZ... (cla: yes, waiting for tree to go green) [17976](https://github.com/flutter/engine/pull/17976) Roll src/third_party/skia 78debd6f6d83..81ef385c1fcd (1 commits) (cla: yes, waiting for tree to go green) [17978](https://github.com/flutter/engine/pull/17978) Update buildroot (cla: yes, waiting for tree to go green) [17979](https://github.com/flutter/engine/pull/17979) Reenable flutter scenic test to identify crashes and follow up on fixes. (cla: yes, waiting for tree to go green) [17980](https://github.com/flutter/engine/pull/17980) [web] Fix cachedLastStyle state leak across canvases. Reduce ctx.font reset calls. (cla: yes) [17981](https://github.com/flutter/engine/pull/17981) Started ignoring remote keyboard notifications. (cla: yes) [17985](https://github.com/flutter/engine/pull/17985) remove top padding when system UI in fullscreen mode (cla: yes) [17986](https://github.com/flutter/engine/pull/17986) Autofill main part (cla: yes) [17987](https://github.com/flutter/engine/pull/17987) Roll fuchsia/sdk/core/linux-amd64 from eapIV... to 3h-X9... (cla: yes, waiting for tree to go green) [17988](https://github.com/flutter/engine/pull/17988) Bumped up the timeout for testAccessibilityFocusOnTextSemanticsProducesCorrectIosViews (cla: yes) [17991](https://github.com/flutter/engine/pull/17991) Roll src/third_party/skia 81ef385c1fcd..5f56cb1d3b4f (14 commits) (cla: yes, waiting for tree to go green) [17993](https://github.com/flutter/engine/pull/17993) Manual Roll of Dart to 726d3c772554924f62db0b9e0d4c280dbbddc824 (cla: yes) [17994](https://github.com/flutter/engine/pull/17994) Use g_warning instead of stderr (cla: yes) [17995](https://github.com/flutter/engine/pull/17995) Support platform messages in Linux shell (cla: yes) [17996](https://github.com/flutter/engine/pull/17996) Make robolectric tests run against SDK 29 by default (cla: yes, waiting for tree to go green) [17999](https://github.com/flutter/engine/pull/17999) Roll src/third_party/skia 5f56cb1d3b4f..f5132a05c893 (6 commits) (cla: yes, waiting for tree to go green) [18003](https://github.com/flutter/engine/pull/18003) Roll src/third_party/skia f5132a05c893..4baa7326ccfb (1 commits) (cla: yes, waiting for tree to go green) [18005](https://github.com/flutter/engine/pull/18005) Roll fuchsia/sdk/core/linux-amd64 from 3h-X9... to NeQ_8... (cla: yes, waiting for tree to go green) [18006](https://github.com/flutter/engine/pull/18006) [fuchsia] set vsync_offset based on config file (cla: yes, severe: performance) [18007](https://github.com/flutter/engine/pull/18007) Set the max vulkan API version (cla: yes) [18009](https://github.com/flutter/engine/pull/18009) Disable the import_internal_library analyzer check for dart:ui (cla: yes) [18014](https://github.com/flutter/engine/pull/18014) use $CIRRUS_BASE_BRANCH for the branch name (cla: yes) [18015](https://github.com/flutter/engine/pull/18015) skip TextSemanticsFocusTest for flake (cla: yes) [18017](https://github.com/flutter/engine/pull/18017) Roll src/third_party/skia 4baa7326ccfb..a50ce3c98357 (18 commits) (cla: yes, waiting for tree to go green) [18018](https://github.com/flutter/engine/pull/18018) Roll fuchsia/sdk/core/mac-amd64 from arZdZ... to 6VJ1C... (cla: yes, waiting for tree to go green) [18019](https://github.com/flutter/engine/pull/18019) [web] also hide scrollbars in text_editing (cla: yes) [18021](https://github.com/flutter/engine/pull/18021) Roll src/third_party/dart 726d3c772554..207953f367e6 (79 commits) (cla: yes, waiting for tree to go green) [18022](https://github.com/flutter/engine/pull/18022) [Metal] On context loss with a paused texture source, preserve external pixel buffer. (cla: yes) [18023](https://github.com/flutter/engine/pull/18023) Replace usage of NULL with nullptr to match coding style (cla: yes) [18024](https://github.com/flutter/engine/pull/18024) Roll src/third_party/skia a50ce3c98357..8a6f2ed4ffd4 (3 commits) (cla: yes, waiting for tree to go green) [18025](https://github.com/flutter/engine/pull/18025) Roll src/third_party/dart 207953f367e6..05b7f49c7267 (3 commits) (cla: yes, waiting for tree to go green) [18026](https://github.com/flutter/engine/pull/18026) Roll fuchsia/sdk/core/linux-amd64 from NeQ_8... to sKCYL... (cla: yes, waiting for tree to go green) [18029](https://github.com/flutter/engine/pull/18029) soften shadows even more; fix shadow alpha (cla: yes) [18032](https://github.com/flutter/engine/pull/18032) [web] Use correct shell operator to compare file limits (cla: yes, platform-web) [18033](https://github.com/flutter/engine/pull/18033) Revert all build changes made to test the Dart NNBD unfork CL. (cla: yes) [18034](https://github.com/flutter/engine/pull/18034) [web] First batch of unit tests for line breaker (cla: yes, platform-web) [18035](https://github.com/flutter/engine/pull/18035) [web] remove linux-chrome unit tests from cirrus CI (cla: yes) [18036](https://github.com/flutter/engine/pull/18036) Roll src/third_party/dart 05b7f49c7267..53601ecc18e5 (15 commits) (cla: yes, waiting for tree to go green) [18038](https://github.com/flutter/engine/pull/18038) Roll fuchsia/sdk/core/mac-amd64 from 6VJ1C... to WqvOR... (cla: yes, waiting for tree to go green) [18040](https://github.com/flutter/engine/pull/18040) [web] Add support for syncing unicode line break properties (cla: yes, platform-web) [18042](https://github.com/flutter/engine/pull/18042) Wire up channel for restoration data (cla: yes, platform-android) [18043](https://github.com/flutter/engine/pull/18043) Populate window.locale in Dart (cla: yes) [18050](https://github.com/flutter/engine/pull/18050) Introduce runtime check that it is root isolate that makes UI native calls. (cla: yes) [18051](https://github.com/flutter/engine/pull/18051) Roll fuchsia/sdk/core/linux-amd64 from sKCYL... to KcV-O... (cla: yes, waiting for tree to go green) [18052](https://github.com/flutter/engine/pull/18052) make "flutter run --trace-systrace" work. (cla: yes) [18053](https://github.com/flutter/engine/pull/18053) Roll src/third_party/skia 8a6f2ed4ffd4..21d1720203f4 (24 commits) (cla: yes, waiting for tree to go green) [18055](https://github.com/flutter/engine/pull/18055) Roll fuchsia/sdk/core/mac-amd64 from WqvOR... to rxvhs... (cla: yes, waiting for tree to go green) [18056](https://github.com/flutter/engine/pull/18056) Roll src/third_party/skia 21d1720203f4..5ba50afeed4c (1 commits) (cla: yes, waiting for tree to go green) [18064](https://github.com/flutter/engine/pull/18064) [fuchsia] Log unregistered platform channels only once (cla: yes, waiting for tree to go green) [18065](https://github.com/flutter/engine/pull/18065) [web] Add TargetPlatform tests (cla: yes) [18066](https://github.com/flutter/engine/pull/18066) 1.17.0-3.4.pre Engine Cherrypicks (cla: yes) [18067](https://github.com/flutter/engine/pull/18067) Update Fuchsia ComponentContext constructor call to renamed, but equvalent, method (cla: yes) [18070](https://github.com/flutter/engine/pull/18070) Add an API for resyncing output streams (cla: yes) [18072](https://github.com/flutter/engine/pull/18072) Remove the ResourceCleaner from the Android embedding (cla: yes, waiting for tree to go green) [18076](https://github.com/flutter/engine/pull/18076) Don't depend on an implicit transaction when presenting drawables on the raster thread. (cla: yes) [18079](https://github.com/flutter/engine/pull/18079) Roll fuchsia/sdk/core/mac-amd64 from rxvhs... to 2VquQ... (cla: yes, waiting for tree to go green) [18081](https://github.com/flutter/engine/pull/18081) Revert "Remove Samsung workaround" (cla: yes) [18083](https://github.com/flutter/engine/pull/18083) Roll fuchsia/sdk/core/linux-amd64 from KcV-O... to cIjMH... (cla: yes, waiting for tree to go green) [18087](https://github.com/flutter/engine/pull/18087) [profiling] CPU Profiling support for iOS (cla: yes, severe: performance) [18088](https://github.com/flutter/engine/pull/18088) Roll src/third_party/skia 5ba50afeed4c..e55e56038cf4 (26 commits) (cla: yes, waiting for tree to go green) [18089](https://github.com/flutter/engine/pull/18089) CP fix for web_engine_integration_test_linux to 1.17 engine (cla: yes) [18090](https://github.com/flutter/engine/pull/18090) Roll fuchsia/sdk/core/mac-amd64 from 2VquQ... to ByAMa... (cla: yes, waiting for tree to go green) [18091](https://github.com/flutter/engine/pull/18091) Roll src/third_party/skia e55e56038cf4..5443bb32a2ad (1 commits) (cla: yes, waiting for tree to go green) [18095](https://github.com/flutter/engine/pull/18095) Roll src/third_party/skia 5443bb32a2ad..64964bb1150e (23 commits) (cla: yes, waiting for tree to go green) [18096](https://github.com/flutter/engine/pull/18096) Roll src/third_party/dart 53601ecc18e5..eca696c0268f (81 commits) (cla: yes, waiting for tree to go green) [18097](https://github.com/flutter/engine/pull/18097) Present Metal drawable with a transaction only when on the Main thread. (cla: yes) [18098](https://github.com/flutter/engine/pull/18098) Roll fuchsia/sdk/core/linux-amd64 from cIjMH... to Rp56G... (cla: yes, waiting for tree to go green) [18099](https://github.com/flutter/engine/pull/18099) Roll src/third_party/skia 64964bb1150e..80cab814091d (1 commits) (cla: yes, waiting for tree to go green) [18100](https://github.com/flutter/engine/pull/18100) Roll src/third_party/dart eca696c0268f..be1f85847fd5 (3 commits) (cla: yes, waiting for tree to go green) [18101](https://github.com/flutter/engine/pull/18101) Roll fuchsia/sdk/core/mac-amd64 from ByAMa... to -_piy... (cla: yes, waiting for tree to go green) [18102](https://github.com/flutter/engine/pull/18102) Roll src/third_party/dart be1f85847fd5..a42e6ac0356d (1 commits) (cla: yes, waiting for tree to go green) [18103](https://github.com/flutter/engine/pull/18103) Roll src/third_party/dart a42e6ac0356d..c3ce87355614 (3 commits) (cla: yes, waiting for tree to go green) [18104](https://github.com/flutter/engine/pull/18104) Roll fuchsia/sdk/core/linux-amd64 from Rp56G... to KmYk_... (cla: yes, waiting for tree to go green) [18105](https://github.com/flutter/engine/pull/18105) Roll src/third_party/skia 80cab814091d..57f289d7423c (1 commits) (cla: yes, waiting for tree to go green) [18107](https://github.com/flutter/engine/pull/18107) Fixes Semantic Object memory leak cause of wrong release call (cla: yes) [18109](https://github.com/flutter/engine/pull/18109) Roll fuchsia/sdk/core/mac-amd64 from -_piy... to 86k0P... (cla: yes, waiting for tree to go green) [18110](https://github.com/flutter/engine/pull/18110) Roll src/third_party/dart c3ce87355614..d5af40b640f7 (1 commits) (cla: yes, waiting for tree to go green) [18111](https://github.com/flutter/engine/pull/18111) [web] Add support for ColorFilter on images (cla: yes) [18113](https://github.com/flutter/engine/pull/18113) Roll fuchsia/sdk/core/linux-amd64 from KmYk_... to ylgTh... (cla: yes, waiting for tree to go green) [18114](https://github.com/flutter/engine/pull/18114) Roll src/third_party/dart d5af40b640f7..3a7633a191ca (2 commits) (cla: yes, waiting for tree to go green) [18115](https://github.com/flutter/engine/pull/18115) Add support for screenshot testing in the scenario app on Android (cla: yes) [18116](https://github.com/flutter/engine/pull/18116) Move G_END_DECLS that was in the wrong place (cla: yes) [18117](https://github.com/flutter/engine/pull/18117) Roll fuchsia/sdk/core/mac-amd64 from 86k0P... to sYtg-... (cla: yes, waiting for tree to go green) [18120](https://github.com/flutter/engine/pull/18120) Roll src/third_party/skia 57f289d7423c..cdf23dd9f1b5 (6 commits) (cla: yes, waiting for tree to go green) [18121](https://github.com/flutter/engine/pull/18121) Roll src/third_party/dart 3a7633a191ca..e2c223de2e2a (1 commits) (cla: yes, waiting for tree to go green) [18122](https://github.com/flutter/engine/pull/18122) Roll src/third_party/dart e2c223de2e2a..e7bebea059ff (11 commits) (cla: yes, waiting for tree to go green) [18123](https://github.com/flutter/engine/pull/18123) Roll src/third_party/skia cdf23dd9f1b5..4dab280c2835 (4 commits) (cla: yes, waiting for tree to go green) [18127](https://github.com/flutter/engine/pull/18127) Roll src/third_party/skia 4dab280c2835..8a2f29eae7a5 (10 commits) (cla: yes, waiting for tree to go green) [18128](https://github.com/flutter/engine/pull/18128) [web] Workaround for compositing bug in chrome/webkit (cla: yes) [18129](https://github.com/flutter/engine/pull/18129) Roll src/third_party/skia 8a2f29eae7a5..9588a643d96f (9 commits) (cla: yes, waiting for tree to go green) [18130](https://github.com/flutter/engine/pull/18130) Roll src/third_party/dart e7bebea059ff..01820c20a540 (15 commits) (cla: yes, waiting for tree to go green) [18131](https://github.com/flutter/engine/pull/18131) System mouse cursor: macOS (cla: yes) [18132](https://github.com/flutter/engine/pull/18132) Revert again "Remove layer integral offset snapping" (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18133](https://github.com/flutter/engine/pull/18133) Roll fuchsia/sdk/core/linux-amd64 from ylgTh... to xJlpY... (cla: yes, waiting for tree to go green) [18134](https://github.com/flutter/engine/pull/18134) Roll src/third_party/skia 9588a643d96f..d5f937bfca36 (1 commits) (cla: yes, waiting for tree to go green) [18135](https://github.com/flutter/engine/pull/18135) [web] Upgrade the test package to remove the dependency on package_resolver (cla: yes, waiting for tree to go green) [18136](https://github.com/flutter/engine/pull/18136) Roll fuchsia/sdk/core/mac-amd64 from sYtg-... to ERGnT... (cla: yes, waiting for tree to go green) [18137](https://github.com/flutter/engine/pull/18137) Implement `local`, `locales`, and `onLocaleChanged` for the web (cla: yes) [18138](https://github.com/flutter/engine/pull/18138) Revert again "Remove layer integral offset snapping" (#18132) (cla: yes, waiting for tree to go green) [18139](https://github.com/flutter/engine/pull/18139) Roll src/third_party/skia d5f937bfca36..6d2febd632a2 (1 commits) (cla: yes, waiting for tree to go green) [18141](https://github.com/flutter/engine/pull/18141) Roll src/third_party/skia 6d2febd632a2..41e377d1baf0 (1 commits) (cla: yes, waiting for tree to go green) [18143](https://github.com/flutter/engine/pull/18143) Roll src/third_party/dart 01820c20a540..9c94f0841078 (17 commits) (cla: yes, waiting for tree to go green) [18144](https://github.com/flutter/engine/pull/18144) Fixed ChildSceneLayer elevation issue on Fuchsia. (cla: yes) [18146](https://github.com/flutter/engine/pull/18146) Add new FlutterEngineAOTData argument to FlutterProjectArgs (cla: yes) [18147](https://github.com/flutter/engine/pull/18147) Roll src/third_party/dart 9c94f0841078..7bb38670d279 (12 commits) (cla: yes, waiting for tree to go green) [18148](https://github.com/flutter/engine/pull/18148) Roll fuchsia/sdk/core/linux-amd64 from xJlpY... to gnNdl... (cla: yes, waiting for tree to go green) [18150](https://github.com/flutter/engine/pull/18150) Roll src/third_party/skia 41e377d1baf0..3d311a983bf0 (9 commits) (cla: yes, waiting for tree to go green) [18151](https://github.com/flutter/engine/pull/18151) Manually add dependency for shelf_proxy (cla: yes) [18152](https://github.com/flutter/engine/pull/18152) Roll src/third_party/skia 3d311a983bf0..0cbd58766ace (2 commits) (cla: yes, waiting for tree to go green) [18153](https://github.com/flutter/engine/pull/18153) [iOS platform view] fix active_composition_order_ never cleared (cla: yes) [18154](https://github.com/flutter/engine/pull/18154) gpu_metal_surface `submitframe` return false when canvas is null (cla: yes) [18155](https://github.com/flutter/engine/pull/18155) Roll fuchsia/sdk/core/mac-amd64 from ERGnT... to c5NQZ... (cla: yes, waiting for tree to go green) [18157](https://github.com/flutter/engine/pull/18157) Handle leak of message handle when no engine present (cla: yes) [18159](https://github.com/flutter/engine/pull/18159) Add first Linux shell tests (cla: yes) [18160](https://github.com/flutter/engine/pull/18160) Reland again "Remove layer integral offset snapping #17112" (cla: yes) [18161](https://github.com/flutter/engine/pull/18161) Roll src/third_party/dart 7bb38670d279..1ef444139c4c (22 commits) (cla: yes, waiting for tree to go green) [18164](https://github.com/flutter/engine/pull/18164) Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance) [18165](https://github.com/flutter/engine/pull/18165) [web] Implement path winding. Fix path bounds for multirect. (cla: yes) [18167](https://github.com/flutter/engine/pull/18167) Roll src/third_party/skia 0cbd58766ace..e1c0cb3de8ab (8 commits) (cla: yes, waiting for tree to go green) [18168](https://github.com/flutter/engine/pull/18168) Roll src/third_party/skia e1c0cb3de8ab..1e8fb04b29b9 (3 commits) (cla: yes, waiting for tree to go green) [18171](https://github.com/flutter/engine/pull/18171) Roll fuchsia/sdk/core/linux-amd64 from gnNdl... to RpHTv... (cla: yes, waiting for tree to go green) [18172](https://github.com/flutter/engine/pull/18172) Roll src/third_party/dart 1ef444139c4c..8c8249fa0123 (11 commits) (cla: yes, waiting for tree to go green) [18173](https://github.com/flutter/engine/pull/18173) Roll src/third_party/skia 1e8fb04b29b9..c5727d8e34d2 (1 commits) (cla: yes, waiting for tree to go green) [18174](https://github.com/flutter/engine/pull/18174) Roll src/third_party/skia c5727d8e34d2..999257d870d7 (5 commits) (cla: yes, waiting for tree to go green) [18175](https://github.com/flutter/engine/pull/18175) Roll fuchsia/sdk/core/mac-amd64 from c5NQZ... to jMJqf... (cla: yes, waiting for tree to go green) [18176](https://github.com/flutter/engine/pull/18176) Roll src/third_party/skia 999257d870d7..c1ad77cf482a (2 commits) (cla: yes, waiting for tree to go green) [18177](https://github.com/flutter/engine/pull/18177) Roll src/third_party/dart 8c8249fa0123..4da5b40fb6dc (14 commits) (cla: yes, waiting for tree to go green) [18178](https://github.com/flutter/engine/pull/18178) [SkParagraph] Copy text height behavior to the Skia paragraph style (cla: yes, waiting for tree to go green) [18179](https://github.com/flutter/engine/pull/18179) Roll src/third_party/skia c1ad77cf482a..18db52f2ee56 (5 commits) (cla: yes, waiting for tree to go green) [18180](https://github.com/flutter/engine/pull/18180) Run integration tests on luci, use cipd package for Chrome (cla: yes) [18182](https://github.com/flutter/engine/pull/18182) Remove the global engine entry timestamp (cla: yes) [18183](https://github.com/flutter/engine/pull/18183) Roll src/third_party/skia 18db52f2ee56..88d04cb51acf (13 commits) (cla: yes, waiting for tree to go green) [18185](https://github.com/flutter/engine/pull/18185) Add FlValue (cla: yes) [18186](https://github.com/flutter/engine/pull/18186) Add FlMessageCodec (cla: yes) [18188](https://github.com/flutter/engine/pull/18188) Roll src/third_party/dart 4da5b40fb6dc..733153eb517c (23 commits) (cla: yes, waiting for tree to go green) [18189](https://github.com/flutter/engine/pull/18189) Add FlBasicMessageChannel (cla: yes) [18190](https://github.com/flutter/engine/pull/18190) Roll src/third_party/skia 88d04cb51acf..3b2db26c59d6 (1 commits) (cla: yes, waiting for tree to go green) [18191](https://github.com/flutter/engine/pull/18191) Roll fuchsia/sdk/core/linux-amd64 from RpHTv... to MhpFP... (cla: yes, waiting for tree to go green) [18192](https://github.com/flutter/engine/pull/18192) Roll src/third_party/skia 3b2db26c59d6..e3d1de7c5281 (4 commits) (cla: yes, waiting for tree to go green) [18193](https://github.com/flutter/engine/pull/18193) Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android) [18194](https://github.com/flutter/engine/pull/18194) Roll fuchsia/sdk/core/mac-amd64 from jMJqf... to 1MVsE... (cla: yes, waiting for tree to go green) [18195](https://github.com/flutter/engine/pull/18195) Roll src/third_party/dart 733153eb517c..e86e4d61834a (6 commits) (cla: yes, waiting for tree to go green) [18197](https://github.com/flutter/engine/pull/18197) Roll src/third_party/skia e3d1de7c5281..2871ab0727bf (1 commits) (cla: yes, waiting for tree to go green) [18198](https://github.com/flutter/engine/pull/18198) Roll src/third_party/skia 2871ab0727bf..edea19858ccc (3 commits) (cla: yes, waiting for tree to go green) [18199](https://github.com/flutter/engine/pull/18199) Update the observatory thread name for profiling thread (cla: yes, waiting for tree to go green) [18201](https://github.com/flutter/engine/pull/18201) Roll src/third_party/dart e86e4d61834a..ce62ad2e8b40 (13 commits) (cla: yes, waiting for tree to go green) [18202](https://github.com/flutter/engine/pull/18202) Add new keyboard types and missing ios UITextContentType.newPassword (cla: yes) [18203](https://github.com/flutter/engine/pull/18203) Roll src/third_party/skia edea19858ccc..0066adefa97d (3 commits) (cla: yes, waiting for tree to go green) [18204](https://github.com/flutter/engine/pull/18204) skip painting clipped out pictures (cla: yes) [18205](https://github.com/flutter/engine/pull/18205) Refactor GLFW embedding to support headless mode (cla: yes) [18206](https://github.com/flutter/engine/pull/18206) Roll src/third_party/skia 0066adefa97d..c66cd987f7c0 (4 commits) (cla: yes, waiting for tree to go green) [18208](https://github.com/flutter/engine/pull/18208) [web] Implement matrix parameter for linear gradient (cla: yes) [18211](https://github.com/flutter/engine/pull/18211) Manual Roll of Dart 39e0e75fcf...ce62ad2e8b (cla: yes) [18212](https://github.com/flutter/engine/pull/18212) Roll src/third_party/skia c66cd987f7c0..0dc207f836da (5 commits) (cla: yes, waiting for tree to go green) [18213](https://github.com/flutter/engine/pull/18213) Add FlStandardCodec (cla: yes) [18214](https://github.com/flutter/engine/pull/18214) Publish validation layer deps as part of the fuchsia artifacts (cla: yes, waiting for tree to go green) [18215](https://github.com/flutter/engine/pull/18215) Manual roll of Dart 617bc54b71...39e0e75fcf (cla: yes) [18216](https://github.com/flutter/engine/pull/18216) implement MaskFilter.blur as shadow on Safari (cla: yes) [18217](https://github.com/flutter/engine/pull/18217) Roll src/fuchsia/sdk/mac from 1MVsE... to 4MCVP... (cla: yes, waiting for tree to go green) [18219](https://github.com/flutter/engine/pull/18219) Roll src/third_party/skia 0dc207f836da..a14084ba1b41 (3 commits) (cla: yes, waiting for tree to go green) [18220](https://github.com/flutter/engine/pull/18220) Add FlMethodChannel, FlMethodCodec, FlStandardMethodCodec and FlJsonMethodCodec (cla: yes) [18221](https://github.com/flutter/engine/pull/18221) Add FlJsonMessageCodec (cla: yes) [18222](https://github.com/flutter/engine/pull/18222) Roll src/fuchsia/sdk/linux from MhpFP... to c1q_S... (cla: yes, waiting for tree to go green) [18223](https://github.com/flutter/engine/pull/18223) Roll src/third_party/skia a14084ba1b41..8f6c3ed7c7be (1 commits) (cla: yes, waiting for tree to go green) [18224](https://github.com/flutter/engine/pull/18224) Roll src/third_party/skia 8f6c3ed7c7be..b55372444d1b (4 commits) (cla: yes, waiting for tree to go green) [18225](https://github.com/flutter/engine/pull/18225) Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18226](https://github.com/flutter/engine/pull/18226) Add guards on FlValue methods to check for NULL values (cla: yes) [18228](https://github.com/flutter/engine/pull/18228) Roll src/fuchsia/sdk/mac from 4MCVP... to T5tT0... (cla: yes, waiting for tree to go green) [18229](https://github.com/flutter/engine/pull/18229) Roll src/third_party/skia b55372444d1b..ac09f7cd7a28 (2 commits) (cla: yes, waiting for tree to go green) [18230](https://github.com/flutter/engine/pull/18230) Roll src/third_party/skia ac09f7cd7a28..c683912173bb (2 commits) (cla: yes, waiting for tree to go green) [18232](https://github.com/flutter/engine/pull/18232) disable safari font loading unit test (cla: yes) [18233](https://github.com/flutter/engine/pull/18233) [fuchsia] add robust scheduling for flutter_runner (cla: yes) [18234](https://github.com/flutter/engine/pull/18234) Roll src/third_party/skia c683912173bb..7359165e660c (1 commits) (cla: yes, waiting for tree to go green) [18235](https://github.com/flutter/engine/pull/18235) Add fontFeatures and decorationThickness to TextStyle (cla: yes) [18237](https://github.com/flutter/engine/pull/18237) Roll src/third_party/skia 7359165e660c..6913d1bb1d7a (1 commits) (cla: yes, waiting for tree to go green) [18238](https://github.com/flutter/engine/pull/18238) refactor the task_runner and task_runner_checker (cla: yes) [18239](https://github.com/flutter/engine/pull/18239) Roll src/third_party/dart 617bc54b715d..2a14a62112e6 (30 commits) (cla: yes, waiting for tree to go green) [18241](https://github.com/flutter/engine/pull/18241) Move FlutterLoader disk I/O to a background thread to comply with Android strict mode (cla: yes, waiting for tree to go green) [18242](https://github.com/flutter/engine/pull/18242) Revert "Remove pipeline in favor of layer tree holder (#17688)" (cla: yes, waiting for tree to go green) [18243](https://github.com/flutter/engine/pull/18243) Roll src/third_party/skia 6913d1bb1d7a..bf1904fd4898 (3 commits) (cla: yes, waiting for tree to go green) [18244](https://github.com/flutter/engine/pull/18244) Automatically remove old persistent cache dir (cla: yes) [18245](https://github.com/flutter/engine/pull/18245) Always keep thread merged when there are platform views. (cla: yes) [18247](https://github.com/flutter/engine/pull/18247) Roll src/third_party/dart 2a14a62112e6..017b1c46f6d5 (7 commits) (cla: yes, waiting for tree to go green) [18248](https://github.com/flutter/engine/pull/18248) Roll src/fuchsia/sdk/mac from T5tT0... to e718l... (cla: yes, waiting for tree to go green) [18252](https://github.com/flutter/engine/pull/18252) Roll src/third_party/dart 017b1c46f6d5..518f09726660 (2 commits) (cla: yes, waiting for tree to go green) [18253](https://github.com/flutter/engine/pull/18253) Use 'message' as the parameter name in FlMessageCodec::encode_message (cla: yes) [18255](https://github.com/flutter/engine/pull/18255) Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance) [18257](https://github.com/flutter/engine/pull/18257) Restore the call to initConfig in FlutterLoader (cla: yes) [18259](https://github.com/flutter/engine/pull/18259) Roll src/third_party/dart 518f09726660..092ed38a87e9 (3 commits) (cla: yes, waiting for tree to go green) [18261](https://github.com/flutter/engine/pull/18261) Roll src/fuchsia/sdk/linux from c1q_S... to iJ5zT... (cla: yes, waiting for tree to go green) [18262](https://github.com/flutter/engine/pull/18262) Roll src/fuchsia/sdk/mac from e718l... to FnmfP... (cla: yes, waiting for tree to go green) [18263](https://github.com/flutter/engine/pull/18263) Roll src/third_party/skia bf1904fd4898..2b688a65c1df (3 commits) (cla: yes, waiting for tree to go green) [18264](https://github.com/flutter/engine/pull/18264) Roll src/third_party/skia 2b688a65c1df..0b535555ed5d (1 commits) (cla: yes, waiting for tree to go green) [18265](https://github.com/flutter/engine/pull/18265) Roll src/fuchsia/sdk/linux from iJ5zT... to oDp5y... (cla: yes, waiting for tree to go green) [18268](https://github.com/flutter/engine/pull/18268) Fix grammar in FlBinaryCodec/FlStringCodec descriptions (cla: yes) [18269](https://github.com/flutter/engine/pull/18269) Use the term 'handler' for registering callbacks. (cla: yes) [18270](https://github.com/flutter/engine/pull/18270) Roll src/fuchsia/sdk/mac from FnmfP... to Hss3M... (cla: yes, waiting for tree to go green) [18271](https://github.com/flutter/engine/pull/18271) Roll src/third_party/skia 0b535555ed5d..ceb39212fece (1 commits) (cla: yes, waiting for tree to go green) [18272](https://github.com/flutter/engine/pull/18272) Roll src/third_party/dart 092ed38a87e9..a6d06b59ec4b (2 commits) (cla: yes, waiting for tree to go green) [18273](https://github.com/flutter/engine/pull/18273) Roll src/third_party/skia ceb39212fece..d7a5b59b1ef0 (5 commits) (cla: yes, waiting for tree to go green) [18274](https://github.com/flutter/engine/pull/18274) Roll src/third_party/skia d7a5b59b1ef0..83c6626946d0 (5 commits) (cla: yes, waiting for tree to go green) [18275](https://github.com/flutter/engine/pull/18275) Roll src/third_party/skia 83c6626946d0..21be4f215d0b (5 commits) (cla: yes, waiting for tree to go green) [18276](https://github.com/flutter/engine/pull/18276) Roll src/third_party/dart a6d06b59ec4b..4e520824f502 (7 commits) (cla: yes, waiting for tree to go green) [18277](https://github.com/flutter/engine/pull/18277) Roll src/third_party/skia 21be4f215d0b..c74db7998b4e (2 commits) (cla: yes, waiting for tree to go green) [18278](https://github.com/flutter/engine/pull/18278) Roll src/third_party/skia c74db7998b4e..518fd4d9d09d (1 commits) (cla: yes, waiting for tree to go green) [18279](https://github.com/flutter/engine/pull/18279) Fix latest_frame_target_time race (cla: yes) [18280](https://github.com/flutter/engine/pull/18280) fuchsia: Implement CreateViewWithViewProvider (cla: yes) [18281](https://github.com/flutter/engine/pull/18281) Added a unit test for the iOS AccessibilityBridge. (cla: yes) [18282](https://github.com/flutter/engine/pull/18282) Roll src/third_party/skia 518fd4d9d09d..dd1de25896e9 (2 commits) (cla: yes, waiting for tree to go green) [18283](https://github.com/flutter/engine/pull/18283) Fix incorrect declaration of FlBinaryCodec (cla: yes) [18284](https://github.com/flutter/engine/pull/18284) Roll src/third_party/dart 4e520824f502..2497606fed87 (11 commits) (cla: yes, waiting for tree to go green) [18285](https://github.com/flutter/engine/pull/18285) Remove pipeline in favor of layer tree holder (#17688) (cla: yes) [18286](https://github.com/flutter/engine/pull/18286) Roll src/fuchsia/sdk/mac from Hss3M... to gOhJW... (cla: yes, waiting for tree to go green) [18287](https://github.com/flutter/engine/pull/18287) Roll src/fuchsia/sdk/linux from oDp5y... to TZN85... (cla: yes, waiting for tree to go green) [18288](https://github.com/flutter/engine/pull/18288) [web] Represent CSS identity transforms as 'none' instead of null (cla: yes, waiting for tree to go green) [18289](https://github.com/flutter/engine/pull/18289) Roll src/third_party/dart 2497606fed87..c6db98667aa6 (4 commits) (cla: yes, waiting for tree to go green) [18290](https://github.com/flutter/engine/pull/18290) engine cherrypicks for 1.17.1 (cla: yes) [18291](https://github.com/flutter/engine/pull/18291) Roll src/third_party/skia dd1de25896e9..36bda05b2199 (1 commits) (cla: yes, waiting for tree to go green) [18292](https://github.com/flutter/engine/pull/18292) Roll src/third_party/skia 36bda05b2199..4e9cfe7691dd (4 commits) (cla: yes, waiting for tree to go green) [18294](https://github.com/flutter/engine/pull/18294) Roll src/third_party/dart c6db98667aa6..245a574301b1 (3 commits) (cla: yes, waiting for tree to go green) [18296](https://github.com/flutter/engine/pull/18296) Roll src/third_party/skia 4e9cfe7691dd..3d2c41b773f6 (1 commits) (cla: yes, waiting for tree to go green) [18297](https://github.com/flutter/engine/pull/18297) Roll src/third_party/dart 245a574301b1..d5650235a249 (7 commits) (cla: yes, waiting for tree to go green) [18308](https://github.com/flutter/engine/pull/18308) [fuchsia] Disable failing physical shape layer tests () [18313](https://github.com/flutter/engine/pull/18313) Add FlKeyEventPlugin (cla: yes) [18314](https://github.com/flutter/engine/pull/18314) Add FlTextInputPlugin (cla: yes) [18316](https://github.com/flutter/engine/pull/18316) Add FlPlatformPlugin (cla: yes) [18317](https://github.com/flutter/engine/pull/18317) 1.18.0-11.1.pre: Update 1.18 engine hash to Dart 2.9.0-8.2.beta (cla: yes) [18319](https://github.com/flutter/engine/pull/18319) Temporarily disabling the fuchsia runtime tests (cla: yes) [18320](https://github.com/flutter/engine/pull/18320) Implement WriteAtomically using write/fsync on all platforms, and enable file unittests on Fuchsia (cla: yes, waiting for tree to go green) [18321](https://github.com/flutter/engine/pull/18321) Set caches directory on Fuchsia (cla: yes) [18323](https://github.com/flutter/engine/pull/18323) Disable flow tests on Fuchsia (cla: yes) [18326](https://github.com/flutter/engine/pull/18326) Disable all fuchsia tests temporarily (cla: yes) [18327](https://github.com/flutter/engine/pull/18327) Roll src/third_party/dart d5650235a249..2bf325900586 (35 commits) (cla: yes, waiting for tree to go green) [18328](https://github.com/flutter/engine/pull/18328) [web] change viewinsets instead of physical size for keyboard (cla: yes) [18329](https://github.com/flutter/engine/pull/18329) [web] Fix paragraph positioning (cla: yes) [18332](https://github.com/flutter/engine/pull/18332) Fix scenario platform view tests on Android (cla: yes) [18333](https://github.com/flutter/engine/pull/18333) Roll src/third_party/skia 3d2c41b773f6..3ebadcc98eab (14 commits) (cla: yes, waiting for tree to go green) [18334](https://github.com/flutter/engine/pull/18334) Roll src/third_party/dart 2bf325900586..d6fed1f62444 (1 commits) (cla: yes, waiting for tree to go green) [18340](https://github.com/flutter/engine/pull/18340) Completely disable paving the device on Fuchsia (cla: yes) [18342](https://github.com/flutter/engine/pull/18342) Re-enable Fuchsia tests (cla: yes) [18344](https://github.com/flutter/engine/pull/18344) Roll src/third_party/skia 3ebadcc98eab..056d543c91e0 (8 commits) (cla: yes, waiting for tree to go green) [18345](https://github.com/flutter/engine/pull/18345) Revert "Re-enable Fuchsia tests (#18342)" (cla: yes) [18346](https://github.com/flutter/engine/pull/18346) Introduce `TaskRunnerAffineWeakPtrFactory` to generate `TaskRunnerAffineWeakPtr`s (cla: yes) [18347](https://github.com/flutter/engine/pull/18347) Roll src/third_party/dart d6fed1f62444..29c00e28f350 (16 commits) (cla: yes, waiting for tree to go green) [18348](https://github.com/flutter/engine/pull/18348) null-annotate lerp.dart, annotations.dart, channel_buffers.dart, hash_codes.dart (cla: yes) [18349](https://github.com/flutter/engine/pull/18349) null-annotate lib/ui/natives.dart (cla: yes) [18350](https://github.com/flutter/engine/pull/18350) Roll src/third_party/skia 056d543c91e0..71903997254f (7 commits) (cla: yes, waiting for tree to go green) [18351](https://github.com/flutter/engine/pull/18351) null-annotate compositing.dart (cla: yes) [18352](https://github.com/flutter/engine/pull/18352) null-annotate lib/ui/isolate_name_server.dart (cla: yes) [18353](https://github.com/flutter/engine/pull/18353) null-annotate lib/ui/plugins.dart (cla: yes) [18354](https://github.com/flutter/engine/pull/18354) null-annotate lib/ui/pointer.dart (cla: yes) [18356](https://github.com/flutter/engine/pull/18356) sync ui geometry.dart into web_ui geometry.dart; add null safety annotations (cla: yes) [18359](https://github.com/flutter/engine/pull/18359) Rename NULL tests to Nullptr for consistency (cla: yes) [18360](https://github.com/flutter/engine/pull/18360) Delete unused decode UTF-8, JSON functions (cla: yes) [18361](https://github.com/flutter/engine/pull/18361) Roll src/third_party/skia 71903997254f..6c3db04c8b03 (9 commits) (cla: yes, waiting for tree to go green) [18365](https://github.com/flutter/engine/pull/18365) Fix incorrect header for FlBasicMessageChannel::respond (cla: yes) [18367](https://github.com/flutter/engine/pull/18367) Add screenshots for Android view (cla: yes) [18369](https://github.com/flutter/engine/pull/18369) Adding ImageShader support for CanvasKit (cla: yes) [18370](https://github.com/flutter/engine/pull/18370) Roll src/third_party/skia 6c3db04c8b03..7156db260239 (4 commits) (cla: yes, waiting for tree to go green) [18373](https://github.com/flutter/engine/pull/18373) Roll src/third_party/dart 29c00e28f350..f99631b12c4a (29 commits) (cla: yes, waiting for tree to go green) [18374](https://github.com/flutter/engine/pull/18374) add nullability annotations to lib/ui/painting.dart (cla: yes) [18377](https://github.com/flutter/engine/pull/18377) Roll src/fuchsia/sdk/mac from gOhJW... to Vepm4... (cla: yes, waiting for tree to go green) [18378](https://github.com/flutter/engine/pull/18378) Roll src/third_party/dart f99631b12c4a..e0257265d34e (2 commits) (cla: yes, waiting for tree to go green) [18379](https://github.com/flutter/engine/pull/18379) Remove currentLocale prepend on iOS (cla: yes, platform-ios) [18380](https://github.com/flutter/engine/pull/18380) Roll src/third_party/skia 7156db260239..5b2ede3d0d44 (8 commits) (cla: yes, waiting for tree to go green) [18383](https://github.com/flutter/engine/pull/18383) Roll src/third_party/dart e0257265d34e..2676764792b2 (4 commits) (cla: yes, waiting for tree to go green) [18384](https://github.com/flutter/engine/pull/18384) Roll src/third_party/skia 5b2ede3d0d44..39ec60aa8348 (5 commits) (cla: yes, waiting for tree to go green) [18388](https://github.com/flutter/engine/pull/18388) [web] Remap cupertino fonts to -apple-system (cla: yes) [18389](https://github.com/flutter/engine/pull/18389) Roll src/third_party/skia 39ec60aa8348..79c5674a4ca1 (3 commits) (cla: yes, waiting for tree to go green) [18391](https://github.com/flutter/engine/pull/18391) Roll src/fuchsia/sdk/mac from Vepm4... to 61d8Z... (cla: yes, waiting for tree to go green) [18392](https://github.com/flutter/engine/pull/18392) Revert "Revert "Re-enable Fuchsia tests (#18342)"" (cla: yes) [18393](https://github.com/flutter/engine/pull/18393) Roll src/third_party/skia 79c5674a4ca1..5592f2485aaa (3 commits) (cla: yes, waiting for tree to go green) [18395](https://github.com/flutter/engine/pull/18395) add nullability annotations to lib/web_ui painting.dart (cla: yes) [18396](https://github.com/flutter/engine/pull/18396) Add ocmock to iOS unit tests xcode project (cla: yes, waiting for tree to go green) [18397](https://github.com/flutter/engine/pull/18397) Remove rapidjson from TextInputModel (cla: yes) [18398](https://github.com/flutter/engine/pull/18398) Manual Dart roll to 95e11bc2d30f7c1b9c49a4fc97a44c4b32fe66d8 (cla: yes, waiting for tree to go green) [18400](https://github.com/flutter/engine/pull/18400) add nullability annotations to ui/text.dart (cla: yes) [18404](https://github.com/flutter/engine/pull/18404) release previous canvas when picture is not painted (cla: yes) [18405](https://github.com/flutter/engine/pull/18405) Disable flow tests. (cla: yes) [18407](https://github.com/flutter/engine/pull/18407) Roll src/third_party/skia 5592f2485aaa..b88fe292b55b (12 commits) (cla: yes, waiting for tree to go green) [18408](https://github.com/flutter/engine/pull/18408) Echo text selection changes and marked text selection changes back to framework (cla: yes) [18409](https://github.com/flutter/engine/pull/18409) [fuchsia] Remove log dumping to prevent timeouts (cla: yes) [18411](https://github.com/flutter/engine/pull/18411) Add TextInputModel unittests (cla: yes) [18412](https://github.com/flutter/engine/pull/18412) Roll src/third_party/skia b88fe292b55b..364ed37bf134 (1 commits) (cla: yes, waiting for tree to go green) [18415](https://github.com/flutter/engine/pull/18415) Roll src/third_party/skia 364ed37bf134..f3fe5a5353c6 (5 commits) (cla: yes, waiting for tree to go green) [18416](https://github.com/flutter/engine/pull/18416) Roll src/third_party/dart 95e11bc2d30f..2fd798ed5c79 (28 commits) (cla: yes, waiting for tree to go green) [18417](https://github.com/flutter/engine/pull/18417) Roll src/fuchsia/sdk/mac from 61d8Z... to ibuhU... (cla: yes, waiting for tree to go green) [18418](https://github.com/flutter/engine/pull/18418) Roll src/third_party/dart 2fd798ed5c79..7aae1f603251 (5 commits) (cla: yes, waiting for tree to go green) [18421](https://github.com/flutter/engine/pull/18421) Update flutter skia flush calls to new flush and submit api (cla: yes) [18422](https://github.com/flutter/engine/pull/18422) Roll src/third_party/skia f3fe5a5353c6..28590d54f5d5 (2 commits) (cla: yes, waiting for tree to go green) [18423](https://github.com/flutter/engine/pull/18423) Update GLFW embedding to support AOT mode (cla: yes) [18425](https://github.com/flutter/engine/pull/18425) Roll src/third_party/skia 28590d54f5d5..71f06f60ac61 (4 commits) (cla: yes, waiting for tree to go green) [18426](https://github.com/flutter/engine/pull/18426) Roll src/third_party/dart 7aae1f603251..2d57c1f86e22 (7 commits) (cla: yes, waiting for tree to go green) [18427](https://github.com/flutter/engine/pull/18427) Revert "Remove pipeline in favor of layer tree holder (#18285)" (cla: yes) [18428](https://github.com/flutter/engine/pull/18428) Started allowing setting message handlers to nil for dead engines (cla: yes) [18429](https://github.com/flutter/engine/pull/18429) Delete unused web_ui RuntimeDelegate, Engine (cla: yes) [18430](https://github.com/flutter/engine/pull/18430) null-annotate native calls in lib/ui/window.dart (cla: yes) [18431](https://github.com/flutter/engine/pull/18431) Roll src/third_party/skia 71f06f60ac61..67c921abaac3 (2 commits) (cla: yes, waiting for tree to go green) [18432](https://github.com/flutter/engine/pull/18432) [web] Implement setPreferredOrientation (cla: yes) [18433](https://github.com/flutter/engine/pull/18433) [fuchsia] Debug symbols cipd package doesn't contain tmp dir (cla: yes) [18434](https://github.com/flutter/engine/pull/18434) Roll src/fuchsia/sdk/linux from TZN85... to Pi3tN... (cla: yes, waiting for tree to go green) [18435](https://github.com/flutter/engine/pull/18435) Roll src/third_party/skia 67c921abaac3..56cde4923f9f (3 commits) (cla: yes, waiting for tree to go green) [18436](https://github.com/flutter/engine/pull/18436) null-annotate native calls in lib/ui/semantics.dart (cla: yes) [18437](https://github.com/flutter/engine/pull/18437) [web] Reuse ImageElement(s) across frames (cla: yes) [18438](https://github.com/flutter/engine/pull/18438) Roll src/third_party/dart 2d57c1f86e22..529f614eb381 (13 commits) (cla: yes, waiting for tree to go green) [18439](https://github.com/flutter/engine/pull/18439) Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green) [18441](https://github.com/flutter/engine/pull/18441) [web] remove target tests from the blacklist (cla: yes) [18442](https://github.com/flutter/engine/pull/18442) Roll src/third_party/skia 56cde4923f9f..75b6c009170d (3 commits) (cla: yes, waiting for tree to go green) [18443](https://github.com/flutter/engine/pull/18443) remove unused IOSContext::ResourceMakeCurrent and IOS:Context::ClearCurrent (cla: yes) [18444](https://github.com/flutter/engine/pull/18444) [Android] setDimens on ViewNodes for autofill (cla: yes) [18446](https://github.com/flutter/engine/pull/18446) Roll src/third_party/dart 529f614eb381..34bf6742d4e9 (10 commits) (cla: yes, waiting for tree to go green) [18447](https://github.com/flutter/engine/pull/18447) Roll src/third_party/skia 75b6c009170d..fe4b0b3ab3b9 (1 commits) (cla: yes, waiting for tree to go green) [18448](https://github.com/flutter/engine/pull/18448) Roll src/third_party/dart 34bf6742d4e9..ecd82166c312 (1 commits) (cla: yes, waiting for tree to go green) [18449](https://github.com/flutter/engine/pull/18449) Roll src/fuchsia/sdk/linux from Pi3tN... to WGSLs... (cla: yes, waiting for tree to go green) [18450](https://github.com/flutter/engine/pull/18450) Roll src/third_party/dart ecd82166c312..b560016446e7 (1 commits) (cla: yes, waiting for tree to go green) [18451](https://github.com/flutter/engine/pull/18451) auto-pop pushed layers (cla: yes) [18453](https://github.com/flutter/engine/pull/18453) Add FlPluginRegistry and FlPluginRegistrar (cla: yes) [18454](https://github.com/flutter/engine/pull/18454) Roll src/fuchsia/sdk/mac from ibuhU... to av9O5... (cla: yes, waiting for tree to go green) [18455](https://github.com/flutter/engine/pull/18455) Roll src/third_party/skia fe4b0b3ab3b9..92130329ce2f (1 commits) (cla: yes, waiting for tree to go green) [18457](https://github.com/flutter/engine/pull/18457) Roll src/third_party/skia 92130329ce2f..fb0b35fed558 (1 commits) (cla: yes, waiting for tree to go green) [18458](https://github.com/flutter/engine/pull/18458) Roll src/third_party/dart b560016446e7..313bf285dfe6 (1 commits) (cla: yes, waiting for tree to go green) [18460](https://github.com/flutter/engine/pull/18460) Roll src/fuchsia/sdk/mac from av9O5... to 6F-Xq... (cla: yes, waiting for tree to go green) [18461](https://github.com/flutter/engine/pull/18461) Roll src/third_party/dart 313bf285dfe6..7a94d1d7f1f2 (1 commits) (cla: yes, waiting for tree to go green) [18463](https://github.com/flutter/engine/pull/18463) Roll src/third_party/dart 7a94d1d7f1f2..86edfbef87b5 (1 commits) (cla: yes, waiting for tree to go green) [18464](https://github.com/flutter/engine/pull/18464) Roll src/third_party/skia fb0b35fed558..4a9a2d1c2865 (1 commits) (cla: yes, waiting for tree to go green) [18466](https://github.com/flutter/engine/pull/18466) Roll src/third_party/dart 86edfbef87b5..08bad91aa3a5 (1 commits) (cla: yes, waiting for tree to go green) [18467](https://github.com/flutter/engine/pull/18467) Roll src/third_party/skia 4a9a2d1c2865..263b89711802 (1 commits) (cla: yes, waiting for tree to go green) [18468](https://github.com/flutter/engine/pull/18468) Roll src/third_party/skia 263b89711802..ef3556df44b2 (4 commits) (cla: yes, waiting for tree to go green) [18469](https://github.com/flutter/engine/pull/18469) Roll src/fuchsia/sdk/mac from 6F-Xq... to rspyW... (cla: yes, waiting for tree to go green) [18471](https://github.com/flutter/engine/pull/18471) Roll src/third_party/dart 08bad91aa3a5..674af7e93f56 (2 commits) (cla: yes, waiting for tree to go green) [18474](https://github.com/flutter/engine/pull/18474) Roll src/third_party/dart 674af7e93f56..40f7a11d8924 (7 commits) (cla: yes, waiting for tree to go green) [18475](https://github.com/flutter/engine/pull/18475) [fuchsia] Use R8G8B8A8 format instead of B8G8R8A8. (cla: yes) [18476](https://github.com/flutter/engine/pull/18476) Roll src/third_party/skia ef3556df44b2..8219e91468d3 (2 commits) (cla: yes, waiting for tree to go green) [18478](https://github.com/flutter/engine/pull/18478) Roll src/third_party/skia 8219e91468d3..e7825ff7e34f (3 commits) (cla: yes, waiting for tree to go green) [18479](https://github.com/flutter/engine/pull/18479) adding more tests for text form fields (cla: yes) [18480](https://github.com/flutter/engine/pull/18480) Fix missing backtick in FlutterViewController docs (cla: yes) [18481](https://github.com/flutter/engine/pull/18481) Enable LTO for Fuchsia artifact builds (cla: yes) [18483](https://github.com/flutter/engine/pull/18483) Roll src/third_party/dart 40f7a11d8924..4cdb0d1b453b (5 commits) (cla: yes, waiting for tree to go green) [18484](https://github.com/flutter/engine/pull/18484) compensate for DPR in canvas blur (cla: yes) [18485](https://github.com/flutter/engine/pull/18485) [fuchsia] Update the error message to reference the right asset (cla: yes, waiting for tree to go green) [18486](https://github.com/flutter/engine/pull/18486) Roll src/fuchsia/sdk/mac from rspyW... to -VXmm... (cla: yes, waiting for tree to go green) [18488](https://github.com/flutter/engine/pull/18488) [web] Running integration tests on Safari on Local (cla: yes) [18490](https://github.com/flutter/engine/pull/18490) Handle Throwable in StandardMethodCodec (cla: yes) [18491](https://github.com/flutter/engine/pull/18491) Update comments for grammar and content to required style (cla: yes) [18492](https://github.com/flutter/engine/pull/18492) fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green) [18493](https://github.com/flutter/engine/pull/18493) Roll src/third_party/skia e7825ff7e34f..98bc22c68981 (9 commits) (cla: yes, waiting for tree to go green) [18494](https://github.com/flutter/engine/pull/18494) Roll the Fuchsia SDK and update the path to the async API header (cla: yes) [18495](https://github.com/flutter/engine/pull/18495) Roll src/third_party/dart 4cdb0d1b453b..5f9e3e07915b (14 commits) (cla: yes, waiting for tree to go green) [18496](https://github.com/flutter/engine/pull/18496) Roll src/third_party/skia 98bc22c68981..7a4ea2baf5df (1 commits) (cla: yes, waiting for tree to go green) [18498](https://github.com/flutter/engine/pull/18498) Roll src/third_party/dart 5f9e3e07915b..15ee305516d7 (4 commits) (cla: yes, waiting for tree to go green) [18499](https://github.com/flutter/engine/pull/18499) Roll src/third_party/skia 7a4ea2baf5df..d077e6a3d013 (4 commits) (cla: yes, waiting for tree to go green) [18501](https://github.com/flutter/engine/pull/18501) Roll src/third_party/dart 15ee305516d7..6708394f03a0 (5 commits) (cla: yes, waiting for tree to go green) [18503](https://github.com/flutter/engine/pull/18503) Roll src/third_party/skia d077e6a3d013..ca76920e7875 (1 commits) (cla: yes, waiting for tree to go green) [18504](https://github.com/flutter/engine/pull/18504) Roll Skia from ca76920e7875 to 86fedbb9dd05 (7 revisions) (cla: yes, waiting for tree to go green) [18505](https://github.com/flutter/engine/pull/18505) Roll Dart SDK from 6708394f03a0 to 7706afbcf5c6 (5 revisions) (cla: yes, waiting for tree to go green) [18509](https://github.com/flutter/engine/pull/18509) [fuchsia] Fix Mac SDK roll failure (cla: yes) [18510](https://github.com/flutter/engine/pull/18510) Roll Skia from 86fedbb9dd05 to ac007669ee71 (19 revisions) (cla: yes, waiting for tree to go green) [18511](https://github.com/flutter/engine/pull/18511) Roll Fuchsia Linux SDK from o6YQ_... to 73IKT... (cla: yes, waiting for tree to go green) [18512](https://github.com/flutter/engine/pull/18512) Roll Fuchsia Mac SDK from Bdllv... to fCHnB... (cla: yes, waiting for tree to go green) [18513](https://github.com/flutter/engine/pull/18513) Roll Skia from ac007669ee71 to 5e6d789ce47c (4 revisions) (cla: yes, waiting for tree to go green) [18514](https://github.com/flutter/engine/pull/18514) Make FlBasicMessageChannelResponseHandle a GObject to detect unresponded and double responded messages. (cla: yes) [18515](https://github.com/flutter/engine/pull/18515) [fuchsia] Remove SceneDisplayLag event on Fuchsia (cla: yes, waiting for tree to go green) [18516](https://github.com/flutter/engine/pull/18516) [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance) [18517](https://github.com/flutter/engine/pull/18517) Roll Dart SDK from 7706afbcf5c6 to 3a764b7ae4d9 (33 revisions) (cla: yes, waiting for tree to go green) [18518](https://github.com/flutter/engine/pull/18518) Roll Skia from 5e6d789ce47c to 3bcb7bb01b82 (1 revision) (cla: yes, waiting for tree to go green) [18519](https://github.com/flutter/engine/pull/18519) Send platformResolvedLocale from iOS embedder (cla: yes, waiting for tree to go green) [18521](https://github.com/flutter/engine/pull/18521) Add tests for StandardMethodCodec (cla: yes, waiting for tree to go green) [18522](https://github.com/flutter/engine/pull/18522) Roll Skia from 3bcb7bb01b82 to 34eee0d9fc85 (1 revision) (cla: yes, waiting for tree to go green) [18523](https://github.com/flutter/engine/pull/18523) Roll Dart SDK from 3a764b7ae4d9 to 9807b83d5945 (3 revisions) (cla: yes, waiting for tree to go green) [18524](https://github.com/flutter/engine/pull/18524) Roll Skia from 34eee0d9fc85 to 9d52ac1573f1 (3 revisions) (cla: yes, waiting for tree to go green) [18525](https://github.com/flutter/engine/pull/18525) Move robolectric tests to sdk 28 (cla: yes) [18526](https://github.com/flutter/engine/pull/18526) Roll Dart SDK from 9807b83d5945 to d2ee73b2513c (5 revisions) (cla: yes, waiting for tree to go green) [18527](https://github.com/flutter/engine/pull/18527) Roll Fuchsia Linux SDK from 73IKT... to ThMeW... (cla: yes, waiting for tree to go green) [18528](https://github.com/flutter/engine/pull/18528) Roll Fuchsia Mac SDK from fCHnB... to 3o9aQ... (cla: yes, waiting for tree to go green) [18529](https://github.com/flutter/engine/pull/18529) Roll Skia from 9d52ac1573f1 to 682fca92996b (1 revision) (cla: yes, waiting for tree to go green) [18530](https://github.com/flutter/engine/pull/18530) Roll Skia from 682fca92996b to 3e84312c0f4d (3 revisions) (cla: yes, waiting for tree to go green) [18533](https://github.com/flutter/engine/pull/18533) Roll Dart SDK from d2ee73b2513c to 7aa8656d1dd8 (12 revisions) (cla: yes, waiting for tree to go green) [18534](https://github.com/flutter/engine/pull/18534) Let run_tests.py just stream output (cla: yes) [18535](https://github.com/flutter/engine/pull/18535) [web] Fix arc rendering when it starts a new sub path. (cla: yes) [18536](https://github.com/flutter/engine/pull/18536) Roll Skia from 3e84312c0f4d to 656ee7bc0fd2 (8 revisions) (cla: yes, waiting for tree to go green) [18537](https://github.com/flutter/engine/pull/18537) Roll Skia from 656ee7bc0fd2 to d2dc8ddcdf5e (2 revisions) (cla: yes, waiting for tree to go green) [18538](https://github.com/flutter/engine/pull/18538) Roll Dart SDK from 7aa8656d1dd8 to bf7e9d13d730 (21 revisions) (cla: yes, waiting for tree to go green) [18539](https://github.com/flutter/engine/pull/18539) Roll Skia from d2dc8ddcdf5e to f83baf230c69 (2 revisions) (cla: yes, waiting for tree to go green) [18540](https://github.com/flutter/engine/pull/18540) Add fl_value_to_string (cla: yes) [18542](https://github.com/flutter/engine/pull/18542) [web] Fix nineslice assertion (cla: yes) [18543](https://github.com/flutter/engine/pull/18543) Roll Fuchsia Mac SDK from 3o9aQ... to RNByJ... (cla: yes, waiting for tree to go green) [18544](https://github.com/flutter/engine/pull/18544) ios accessibility: started ignoring route changes when presenting modal view controllers (cla: yes) [18545](https://github.com/flutter/engine/pull/18545) Roll Skia from f83baf230c69 to 67ff541ac116 (1 revision) (cla: yes, waiting for tree to go green) [18546](https://github.com/flutter/engine/pull/18546) Add GDestroyNotify callbacks on handlers (cla: yes) [18547](https://github.com/flutter/engine/pull/18547) Roll Skia from 67ff541ac116 to 4c0578632217 (1 revision) (cla: yes, waiting for tree to go green) [18549](https://github.com/flutter/engine/pull/18549) Roll Fuchsia Linux SDK from ThMeW... to ciqRH... (cla: yes, waiting for tree to go green) [18550](https://github.com/flutter/engine/pull/18550) Roll Skia from 4c0578632217 to 22636205ce92 (4 revisions) (cla: yes, waiting for tree to go green) [18551](https://github.com/flutter/engine/pull/18551) Roll Dart SDK from bf7e9d13d730 to d551980ac9fc (6 revisions) (cla: yes, waiting for tree to go green) [18552](https://github.com/flutter/engine/pull/18552) null-annotate SemanticsUpdateBuilder.updateNode (cla: yes) [18553](https://github.com/flutter/engine/pull/18553) null-annotate semantics.dart (cla: yes) [18555](https://github.com/flutter/engine/pull/18555) null-annotate lib/ui/hooks.dart (cla: yes) [18556](https://github.com/flutter/engine/pull/18556) Roll Dart SDK from d551980ac9fc to ecce58c1e354 (2 revisions) (cla: yes, waiting for tree to go green) [18557](https://github.com/flutter/engine/pull/18557) Roll Skia from 22636205ce92 to b37105ea6cca (2 revisions) (cla: yes, waiting for tree to go green) [18558](https://github.com/flutter/engine/pull/18558) Roll Fuchsia Mac SDK from RNByJ... to _zNmv... (cla: yes, waiting for tree to go green) [18560](https://github.com/flutter/engine/pull/18560) Roll Dart SDK from ecce58c1e354 to 396b5fb7a97d (2 revisions) (cla: yes, waiting for tree to go green) [18563](https://github.com/flutter/engine/pull/18563) Made the Rasterizer avoid GPU calls when backgrounded (cla: yes) [18564](https://github.com/flutter/engine/pull/18564) Roll Skia from b37105ea6cca to 1e63279156d6 (9 revisions) (cla: yes, waiting for tree to go green) [18565](https://github.com/flutter/engine/pull/18565) Roll Fuchsia Linux SDK from ciqRH... to Kvwlr... (cla: yes, waiting for tree to go green) [18566](https://github.com/flutter/engine/pull/18566) Roll Skia from 1e63279156d6 to 3d52abc84667 (5 revisions) (cla: yes, waiting for tree to go green) [18567](https://github.com/flutter/engine/pull/18567) Roll Dart SDK from 396b5fb7a97d to 4ee57c08e0a6 (6 revisions) (cla: yes, waiting for tree to go green) [18568](https://github.com/flutter/engine/pull/18568) Roll Skia from 3d52abc84667 to 67e21a19259b (1 revision) (cla: yes, waiting for tree to go green) [18569](https://github.com/flutter/engine/pull/18569) System mouse cursor: Android (cla: yes) [18570](https://github.com/flutter/engine/pull/18570) Update CanvasKit to 0.15.0 (cla: yes) [18571](https://github.com/flutter/engine/pull/18571) Show error details in method channel response error messages (cla: yes) [18572](https://github.com/flutter/engine/pull/18572) Make SKSL caching test work on Fuchsia on arm64 (cla: yes) [18573](https://github.com/flutter/engine/pull/18573) Roll Skia from 67e21a19259b to 317dce5c81c0 (3 revisions) (cla: yes, waiting for tree to go green) [18574](https://github.com/flutter/engine/pull/18574) Roll Dart SDK from 4ee57c08e0a6 to 65113fd73dec (3 revisions) (cla: yes, waiting for tree to go green) [18575](https://github.com/flutter/engine/pull/18575) Roll Skia from 317dce5c81c0 to da90c3765908 (1 revision) (cla: yes, waiting for tree to go green) [18576](https://github.com/flutter/engine/pull/18576) Roll Fuchsia Mac SDK from _zNmv... to 99Z4_... (cla: yes, waiting for tree to go green) [18577](https://github.com/flutter/engine/pull/18577) Roll Skia from da90c3765908 to 80abb89c3632 (4 revisions) (cla: yes, waiting for tree to go green) [18579](https://github.com/flutter/engine/pull/18579) Roll Skia from 80abb89c3632 to ec31488ace66 (1 revision) (cla: yes, waiting for tree to go green) [18580](https://github.com/flutter/engine/pull/18580) Roll Fuchsia Linux SDK from Kvwlr... to DzG49... (cla: yes, waiting for tree to go green) [18581](https://github.com/flutter/engine/pull/18581) Roll Skia from ec31488ace66 to afd8a6c6ae87 (1 revision) (cla: yes, waiting for tree to go green) [18582](https://github.com/flutter/engine/pull/18582) Roll Fuchsia Mac SDK from 99Z4_... to Oz016... (cla: yes, waiting for tree to go green) [18588](https://github.com/flutter/engine/pull/18588) Roll Skia from afd8a6c6ae87 to b6d158aaf3dd (3 revisions) (cla: yes, waiting for tree to go green) [18589](https://github.com/flutter/engine/pull/18589) Support AOT mode for Windows (cla: yes) [18590](https://github.com/flutter/engine/pull/18590) Roll Fuchsia Mac SDK from Oz016... to TSEOq... (cla: yes, waiting for tree to go green) [18591](https://github.com/flutter/engine/pull/18591) Roll Fuchsia Linux SDK from DzG49... to pLp67... (cla: yes, waiting for tree to go green) [18592](https://github.com/flutter/engine/pull/18592) Roll Skia from b6d158aaf3dd to e4b4ca1050b9 (1 revision) (cla: yes, waiting for tree to go green) [18593](https://github.com/flutter/engine/pull/18593) Roll Dart SDK from 65113fd73dec to 9e3b0289197d (2 revisions) (cla: yes, waiting for tree to go green) [18594](https://github.com/flutter/engine/pull/18594) Roll Fuchsia Mac SDK from TSEOq... to hr-HZ... (cla: yes, waiting for tree to go green) [18595](https://github.com/flutter/engine/pull/18595) Fixes FlutterEngine internal retain cycle (cla: yes) [18596](https://github.com/flutter/engine/pull/18596) Fix wrong method name - copy/paste error from FlBinaryMessenger (cla: yes) [18597](https://github.com/flutter/engine/pull/18597) Add tests for FlBinaryMessenger, FlBasicMessageChannel, FlMethodChannel (cla: yes) [18600](https://github.com/flutter/engine/pull/18600) Revert "Update CanvasKit to 0.15.0 (#18570)" (cla: yes) [18601](https://github.com/flutter/engine/pull/18601) Rework GLContextSwitch, get rid of RendererContextManager (cla: yes) [18602](https://github.com/flutter/engine/pull/18602) Roll Skia from e4b4ca1050b9 to e90473dc7da6 (27 revisions) (cla: yes, waiting for tree to go green) [18604](https://github.com/flutter/engine/pull/18604) [web] Fix child removal after reuse by other BitmapCanvas (cla: yes) [18607](https://github.com/flutter/engine/pull/18607) created a linter that runs clang-tidy (cla: yes) [18610](https://github.com/flutter/engine/pull/18610) Update 1.17 engine hash to Dart 2.8.3 (cla: yes) [18612](https://github.com/flutter/engine/pull/18612) Roll Dart SDK from 9e3b0289197d to e007545c42fd (43 revisions) (cla: yes, waiting for tree to go green) [18614](https://github.com/flutter/engine/pull/18614) Revert "fuchsia: Implement CreateViewWithViewProvider" (cla: yes) [18615](https://github.com/flutter/engine/pull/18615) Reland "fuchsia: Implement CreateViewWithViewProvider (#18280)" (cla: yes) [18616](https://github.com/flutter/engine/pull/18616) Roll Skia from e90473dc7da6 to fd9745eee98f (9 revisions) (cla: yes, waiting for tree to go green) [18617](https://github.com/flutter/engine/pull/18617) Abbreviate names of intermediate generated targets in testing.gni. (cla: yes, waiting for tree to go green) [18618](https://github.com/flutter/engine/pull/18618) Roll CanvasKit to 0.16.1 (cla: yes) [18619](https://github.com/flutter/engine/pull/18619) Roll Fuchsia Linux SDK from pLp67... to V1XR3... (cla: yes, waiting for tree to go green) [18620](https://github.com/flutter/engine/pull/18620) Roll Fuchsia Mac SDK from hr-HZ... to 5yPfm... (cla: yes, waiting for tree to go green) [18622](https://github.com/flutter/engine/pull/18622) Roll Dart SDK from e007545c42fd to 253022eb1b27 (5 revisions) (cla: yes, waiting for tree to go green) [18623](https://github.com/flutter/engine/pull/18623) Roll Skia from fd9745eee98f to 3f479f3da7f8 (1 revision) (cla: yes, waiting for tree to go green) [18624](https://github.com/flutter/engine/pull/18624) Fix copy/paste in the Linux embedding (cla: yes) [18625](https://github.com/flutter/engine/pull/18625) Add tests & --unopt to build_fuchsia_artifacts (cla: yes, platform-fuchsia) [18626](https://github.com/flutter/engine/pull/18626) Roll Dart SDK from 253022eb1b27 to 6489a0c68df8 (4 revisions) (cla: yes, waiting for tree to go green) [18630](https://github.com/flutter/engine/pull/18630) Roll Fuchsia Mac SDK from 5yPfm... to Id94G... (cla: yes, waiting for tree to go green) [18631](https://github.com/flutter/engine/pull/18631) Revert "Minimal test harness for iOS (#13029)" (cla: yes) [18633](https://github.com/flutter/engine/pull/18633) Don't show warnings when removing handlers. (cla: yes) [18634](https://github.com/flutter/engine/pull/18634) Add missing full stops on the end of comments. (cla: yes) [18635](https://github.com/flutter/engine/pull/18635) Roll Skia from 3f479f3da7f8 to 22534f2098e7 (24 revisions) (cla: yes, waiting for tree to go green) [18638](https://github.com/flutter/engine/pull/18638) Add tests for FlBinaryMessenger, FlBasicMessageChannel, FlMethodChannel (cla: yes) [18641](https://github.com/flutter/engine/pull/18641) Fix FlValue functions not marked for export (cla: yes) [18645](https://github.com/flutter/engine/pull/18645) Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18646](https://github.com/flutter/engine/pull/18646) Roll Fuchsia Mac SDK from Id94G... to xRJHj... (cla: yes, waiting for tree to go green) [18647](https://github.com/flutter/engine/pull/18647) Roll Fuchsia Linux SDK from V1XR3... to 8sYPn... (cla: yes, waiting for tree to go green) [18648](https://github.com/flutter/engine/pull/18648) Minimize child DOM node moves in many-to-many update (cla: yes) [18649](https://github.com/flutter/engine/pull/18649) check the branch flags (cla: yes) [18650](https://github.com/flutter/engine/pull/18650) [web] runs ios unit tests (cla: yes) [18652](https://github.com/flutter/engine/pull/18652) Roll buildroot to 6669621484b649b9355fb2dd37950daf3d2ac65b (cla: yes, waiting for tree to go green) [18653](https://github.com/flutter/engine/pull/18653) [fuchsia] Avoid unnecessary layout transition. (cla: yes) [18654](https://github.com/flutter/engine/pull/18654) Revert "check the branch flags" (cla: yes) [18656](https://github.com/flutter/engine/pull/18656) fuchsia: Disable flaky TimeSensistiveTests (cla: yes) [18657](https://github.com/flutter/engine/pull/18657) Disconnect the channel message handler when releasing the AccessibilityBridge (cla: yes, waiting for tree to go green) [18658](https://github.com/flutter/engine/pull/18658) Roll Fuchsia Linux SDK from 8sYPn... to wmNGH... (cla: yes, waiting for tree to go green) [18660](https://github.com/flutter/engine/pull/18660) Make the testing process on different platforms more consistent (cla: yes) [18663](https://github.com/flutter/engine/pull/18663) Roll Skia from 22534f2098e7 to 074414fed53e (37 revisions) (cla: yes, waiting for tree to go green) [18664](https://github.com/flutter/engine/pull/18664) Roll Skia from 074414fed53e to 921cdbb387d2 (2 revisions) (cla: yes, waiting for tree to go green) [18665](https://github.com/flutter/engine/pull/18665) Roll Fuchsia Mac SDK from xRJHj... to WuG3u... (cla: yes, waiting for tree to go green) [18667](https://github.com/flutter/engine/pull/18667) implement SkPath.computeMetrics (cla: yes) [18668](https://github.com/flutter/engine/pull/18668) Roll Skia from 921cdbb387d2 to 0d0758e42a7d (15 revisions) (cla: yes, waiting for tree to go green) [18670](https://github.com/flutter/engine/pull/18670) Refactor AndroidContextGL, AndroidSurface and AndroidSurfaceGL (cla: yes, waiting for tree to go green) [18671](https://github.com/flutter/engine/pull/18671) Roll Fuchsia Linux SDK from wmNGH... to in0Aq... (cla: yes, waiting for tree to go green) [18675](https://github.com/flutter/engine/pull/18675) Roll Skia from 0d0758e42a7d to 7a34aff3e6a2 (12 revisions) (cla: yes, waiting for tree to go green) [18676](https://github.com/flutter/engine/pull/18676) Fix BM_ShellShutdown regression (cla: yes, waiting for tree to go green) [18677](https://github.com/flutter/engine/pull/18677) Roll Skia from 7a34aff3e6a2 to 25a8404bd150 (1 revision) (cla: yes, waiting for tree to go green) [18700](https://github.com/flutter/engine/pull/18700) Upgrade the meta package version for compatibility with petitparser-3.0.4 (cla: yes) [18703](https://github.com/flutter/engine/pull/18703) do not lock petitparser (cla: yes) [18704](https://github.com/flutter/engine/pull/18704) Roll Skia from 25a8404bd150 to 8c5786622b4e (17 revisions) (cla: yes, waiting for tree to go green) [18706](https://github.com/flutter/engine/pull/18706) Make images contribute to Picture allocation size, more aggressively release references when dispose is called (cla: yes, waiting for tree to go green) [18707](https://github.com/flutter/engine/pull/18707) Roll Skia from 8c5786622b4e to 502eab4fc913 (2 revisions) (cla: yes, waiting for tree to go green) [18709](https://github.com/flutter/engine/pull/18709) Pass SurfaceFrame to SubmitFrame (cla: yes) [18713](https://github.com/flutter/engine/pull/18713) Make GetAllocationSize const (cla: yes, waiting for tree to go green) [18714](https://github.com/flutter/engine/pull/18714) [fuchsia] NNBD: Kernel libraries for Flutter, Dart runners (cla: yes) [18717](https://github.com/flutter/engine/pull/18717) Roll Fuchsia Mac SDK from WuG3u... to YmMjL... (cla: yes, waiting for tree to go green) [18719](https://github.com/flutter/engine/pull/18719) Add braces around multi-line branches to match code style (cla: yes) [18721](https://github.com/flutter/engine/pull/18721) Add an engine PR template (cla: yes) [18722](https://github.com/flutter/engine/pull/18722) add driver for chrome 83 (cla: yes) [18724](https://github.com/flutter/engine/pull/18724) Add missing standard codec alignment bytes (cla: yes) [18728](https://github.com/flutter/engine/pull/18728) Roll Fuchsia Linux SDK from in0Aq... to VXyRo... (cla: yes, waiting for tree to go green) [18735](https://github.com/flutter/engine/pull/18735) Don't export embedder API in desktop embeddings (cla: yes) [18737](https://github.com/flutter/engine/pull/18737) Roll Skia from 502eab4fc913 to a5ced794731b (22 revisions) (cla: yes, waiting for tree to go green) [18738](https://github.com/flutter/engine/pull/18738) Roll Dart SDK from 6489a0c68df8 to 3d53df52afb5 (141 revisions) (cla: yes, waiting for tree to go green) [18740](https://github.com/flutter/engine/pull/18740) Roll Skia from a5ced794731b to 1adcac52d64b (6 revisions) (cla: yes, waiting for tree to go green) [18741](https://github.com/flutter/engine/pull/18741) Mark conditional SkParagraph include nogncheck. (cla: yes, waiting for tree to go green) [18743](https://github.com/flutter/engine/pull/18743) [web] Remove connection close on blur for desktop browsers (cla: yes) [18746](https://github.com/flutter/engine/pull/18746) sadly missed an asterisk (cla: yes) [18747](https://github.com/flutter/engine/pull/18747) Roll Dart SDK from 3d53df52afb5 to 54adfeb93f0b (14 revisions) (cla: yes, waiting for tree to go green) [18752](https://github.com/flutter/engine/pull/18752) started polling the gpu usage (cla: yes, platform-ios) [18755](https://github.com/flutter/engine/pull/18755) Pin the analyzer version as a temporary workaround for https://github.com/dart-lang/sdk/issues/42163 (cla: yes) [18756](https://github.com/flutter/engine/pull/18756) Implement GetAllocationSize for Vertices (cla: yes) [18783](https://github.com/flutter/engine/pull/18783) Update 1.17 engine hash to Dart 2.8.4 (cla: yes) [18785](https://github.com/flutter/engine/pull/18785) Revert "null-annotate SemanticsUpdateBuilder.updateNode" (cla: yes) [18786](https://github.com/flutter/engine/pull/18786) onDisplayPlatformView JNI (cla: yes) [18789](https://github.com/flutter/engine/pull/18789) null annotate window.dart (cla: yes) [18790](https://github.com/flutter/engine/pull/18790) Removing Flutter for Web firefox tests from cirrus. (cla: yes) [18791](https://github.com/flutter/engine/pull/18791) null-annotate semantics.dart (cla: yes) [18792](https://github.com/flutter/engine/pull/18792) [web] Adding profile parameter to firefox (cla: yes) [18795](https://github.com/flutter/engine/pull/18795) [web] Line break algorithm using unicode properties (cla: yes, platform-web) [18796](https://github.com/flutter/engine/pull/18796) Roll Fuchsia Linux SDK from VXyRo... to 9-PNW... (cla: yes, waiting for tree to go green) [18798](https://github.com/flutter/engine/pull/18798) Live region announcements for iOS (cla: yes, waiting for tree to go green) [18801](https://github.com/flutter/engine/pull/18801) Update 1.19 engine hash to Dart 02915ec5ce8a1cb71dac244a73efcd9a5e75416a (cla: yes) [18802](https://github.com/flutter/engine/pull/18802) Mark symbols that should be public (cla: yes) [18806](https://github.com/flutter/engine/pull/18806) Roll Dart SDK from 54adfeb93f0b to e5b2cb0b02ae (53 revisions) (cla: yes, waiting for tree to go green) [18809](https://github.com/flutter/engine/pull/18809) Support AOT mode in GTK shell (cla: yes) [18810](https://github.com/flutter/engine/pull/18810) Don't call engine when not initialized. (cla: yes) [18811](https://github.com/flutter/engine/pull/18811) [web] Fix conic to quad conversion assertion. (cla: yes) [18814](https://github.com/flutter/engine/pull/18814) Allow texture sampling quality control (cla: yes, platform-android, platform-ios) [18815](https://github.com/flutter/engine/pull/18815) fix AttachCurrentThread override thread name issue (cla: yes, waiting for tree to go green) [18816](https://github.com/flutter/engine/pull/18816) Fixes UI freezes when multiple Flutter VC shared one engine (cla: yes, platform-ios) [18817](https://github.com/flutter/engine/pull/18817) Roll Dart SDK from e5b2cb0b02ae to acb552d056be (1 revision) (cla: yes, waiting for tree to go green) [18818](https://github.com/flutter/engine/pull/18818) Roll Fuchsia Mac SDK from YmMjL... to aEbAT... (cla: yes, waiting for tree to go green) [18821](https://github.com/flutter/engine/pull/18821) Roll Dart SDK from acb552d056be to ac45f23134f2 (4 revisions) (cla: yes, waiting for tree to go green) [18823](https://github.com/flutter/engine/pull/18823) Roll Skia from 1adcac52d64b to 024d42fdd6bb (66 revisions) (cla: yes, waiting for tree to go green) [18824](https://github.com/flutter/engine/pull/18824) Roll Dart SDK from ac45f23134f2 to f92a7d2669b1 (4 revisions) (cla: yes, waiting for tree to go green) [18826](https://github.com/flutter/engine/pull/18826) Revert "onDisplayPlatformView JNI" (cla: yes, platform-android) [18827](https://github.com/flutter/engine/pull/18827) Record path memory usage in SkPictures (cla: yes, perf: memory) [18828](https://github.com/flutter/engine/pull/18828) onDisplayPlatformView JNI (cla: yes, platform-android, waiting for tree to go green) [18829](https://github.com/flutter/engine/pull/18829) Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18830](https://github.com/flutter/engine/pull/18830) [nnbd] un-fork sky engine (cla: yes) [18831](https://github.com/flutter/engine/pull/18831) Reset AndroidExternalViewEmbedder state when starting a new frame (cla: yes, platform-android, waiting for tree to go green) [18833](https://github.com/flutter/engine/pull/18833) [fuchsia] Limit unnecessary layout transition to aarch64. (cla: yes) [18835](https://github.com/flutter/engine/pull/18835) Roll Skia from 024d42fdd6bb to cdc39bda9237 (19 revisions) (cla: yes, waiting for tree to go green) [18836](https://github.com/flutter/engine/pull/18836) Roll Dart SDK from f92a7d2669b1 to 62903873df30 (10 revisions) (cla: yes, waiting for tree to go green) [18837](https://github.com/flutter/engine/pull/18837) Fix braces style (cla: yes) [18838](https://github.com/flutter/engine/pull/18838) Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18839](https://github.com/flutter/engine/pull/18839) Roll Skia from cdc39bda9237 to 59f31b143ccd (1 revision) (cla: yes, waiting for tree to go green) [18840](https://github.com/flutter/engine/pull/18840) Fix include paths to help building flutter runner for Fuchsia (cla: yes) [18841](https://github.com/flutter/engine/pull/18841) Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios) [18843](https://github.com/flutter/engine/pull/18843) Roll Dart SDK from 62903873df30 to 249cb9c974e1 (6 revisions) (cla: yes, waiting for tree to go green) [18844](https://github.com/flutter/engine/pull/18844) Roll Fuchsia Mac SDK from aEbAT... to ASjDr... (cla: yes, waiting for tree to go green) [18845](https://github.com/flutter/engine/pull/18845) Roll Fuchsia Linux SDK from 9-PNW... to hIXuO... (cla: yes, waiting for tree to go green) [18847](https://github.com/flutter/engine/pull/18847) Roll Skia from 59f31b143ccd to 288ecf60bde8 (14 revisions) (cla: yes, waiting for tree to go green) [18849](https://github.com/flutter/engine/pull/18849) Add RAII wrapper for EGLSurface (cla: yes, platform-android) [18850](https://github.com/flutter/engine/pull/18850) Make rasterizer screenshot work with gl_context_switch (cla: yes) [18851](https://github.com/flutter/engine/pull/18851) Roll Skia from 288ecf60bde8 to 9f7485b4bbeb (7 revisions) (cla: yes, waiting for tree to go green) [18852](https://github.com/flutter/engine/pull/18852) null-annotate remaining engine code (cla: yes) [18853](https://github.com/flutter/engine/pull/18853) Roll Skia from 9f7485b4bbeb to aa10dfeec96a (8 revisions) (cla: yes, waiting for tree to go green) [18854](https://github.com/flutter/engine/pull/18854) Roll Dart SDK from 249cb9c974e1 to 403955cf347f (9 revisions) (cla: yes, waiting for tree to go green) [18855](https://github.com/flutter/engine/pull/18855) Disable event tracing templates in release mode (cla: yes, waiting for tree to go green) [18856](https://github.com/flutter/engine/pull/18856) [web] running ios unit tests from felt … (cla: yes) [18858](https://github.com/flutter/engine/pull/18858) [fuchsia] Add ability to configure separate data and asset dirs (cla: yes) [18859](https://github.com/flutter/engine/pull/18859) add onDisplayOverlaySurface JNI (cla: yes, platform-android) [18860](https://github.com/flutter/engine/pull/18860) Roll Fuchsia Mac SDK from ASjDr... to b4Gyr... (cla: yes, waiting for tree to go green) [18861](https://github.com/flutter/engine/pull/18861) Roll Fuchsia Linux SDK from hIXuO... to DELkx... (cla: yes, waiting for tree to go green) [18862](https://github.com/flutter/engine/pull/18862) Roll Skia from aa10dfeec96a to 0ef90dd5e9c6 (7 revisions) (cla: yes, waiting for tree to go green) [18863](https://github.com/flutter/engine/pull/18863) Roll Skia from 0ef90dd5e9c6 to 47b06754624e (1 revision) (cla: yes, waiting for tree to go green) [18864](https://github.com/flutter/engine/pull/18864) Roll Dart SDK from 403955cf347f to 578fa6bee9eb (8 revisions) (cla: yes, waiting for tree to go green) [18865](https://github.com/flutter/engine/pull/18865) Add a deprecation note to FlutterFragmentActivity (cla: yes, platform-android) [18866](https://github.com/flutter/engine/pull/18866) onBeginFrame JNI (cla: yes, platform-android, waiting for tree to go green) [18867](https://github.com/flutter/engine/pull/18867) onEndFrame JNI (cla: yes, platform-android, waiting for tree to go green) [18868](https://github.com/flutter/engine/pull/18868) Roll Fuchsia Linux SDK from DELkx... to j9T0m... (cla: yes, waiting for tree to go green) [18869](https://github.com/flutter/engine/pull/18869) Roll Fuchsia Mac SDK from b4Gyr... to JVQxV... (cla: yes, waiting for tree to go green) [18871](https://github.com/flutter/engine/pull/18871) Roll Dart SDK from 578fa6bee9eb to 4b9c2356e962 (1 revision) (cla: yes, waiting for tree to go green) [18872](https://github.com/flutter/engine/pull/18872) Roll Dart SDK from 4b9c2356e962 to 48b4528a44ac (1 revision) (cla: yes, waiting for tree to go green) [18873](https://github.com/flutter/engine/pull/18873) Roll Skia from 47b06754624e to aed47a38a08a (1 revision) (cla: yes, waiting for tree to go green) [18874](https://github.com/flutter/engine/pull/18874) Roll Skia from aed47a38a08a to 81aa5ddb9404 (1 revision) (cla: yes, waiting for tree to go green) [18875](https://github.com/flutter/engine/pull/18875) Fix intent builder visibility (cla: yes, platform-android, waiting for tree to go green) [18876](https://github.com/flutter/engine/pull/18876) Roll Fuchsia Mac SDK from JVQxV... to Xqev9... (cla: yes, waiting for tree to go green) [18877](https://github.com/flutter/engine/pull/18877) Roll Fuchsia Linux SDK from j9T0m... to U7i_W... (cla: yes, waiting for tree to go green) [18878](https://github.com/flutter/engine/pull/18878) Refactor Win32FlutterWindow in preparation for UWP windowing implementation (cla: yes, platform-windows) [18879](https://github.com/flutter/engine/pull/18879) Roll Dart SDK from 48b4528a44ac to 87c5e3612b70 (1 revision) (cla: yes, waiting for tree to go green) [18880](https://github.com/flutter/engine/pull/18880) nullability clean-ups (cla: yes) [18881](https://github.com/flutter/engine/pull/18881) Roll Fuchsia Mac SDK from Xqev9... to uCq3V... (cla: yes, waiting for tree to go green) [18885](https://github.com/flutter/engine/pull/18885) Add scroll event support (cla: yes) [18886](https://github.com/flutter/engine/pull/18886) Update FlTextInputPlugin method handler style. (cla: yes) [18888](https://github.com/flutter/engine/pull/18888) Add FlMouseCursorPlugin (cla: yes) [18889](https://github.com/flutter/engine/pull/18889) Fix name of Flutter class in plugin docstrings (cla: yes) [18891](https://github.com/flutter/engine/pull/18891) Support window scaling (cla: yes) [18892](https://github.com/flutter/engine/pull/18892) Roll Dart SDK from 87c5e3612b70 to 66e2b22d14af (1 revision) (cla: yes, waiting for tree to go green) [18893](https://github.com/flutter/engine/pull/18893) Roll Skia from 81aa5ddb9404 to f9ffdd6942f9 (4 revisions) (cla: yes, waiting for tree to go green) [18894](https://github.com/flutter/engine/pull/18894) Roll Fuchsia Linux SDK from U7i_W... to NbGZv... (cla: yes, waiting for tree to go green) [18895](https://github.com/flutter/engine/pull/18895) Roll Dart SDK from 66e2b22d14af to df435c923544 (1 revision) (cla: yes, waiting for tree to go green) [18896](https://github.com/flutter/engine/pull/18896) Roll Skia from f9ffdd6942f9 to 6e659e960945 (1 revision) (cla: yes, waiting for tree to go green) [18897](https://github.com/flutter/engine/pull/18897) Roll Fuchsia Mac SDK from uCq3V... to f9ILa... (cla: yes, waiting for tree to go green) [18898](https://github.com/flutter/engine/pull/18898) Remove simulator build mode restrictions (cla: yes, waiting for tree to go green) [18901](https://github.com/flutter/engine/pull/18901) Remove pipeline in favor of layer tree holder (cla: yes) [18903](https://github.com/flutter/engine/pull/18903) Put JNI functions under an interface (cla: yes, platform-android) [18910](https://github.com/flutter/engine/pull/18910) Add user agent for Chromium based Edge Browser to browser detection (cla: yes) [18913](https://github.com/flutter/engine/pull/18913) Use constant for error code (cla: yes) [18916](https://github.com/flutter/engine/pull/18916) Add support for horizontalDoubleArrow and verticalDoubleArrow cursors (cla: yes, platform-android) [18917](https://github.com/flutter/engine/pull/18917) Log EGL errors (cla: yes) [18918](https://github.com/flutter/engine/pull/18918) Implement an EGL resource context for the Linux shell. (cla: yes) [18919](https://github.com/flutter/engine/pull/18919) Remove the input type and action from TextInputModel. (cla: yes) [18924](https://github.com/flutter/engine/pull/18924) Roll Fuchsia Mac SDK from f9ILa... to FYAm7... (cla: yes, waiting for tree to go green) [18925](https://github.com/flutter/engine/pull/18925) Roll Dart SDK from df435c923544 to 020359dcc8a8 (36 revisions) (cla: yes, waiting for tree to go green) [18926](https://github.com/flutter/engine/pull/18926) Roll Dart SDK from 020359dcc8a8 to 5c1376615ec6 (3 revisions) (cla: yes, waiting for tree to go green) [18927](https://github.com/flutter/engine/pull/18927) Roll Skia from 6e659e960945 to 7910a8f76121 (32 revisions) (cla: yes, waiting for tree to go green) [18928](https://github.com/flutter/engine/pull/18928) Roll Skia from 7910a8f76121 to 9d79ac6b81ba (3 revisions) (cla: yes, waiting for tree to go green) [18929](https://github.com/flutter/engine/pull/18929) Roll Fuchsia Linux SDK from NbGZv... to Lwsff... (cla: yes, waiting for tree to go green) [18930](https://github.com/flutter/engine/pull/18930) Update 1.19.0-4.1.pre engine hash to Dart 2.9.0-14.1.beta (cla: yes) [18931](https://github.com/flutter/engine/pull/18931) Roll Skia from 9d79ac6b81ba to 45f36b5b5547 (6 revisions) (cla: yes, waiting for tree to go green) [18932](https://github.com/flutter/engine/pull/18932) Roll Dart SDK from 5c1376615ec6 to 0f15f8722e29 (6 revisions) (cla: yes, waiting for tree to go green) [18933](https://github.com/flutter/engine/pull/18933) apply null safety syntax to mobile dart:ui (cla: yes) [18934](https://github.com/flutter/engine/pull/18934) SkMatrix::MakeFoo is deprecated, use SkMatrix::Foo instead (cla: yes) [18935](https://github.com/flutter/engine/pull/18935) Roll Skia from 45f36b5b5547 to 64688229fd4b (8 revisions) (cla: yes, waiting for tree to go green) [18936](https://github.com/flutter/engine/pull/18936) Fix CanvasKit text colors by not passing a Malloc'ed array. (cla: yes) [18937](https://github.com/flutter/engine/pull/18937) Roll Fuchsia Mac SDK from FYAm7... to P46X2... (cla: yes, waiting for tree to go green) [18938](https://github.com/flutter/engine/pull/18938) Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green) [18939](https://github.com/flutter/engine/pull/18939) Firefox gives an error if the directory is not empty (cla: yes) [18940](https://github.com/flutter/engine/pull/18940) Make Linux shell plugin constructor descriptions consistent (cla: yes) [18942](https://github.com/flutter/engine/pull/18942) Roll Skia from 64688229fd4b to 1ce11e676e6d (10 revisions) (cla: yes, waiting for tree to go green) [18943](https://github.com/flutter/engine/pull/18943) Roll Dart SDK from 0f15f8722e29 to dd47387430a0 (12 revisions) (cla: yes, waiting for tree to go green) [18944](https://github.com/flutter/engine/pull/18944) [web] don't run some tests on safari (cla: yes) [18945](https://github.com/flutter/engine/pull/18945) Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green) [18946](https://github.com/flutter/engine/pull/18946) Show warning if method response errors occur and error not handled. (cla: yes) [18947](https://github.com/flutter/engine/pull/18947) Roll Skia from 1ce11e676e6d to 437c78593cb5 (5 revisions) (cla: yes, waiting for tree to go green) [18950](https://github.com/flutter/engine/pull/18950) fix iOS builds (cla: yes, platform-ios) [18951](https://github.com/flutter/engine/pull/18951) Fix right-to-left selection not working. (cla: yes) [18954](https://github.com/flutter/engine/pull/18954) Roll Skia from 437c78593cb5 to 5d18c24f7f3a (9 revisions) (cla: yes, waiting for tree to go green) [18956](https://github.com/flutter/engine/pull/18956) Roll Fuchsia Linux SDK from Lwsff... to 8AiUM... (cla: yes, waiting for tree to go green) [18957](https://github.com/flutter/engine/pull/18957) Roll Dart SDK from dd47387430a0 to f40875bf1b68 (8 revisions) (cla: yes, waiting for tree to go green) [18958](https://github.com/flutter/engine/pull/18958) Roll Fuchsia Mac SDK from P46X2... to oWhyp... (cla: yes, waiting for tree to go green) [18959](https://github.com/flutter/engine/pull/18959) Roll Skia from 5d18c24f7f3a to 4442bfa50b21 (2 revisions) (cla: yes, waiting for tree to go green) [18961](https://github.com/flutter/engine/pull/18961) Roll Skia from 4442bfa50b21 to f7005498d416 (6 revisions) (cla: yes, waiting for tree to go green) [18964](https://github.com/flutter/engine/pull/18964) Roll Dart SDK from f40875bf1b68 to 2b917f5b6a0e (10 revisions) (cla: yes, waiting for tree to go green) [18965](https://github.com/flutter/engine/pull/18965) Roll Skia from f7005498d416 to 9c401e7e1ace (7 revisions) (cla: yes, waiting for tree to go green) [18966](https://github.com/flutter/engine/pull/18966) updated FlutterViewControllerTest tests names (cla: yes, platform-ios) [18969](https://github.com/flutter/engine/pull/18969) [web] Provide a hook to disable location strategy (cla: yes, platform-web) [18971](https://github.com/flutter/engine/pull/18971) Revert "Add RAII wrapper for EGLSurface" (cla: yes, platform-android) [18974](https://github.com/flutter/engine/pull/18974) Roll Dart SDK from 2b917f5b6a0e to 0fab083e1c2b (15 revisions) (cla: yes, waiting for tree to go green) [18975](https://github.com/flutter/engine/pull/18975) renaming variables on integration tests manager (cla: yes, waiting for tree to go green) [18976](https://github.com/flutter/engine/pull/18976) Roll Fuchsia Linux SDK from 8AiUM... to ThzHh... (cla: yes, waiting for tree to go green) [18977](https://github.com/flutter/engine/pull/18977) Reland: Add RAII wrapper for EGLSurface (cla: yes, platform-android) [18978](https://github.com/flutter/engine/pull/18978) Include the memory header as unique_ptr is used in ASCII Trie. (cla: yes, waiting for tree to go green) [18979](https://github.com/flutter/engine/pull/18979) Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events (cla: yes, platform-android) [18981](https://github.com/flutter/engine/pull/18981) Make sure the native callback is registered before running the test. (cla: yes) [18982](https://github.com/flutter/engine/pull/18982) Roll Fuchsia Mac SDK from oWhyp... to gAD3P... (cla: yes, waiting for tree to go green) [18983](https://github.com/flutter/engine/pull/18983) Roll Skia from 9c401e7e1ace to f69e40841eb9 (11 revisions) (cla: yes, waiting for tree to go green) [18985](https://github.com/flutter/engine/pull/18985) Call destructor and fix check (cla: yes, platform-android) [18987](https://github.com/flutter/engine/pull/18987) Roll Dart SDK from 0fab083e1c2b to e62b89c56d01 (10 revisions) (cla: yes, waiting for tree to go green) [18988](https://github.com/flutter/engine/pull/18988) Fix shift-tab not working by adding more GTK->GLFW key mappings. (cla: yes) [18989](https://github.com/flutter/engine/pull/18989) Fix inverted check in creating resource surface (cla: yes) [18990](https://github.com/flutter/engine/pull/18990) Don't process key events when the text input is not requested (cla: yes) [18991](https://github.com/flutter/engine/pull/18991) Always send key events, even if they're used for text input. (cla: yes) [18992](https://github.com/flutter/engine/pull/18992) Roll Skia from f69e40841eb9 to 553496b66f12 (2 revisions) (cla: yes, waiting for tree to go green) [18993](https://github.com/flutter/engine/pull/18993) Roll Skia from 553496b66f12 to 0ad37b87549b (2 revisions) (cla: yes, waiting for tree to go green) [18994](https://github.com/flutter/engine/pull/18994) Roll Dart SDK from e62b89c56d01 to b0d2b97d2cd7 (4 revisions) (cla: yes, waiting for tree to go green) [18995](https://github.com/flutter/engine/pull/18995) Roll Skia from 0ad37b87549b to de175abede4d (1 revision) (cla: yes, waiting for tree to go green) [18997](https://github.com/flutter/engine/pull/18997) Roll Dart SDK from b0d2b97d2cd7 to f043f9e5f6ea (6 revisions) (cla: yes, waiting for tree to go green) [18998](https://github.com/flutter/engine/pull/18998) Roll Fuchsia Linux SDK from ThzHh... to Gm8Wf... (cla: yes, waiting for tree to go green) [19000](https://github.com/flutter/engine/pull/19000) Roll buildroot for Windows warning update (cla: yes) [19001](https://github.com/flutter/engine/pull/19001) Roll Fuchsia Mac SDK from gAD3P... to Wj0yo... (cla: yes, waiting for tree to go green) [19002](https://github.com/flutter/engine/pull/19002) [dart] Account for kernel compiler api change (cla: yes) [19003](https://github.com/flutter/engine/pull/19003) Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia) [19005](https://github.com/flutter/engine/pull/19005) Roll Skia from de175abede4d to 32d5cfa1f35e (15 revisions) (cla: yes, waiting for tree to go green) [19006](https://github.com/flutter/engine/pull/19006) Roll Skia from 32d5cfa1f35e to 21bbfc6c2dfe (5 revisions) (cla: yes, waiting for tree to go green) [19008](https://github.com/flutter/engine/pull/19008) No GPURasterizer::Draw trace event when layer tree holder is empty (cla: yes, waiting for tree to go green) [19009](https://github.com/flutter/engine/pull/19009) Roll Skia from 21bbfc6c2dfe to 30212b7941d6 (6 revisions) (cla: yes, waiting for tree to go green) [19010](https://github.com/flutter/engine/pull/19010) Roll Dart SDK from f043f9e5f6ea to f0ea02bc51f8 (22 revisions) (cla: yes, waiting for tree to go green) [19011](https://github.com/flutter/engine/pull/19011) Roll CanvasKit to 0.16.2. (cla: yes) [19012](https://github.com/flutter/engine/pull/19012) Remove print added for local testing (cla: yes) [19013](https://github.com/flutter/engine/pull/19013) Roll Dart SDK from f0ea02bc51f8 to 0b64f5488965 (9 revisions) (cla: yes, waiting for tree to go green) [19015](https://github.com/flutter/engine/pull/19015) Roll Fuchsia Mac SDK from Wj0yo... to gR0Zc... (cla: yes, waiting for tree to go green) [19017](https://github.com/flutter/engine/pull/19017) Roll Dart SDK from 0b64f5488965 to 50836c171e91 (4 revisions) (cla: yes, waiting for tree to go green) [19020](https://github.com/flutter/engine/pull/19020) Roll Skia from 30212b7941d6 to 3d6bf04366f6 (17 revisions) (cla: yes, waiting for tree to go green) [19021](https://github.com/flutter/engine/pull/19021) Roll Skia from 3d6bf04366f6 to 637838d20abd (2 revisions) (cla: yes, waiting for tree to go green) [19022](https://github.com/flutter/engine/pull/19022) Roll Fuchsia Mac SDK from gR0Zc... to H-uAk... (cla: yes, waiting for tree to go green) [19023](https://github.com/flutter/engine/pull/19023) Revert "Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events" (cla: yes, platform-android) [19025](https://github.com/flutter/engine/pull/19025) Roll Skia from 637838d20abd to ac16760df463 (1 revision) (cla: yes, waiting for tree to go green) [19026](https://github.com/flutter/engine/pull/19026) Call Shell::NotifyLowMemory when backgrounded/memory pressure occurs on Android (cla: yes, platform-android, waiting for tree to go green) [19027](https://github.com/flutter/engine/pull/19027) take web_ui to null safety (cla: yes) [19028](https://github.com/flutter/engine/pull/19028) Roll Skia from ac16760df463 to 45fe2e8a9914 (4 revisions) (cla: yes, waiting for tree to go green) [19029](https://github.com/flutter/engine/pull/19029) Fix hit testing logic in fuchsia a11y (cla: yes) [19030](https://github.com/flutter/engine/pull/19030) Autofill Menu appears on top left of the page (cla: yes) [19031](https://github.com/flutter/engine/pull/19031) Revert to last-known-good-rev of Dart SDK (cla: yes) [19032](https://github.com/flutter/engine/pull/19032) Roll Fuchsia Mac SDK from H-uAk... to Q196k... (cla: yes, waiting for tree to go green) [19033](https://github.com/flutter/engine/pull/19033) Implement external view embedder on Android (cla: yes, platform-android) [19034](https://github.com/flutter/engine/pull/19034) Roll Fuchsia Mac SDK from Q196k... to 9XDKA... (cla: yes, waiting for tree to go green) [19035](https://github.com/flutter/engine/pull/19035) Adding ImageFilter support for CanvasKit (cla: yes) [19037](https://github.com/flutter/engine/pull/19037) Roll Fuchsia Mac SDK from 9XDKA... to pVORF... (cla: yes, waiting for tree to go green) [19038](https://github.com/flutter/engine/pull/19038) Add support for headless mode (cla: yes) [19039](https://github.com/flutter/engine/pull/19039) Roll Fuchsia Mac SDK from pVORF... to XHlPK... (cla: yes, waiting for tree to go green) [19040](https://github.com/flutter/engine/pull/19040) add createOverlaySurface JNI (cla: yes, platform-android, waiting for tree to go green) [19041](https://github.com/flutter/engine/pull/19041) Roll Skia from 45fe2e8a9914 to 08ac84a66a5e (4 revisions) (cla: yes, waiting for tree to go green) [19042](https://github.com/flutter/engine/pull/19042) Roll Fuchsia Mac SDK from XHlPK... to crMVM... (cla: yes, waiting for tree to go green) [19045](https://github.com/flutter/engine/pull/19045) Roll Fuchsia Linux SDK from Gm8Wf... to evdT_... (cla: yes, waiting for tree to go green) [19046](https://github.com/flutter/engine/pull/19046) Roll Skia from 08ac84a66a5e to 602b4024858c (7 revisions) (cla: yes, waiting for tree to go green) [19047](https://github.com/flutter/engine/pull/19047) Rename trace-whitelist to trace-allowlist (cla: yes, waiting for tree to go green) [19048](https://github.com/flutter/engine/pull/19048) Roll Skia from 602b4024858c to e3a39f7053bd (4 revisions) (cla: yes, waiting for tree to go green) [19052](https://github.com/flutter/engine/pull/19052) Allow access to raw zircon handle (cla: yes) [19053](https://github.com/flutter/engine/pull/19053) Roll Skia from e3a39f7053bd to 47111d18f48d (9 revisions) (cla: yes, waiting for tree to go green) [19054](https://github.com/flutter/engine/pull/19054) Fix issue Flutter Web cubic bounds misaligning. (cla: yes) [19055](https://github.com/flutter/engine/pull/19055) Roll Fuchsia Mac SDK from crMVM... to OiCnN... (cla: yes, waiting for tree to go green) [19057](https://github.com/flutter/engine/pull/19057) Roll Skia from 47111d18f48d to f4ec452b7ab3 (4 revisions) (cla: yes, waiting for tree to go green) [19058](https://github.com/flutter/engine/pull/19058) Roll Fuchsia Linux SDK from evdT_... to YEXby... (cla: yes, waiting for tree to go green) [19060](https://github.com/flutter/engine/pull/19060) Roll Skia from f4ec452b7ab3 to 762cb4ea46dd (1 revision) (cla: yes, waiting for tree to go green) [19061](https://github.com/flutter/engine/pull/19061) Roll Fuchsia Mac SDK from OiCnN... to 6I5dv... (cla: yes, waiting for tree to go green) [19062](https://github.com/flutter/engine/pull/19062) Instantiate image codec doc fix (cla: yes, platform-ios) [19063](https://github.com/flutter/engine/pull/19063) Roll Skia from 762cb4ea46dd to f1eb43e8800b (8 revisions) (cla: yes, waiting for tree to go green) [19065](https://github.com/flutter/engine/pull/19065) Manual roll of Dart f043f9e5f6...6d4e7d6830 (cla: yes) [19066](https://github.com/flutter/engine/pull/19066) Revert "Remove pipeline in favor of layer tree holder (#18901)" (cla: yes) [19067](https://github.com/flutter/engine/pull/19067) Make upscaling opt in for image decoding (cla: yes, perf: memory) [19068](https://github.com/flutter/engine/pull/19068) [iOS] handle text plugin negative range (cla: yes, platform-ios, waiting for tree to go green) [19071](https://github.com/flutter/engine/pull/19071) Roll Fuchsia Linux SDK from YEXby... to aVCEp... (cla: yes, waiting for tree to go green) [19072](https://github.com/flutter/engine/pull/19072) Roll Skia from f1eb43e8800b to 5ca9d1a3414a (8 revisions) (cla: yes, waiting for tree to go green) [19073](https://github.com/flutter/engine/pull/19073) Fix windows SkParagraph compilation (cla: yes) [19074](https://github.com/flutter/engine/pull/19074) Manual roll of Dart 6d4e7d6830...021a49e88c (cla: yes) [19075](https://github.com/flutter/engine/pull/19075) Revert add createOverlaySurface JNI #19040 (cla: yes, platform-android) [19076](https://github.com/flutter/engine/pull/19076) createOverlaySurface JNI method (cla: yes, platform-android, waiting for tree to go green) [19077](https://github.com/flutter/engine/pull/19077) Roll Skia from 5ca9d1a3414a to f08a82b52dbf (3 revisions) (cla: yes, waiting for tree to go green) [19078](https://github.com/flutter/engine/pull/19078) Roll Skia from f08a82b52dbf to de980231f62c (1 revision) (cla: yes, waiting for tree to go green) [19079](https://github.com/flutter/engine/pull/19079) Manual roll of Dart 021a49e88c...4b9aa2bd7e (cla: yes) [19080](https://github.com/flutter/engine/pull/19080) Roll Dart SDK from 4b9aa2bd7ecb to 7e5fe50b244c (4 revisions) (cla: yes, waiting for tree to go green) [19081](https://github.com/flutter/engine/pull/19081) Roll Skia from de980231f62c to 3244745c3d4b (1 revision) (cla: yes, waiting for tree to go green) [19082](https://github.com/flutter/engine/pull/19082) Roll Fuchsia Mac SDK from 6I5dv... to Gpg6y... (cla: yes, waiting for tree to go green) [19083](https://github.com/flutter/engine/pull/19083) Roll Skia from 3244745c3d4b to 4c47d0ddea16 (3 revisions) (cla: yes, waiting for tree to go green) [19084](https://github.com/flutter/engine/pull/19084) Roll Dart SDK from 7e5fe50b244c to 1046888b1bf9 (5 revisions) (cla: yes, waiting for tree to go green) [19086](https://github.com/flutter/engine/pull/19086) Roll Dart SDK from 1046888b1bf9 to c45c07592a95 (4 revisions) (cla: yes, waiting for tree to go green) [19088](https://github.com/flutter/engine/pull/19088) Roll Skia from 4c47d0ddea16 to 2518f546e3f2 (2 revisions) (cla: yes, waiting for tree to go green) [19090](https://github.com/flutter/engine/pull/19090) Roll Fuchsia Linux SDK from aVCEp... to eyQ-Z... (cla: yes, waiting for tree to go green) [19092](https://github.com/flutter/engine/pull/19092) Roll Skia from 2518f546e3f2 to 1f14ca04b9b8 (5 revisions) (cla: yes, waiting for tree to go green) [19093](https://github.com/flutter/engine/pull/19093) Roll Dart SDK from c45c07592a95 to f36151e2d2a2 (9 revisions) (cla: yes, waiting for tree to go green) [19095](https://github.com/flutter/engine/pull/19095) Log Windows errors to stderr (cla: yes) [19096](https://github.com/flutter/engine/pull/19096) Revert "Remove pipeline in favor of layer tree holder (#18901)" (#19066) (cla: yes) [19097](https://github.com/flutter/engine/pull/19097) Roll Skia from 1f14ca04b9b8 to 8346834d7cfc (3 revisions) (cla: yes, waiting for tree to go green) [19098](https://github.com/flutter/engine/pull/19098) Update buildroot (cla: yes, waiting for tree to go green) [19100](https://github.com/flutter/engine/pull/19100) Remove obsolete comment from web_ui pubspec (cla: yes, waiting for tree to go green) [19101](https://github.com/flutter/engine/pull/19101) Revert "Roll Skia from de175abede4d to 32d5cfa1f35e (15 revisions) (#… (cla: yes) [19103](https://github.com/flutter/engine/pull/19103) Roll Fuchsia Mac SDK from Gpg6y... to s-b1H... (cla: yes, waiting for tree to go green) [19104](https://github.com/flutter/engine/pull/19104) Roll Dart SDK from f36151e2d2a2 to 0c2c331d64f3 (13 revisions) (cla: yes, waiting for tree to go green) [19106](https://github.com/flutter/engine/pull/19106) Roll buildroot to 2415cd5095c186fe5054552bbb26aaa2b8877ac8 (cla: yes, waiting for tree to go green) [19107](https://github.com/flutter/engine/pull/19107) Roll Skia from de175abede4d to 72f403c343dc (127 revisions) (cla: yes, waiting for tree to go green) [19108](https://github.com/flutter/engine/pull/19108) [shell] Adds a shell test for timezone fetches (cla: yes) [19109](https://github.com/flutter/engine/pull/19109) [fuchsia] Adds --targets arg for build_fuchsia_artifacts.py (cla: yes) [19110](https://github.com/flutter/engine/pull/19110) Roll Skia from 72f403c343dc to a3a9da74308f (1 revision) (cla: yes, waiting for tree to go green) [19111](https://github.com/flutter/engine/pull/19111) Word substitutions (cla: yes, platform-android, waiting for tree to go green) [19112](https://github.com/flutter/engine/pull/19112) Add a flag to enable dart:mirrors (cla: yes) [19113](https://github.com/flutter/engine/pull/19113) Roll Dart SDK from 0c2c331d64f3 to 764e72800f40 (15 revisions) (cla: yes, waiting for tree to go green) [19114](https://github.com/flutter/engine/pull/19114) Teach web_sdk/sdk_rewritter.dart how to write a stamp file. (cla: yes, waiting for tree to go green) [19116](https://github.com/flutter/engine/pull/19116) Roll Skia from a3a9da74308f to 67237c14a6db (1 revision) (cla: yes, waiting for tree to go green) [19117](https://github.com/flutter/engine/pull/19117) Roll Dart SDK from 764e72800f40 to 7d7c1298e2ca (1 revision) (cla: yes, waiting for tree to go green) [19120](https://github.com/flutter/engine/pull/19120) Roll Fuchsia Mac SDK from s-b1H... to eqQfp... (cla: yes, waiting for tree to go green) [19122](https://github.com/flutter/engine/pull/19122) Roll Dart SDK from 7d7c1298e2ca to 54481776c96d (4 revisions) (cla: yes, waiting for tree to go green) [19123](https://github.com/flutter/engine/pull/19123) Roll Skia from 67237c14a6db to 81454dfaa92a (2 revisions) (cla: yes, waiting for tree to go green) [19124](https://github.com/flutter/engine/pull/19124) Roll Skia from 81454dfaa92a to a85e4bf00907 (4 revisions) (cla: yes, waiting for tree to go green) [19125](https://github.com/flutter/engine/pull/19125) Roll Fuchsia Linux SDK from eyQ-Z... to 4Tot8... (cla: yes, waiting for tree to go green) [19126](https://github.com/flutter/engine/pull/19126) Roll Skia from a85e4bf00907 to 99b047087d51 (3 revisions) (cla: yes, waiting for tree to go green) [19128](https://github.com/flutter/engine/pull/19128) Roll Skia from 99b047087d51 to b54946b86d33 (7 revisions) (cla: yes, waiting for tree to go green) [19129](https://github.com/flutter/engine/pull/19129) [buildroot] Roll to pick up fix for misleading .lib output for Windows (cla: yes) [19130](https://github.com/flutter/engine/pull/19130) Roll Dart SDK from 54481776c96d to a26ad7fb7c9f (6 revisions) (cla: yes, waiting for tree to go green) [19131](https://github.com/flutter/engine/pull/19131) Roll Skia from b54946b86d33 to c950e05bafcd (5 revisions) (cla: yes, waiting for tree to go green) [19132](https://github.com/flutter/engine/pull/19132) Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia) [19133](https://github.com/flutter/engine/pull/19133) Roll Skia from c950e05bafcd to 92887b547497 (1 revision) (cla: yes, waiting for tree to go green) [19136](https://github.com/flutter/engine/pull/19136) Revert method channel platform resolved locale (cla: yes, platform-android) [19137](https://github.com/flutter/engine/pull/19137) Roll Dart SDK from a26ad7fb7c9f to 62cc07dbca3b (14 revisions) (cla: yes, waiting for tree to go green) [19139](https://github.com/flutter/engine/pull/19139) Roll Fuchsia Mac SDK from eqQfp... to ZyhoC... (cla: yes, waiting for tree to go green) [19140](https://github.com/flutter/engine/pull/19140) Roll Skia from 92887b547497 to d610c751569a (9 revisions) (cla: yes, waiting for tree to go green) [19141](https://github.com/flutter/engine/pull/19141) Run IOS unit tests on LUCI (cla: yes) [19143](https://github.com/flutter/engine/pull/19143) Creates a new RenderMode for FlutterView (cla: yes, platform-android) [19156](https://github.com/flutter/engine/pull/19156) Roll Fuchsia Linux SDK from 4Tot8... to 7tx5F... (cla: yes, waiting for tree to go green) [19157](https://github.com/flutter/engine/pull/19157) Roll Fuchsia Mac SDK from ZyhoC... to 68PYO... (cla: yes, waiting for tree to go green) [19161](https://github.com/flutter/engine/pull/19161) [iOS] text input methods to only call updateEditState once (cla: yes, platform-ios) [19164](https://github.com/flutter/engine/pull/19164) Enable firefox integration tests (cla: yes) [19165](https://github.com/flutter/engine/pull/19165) Roll Dart SDK from 62cc07dbca3b to 7e72c9ae7ef1 (20 revisions) (cla: yes, waiting for tree to go green) [19167](https://github.com/flutter/engine/pull/19167) [nnbd] build mobile/desktop platform dill in agnostic mode (cla: yes) [19168](https://github.com/flutter/engine/pull/19168) Added experimental-emit-debug-metadata flag to flutter frontend server (cla: yes) [19169](https://github.com/flutter/engine/pull/19169) Roll Skia from d610c751569a to 579e63af0048 (28 revisions) (cla: yes, waiting for tree to go green) [19170](https://github.com/flutter/engine/pull/19170) Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view (cla: yes) [19171](https://github.com/flutter/engine/pull/19171) Roll Wuffs to 0.3.0-alpha.4 (cla: yes) [19172](https://github.com/flutter/engine/pull/19172) migrate web engine implementation to null-safe Dart (cla: yes) [19173](https://github.com/flutter/engine/pull/19173) Roll Skia from 579e63af0048 to 5a967f593cd7 (5 revisions) (cla: yes, waiting for tree to go green) [19174](https://github.com/flutter/engine/pull/19174) Roll Skia from 5a967f593cd7 to 29cb9f9478d4 (1 revision) (cla: yes, waiting for tree to go green) [19175](https://github.com/flutter/engine/pull/19175) Roll Dart SDK from 7e72c9ae7ef1 to 9fcac032b669 (12 revisions) (cla: yes, waiting for tree to go green) [19176](https://github.com/flutter/engine/pull/19176) Roll Skia from 29cb9f9478d4 to 33e044fb16f6 (1 revision) (cla: yes, waiting for tree to go green) [19177](https://github.com/flutter/engine/pull/19177) Roll Skia from 33e044fb16f6 to 9eb89bac85e1 (2 revisions) (cla: yes, waiting for tree to go green) [19180](https://github.com/flutter/engine/pull/19180) [web] Fix fonts.clear exception in IE11 (cla: yes) [19182](https://github.com/flutter/engine/pull/19182) Roll Fuchsia Linux SDK from 7tx5F... to g6RIO... (cla: yes, waiting for tree to go green) [19184](https://github.com/flutter/engine/pull/19184) Roll Fuchsia Mac SDK from 68PYO... to hlLdJ... (cla: yes, waiting for tree to go green) [19187](https://github.com/flutter/engine/pull/19187) Roll Skia from 9eb89bac85e1 to dc3b8f94f587 (2 revisions) (cla: yes, waiting for tree to go green) [19189](https://github.com/flutter/engine/pull/19189) Roll Fuchsia Mac SDK from hlLdJ... to hY212... (cla: yes, waiting for tree to go green) [19190](https://github.com/flutter/engine/pull/19190) Roll Fuchsia Linux SDK from g6RIO... to subm1... (cla: yes, waiting for tree to go green) [19193](https://github.com/flutter/engine/pull/19193) Roll Skia from dc3b8f94f587 to 50daeddf396f (1 revision) (cla: yes, waiting for tree to go green) [19194](https://github.com/flutter/engine/pull/19194) Roll Fuchsia Mac SDK from hY212... to thz2_... (cla: yes, waiting for tree to go green) [19195](https://github.com/flutter/engine/pull/19195) Roll Fuchsia Linux SDK from subm1... to gaCdq... (cla: yes, waiting for tree to go green) [19196](https://github.com/flutter/engine/pull/19196) Replace GLFW key codes with native Flutter GTK support (cla: yes) [19204](https://github.com/flutter/engine/pull/19204) Revert "Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view" (cla: yes, platform-ios) [19207](https://github.com/flutter/engine/pull/19207) Roll Dart SDK from 9fcac032b669 to cc5df58bd229 (22 revisions) (cla: yes, waiting for tree to go green) [19208](https://github.com/flutter/engine/pull/19208) Roll Skia from 50daeddf396f to 956ec8a8bcdd (5 revisions) (cla: yes, waiting for tree to go green) [19209](https://github.com/flutter/engine/pull/19209) Roll Fuchsia Linux SDK from gaCdq... to oldar... (cla: yes, waiting for tree to go green) [19212](https://github.com/flutter/engine/pull/19212) Reland "Add `GetBoundingRectAfterMutations` to EmbeddedViewParams to calculate the final bounding rect for platform view #19170" (cla: yes, platform-android, platform-ios) [19215](https://github.com/flutter/engine/pull/19215) Roll Skia from 956ec8a8bcdd to abe2375dfb06 (5 revisions) (cla: yes, waiting for tree to go green) [19216](https://github.com/flutter/engine/pull/19216) Roll Dart SDK from cc5df58bd229 to d872aea6a645 (8 revisions) (cla: yes, waiting for tree to go green) [19217](https://github.com/flutter/engine/pull/19217) Roll Fuchsia Mac SDK from thz2_... to LRcV-... (cla: yes, waiting for tree to go green) [19218](https://github.com/flutter/engine/pull/19218) Roll Skia from abe2375dfb06 to 3cf3d92b56fd (5 revisions) (cla: yes, waiting for tree to go green) [19219](https://github.com/flutter/engine/pull/19219) Use FixtureTest to remove duplicate code (cla: yes, code health) [19221](https://github.com/flutter/engine/pull/19221) JNI glue for calling PlatformViewsController.createOverlaySurface (cla: yes, platform-android, waiting for tree to go green) [19222](https://github.com/flutter/engine/pull/19222) Roll Skia from 3cf3d92b56fd to 6dd62cbdfa1c (4 revisions) (cla: yes, waiting for tree to go green) [19223](https://github.com/flutter/engine/pull/19223) Fix the return type of CreateContext (cla: yes, platform-android, waiting for tree to go green) [19225](https://github.com/flutter/engine/pull/19225) Roll Skia from 6dd62cbdfa1c to b444943db27d (1 revision) (cla: yes, waiting for tree to go green) [19226](https://github.com/flutter/engine/pull/19226) Implement PlatformViewsController.createOverlaySurface (cla: yes, platform-android) [19227](https://github.com/flutter/engine/pull/19227) Roll Dart SDK from d872aea6a645 to 2d22e4ca26ef (14 revisions) (cla: yes, waiting for tree to go green) [19228](https://github.com/flutter/engine/pull/19228) Revert "Implement PlatformViewsController.createOverlaySurface" (cla: yes, platform-android) [19229](https://github.com/flutter/engine/pull/19229) Roll Fuchsia Linux SDK from oldar... to RGOLO... (cla: yes, waiting for tree to go green) [19230](https://github.com/flutter/engine/pull/19230) Roll Skia from b444943db27d to fc2534692b97 (1 revision) (cla: yes, waiting for tree to go green) [19231](https://github.com/flutter/engine/pull/19231) Roll Dart SDK from 2d22e4ca26ef to d2628a71067d (3 revisions) (cla: yes, waiting for tree to go green) [19232](https://github.com/flutter/engine/pull/19232) Use public accessor and move keep annotation (cla: yes, platform-android) [19233](https://github.com/flutter/engine/pull/19233) Roll Skia from fc2534692b97 to c2f46c16ab67 (2 revisions) (cla: yes, waiting for tree to go green) [19234](https://github.com/flutter/engine/pull/19234) Roll Fuchsia Mac SDK from LRcV-... to MvXLH... (cla: yes, waiting for tree to go green) [19235](https://github.com/flutter/engine/pull/19235) Roll Dart SDK from d2628a71067d to 912ae8230fb7 (6 revisions) (cla: yes, waiting for tree to go green) [19236](https://github.com/flutter/engine/pull/19236) Roll Skia from c2f46c16ab67 to 2bf27f21f8d1 (1 revision) (cla: yes, waiting for tree to go green) [19237](https://github.com/flutter/engine/pull/19237) Roll Skia from 2bf27f21f8d1 to e7ad8c0d3be3 (4 revisions) (cla: yes, waiting for tree to go green) [19238](https://github.com/flutter/engine/pull/19238) Roll Dart SDK from 912ae8230fb7 to 5a6c1e515849 (6 revisions) (cla: yes, waiting for tree to go green) [19239](https://github.com/flutter/engine/pull/19239) Roll Skia from e7ad8c0d3be3 to 044e8bc8c2da (4 revisions) (cla: yes, waiting for tree to go green) [19240](https://github.com/flutter/engine/pull/19240) Roll Skia from 044e8bc8c2da to 7f9aa5a2c609 (2 revisions) (cla: yes, waiting for tree to go green) [19241](https://github.com/flutter/engine/pull/19241) Add more logging for when assets fail to load (cla: yes) [19242](https://github.com/flutter/engine/pull/19242) Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green) [19243](https://github.com/flutter/engine/pull/19243) Roll Fuchsia Linux SDK from RGOLO... to 3lfit... (cla: yes, waiting for tree to go green) [19244](https://github.com/flutter/engine/pull/19244) Remove cbracken from reviewer auto-assign (cla: yes, waiting for tree to go green) [19245](https://github.com/flutter/engine/pull/19245) Reland "Implement PlatformViewsController.createOverlaySurface" (cla: yes, platform-android, waiting for tree to go green) [19246](https://github.com/flutter/engine/pull/19246) Roll Skia from 7f9aa5a2c609 to 3b6b7478421b (7 revisions) (waiting for tree to go green) [19247](https://github.com/flutter/engine/pull/19247) Roll Dart SDK from 5a6c1e515849 to 6b630c3719bd (7 revisions) (cla: yes, waiting for tree to go green) [19248](https://github.com/flutter/engine/pull/19248) Roll Skia from 3b6b7478421b to fe02dd1ee6cb (5 revisions) (cla: yes, waiting for tree to go green) [19249](https://github.com/flutter/engine/pull/19249) Made [SemanticsObject setAccessibilityContainer] a noop. (cla: yes, platform-ios) [19250](https://github.com/flutter/engine/pull/19250) Roll Fuchsia Mac SDK from MvXLH... to -UZgg... (cla: yes, waiting for tree to go green) [19251](https://github.com/flutter/engine/pull/19251) Roll Skia from fe02dd1ee6cb to 5aaaeea4dad9 (1 revision) (cla: yes, waiting for tree to go green) [19256](https://github.com/flutter/engine/pull/19256) Roll Skia from 5aaaeea4dad9 to 22f246f5ad1d (1 revision) (cla: yes, waiting for tree to go green) [19257](https://github.com/flutter/engine/pull/19257) EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios) [19258](https://github.com/flutter/engine/pull/19258) Move OnDisplayPlatformView JNI call (cla: yes, platform-android) [19259](https://github.com/flutter/engine/pull/19259) Roll Skia from 22f246f5ad1d to a3b0b30a78b6 (1 revision) (cla: yes, waiting for tree to go green) [19261](https://github.com/flutter/engine/pull/19261) Fix string format (cla: yes, platform-android) [19262](https://github.com/flutter/engine/pull/19262) Roll Skia from a3b0b30a78b6 to 92c3b89d2396 (1 revision) (cla: yes, waiting for tree to go green) [19263](https://github.com/flutter/engine/pull/19263) Roll Dart SDK from 6b630c3719bd to 05167f3b6328 (16 revisions) (cla: yes, waiting for tree to go green) [19264](https://github.com/flutter/engine/pull/19264) Roll Skia from 92c3b89d2396 to 322e4be6a1b1 (2 revisions) (cla: yes, waiting for tree to go green) [19265](https://github.com/flutter/engine/pull/19265) Roll Fuchsia Linux SDK from 3lfit... to 6Dz_3... (cla: yes, waiting for tree to go green) [19266](https://github.com/flutter/engine/pull/19266) Android native locale resolution algorithm (cla: yes, platform-android, waiting for tree to go green) [19268](https://github.com/flutter/engine/pull/19268) Roll Dart SDK from 05167f3b6328 to b41471670edc (2 revisions) (cla: yes, waiting for tree to go green) [19269](https://github.com/flutter/engine/pull/19269) Roll Fuchsia Mac SDK from -UZgg... to l2ubU... (cla: yes, waiting for tree to go green) [19272](https://github.com/flutter/engine/pull/19272) Roll Dart SDK from b41471670edc to d8eb844e5d8f (5 revisions) (cla: yes, waiting for tree to go green) [19274](https://github.com/flutter/engine/pull/19274) Roll Skia from 322e4be6a1b1 to 8ee607cbc14d (17 revisions) (cla: yes, waiting for tree to go green) [19275](https://github.com/flutter/engine/pull/19275) Adding felt to engine README.md (cla: yes) [19279](https://github.com/flutter/engine/pull/19279) Initial work toward converting the FlutterView to use a FlutterImageView on demand (cla: yes, platform-android) [19280](https://github.com/flutter/engine/pull/19280) skip ios safari tests on felt level (cla: yes, crash) [19283](https://github.com/flutter/engine/pull/19283) Make Shell::NotifyLowMemoryWarning trace (cla: yes, perf: memory, waiting for tree to go green) [19284](https://github.com/flutter/engine/pull/19284) Roll Skia from 8ee607cbc14d to 632db1c74212 (8 revisions) (waiting for tree to go green) [19285](https://github.com/flutter/engine/pull/19285) Roll Fuchsia Linux SDK from 6Dz_3... to GqEvV... (cla: yes, waiting for tree to go green) [19288](https://github.com/flutter/engine/pull/19288) Roll Skia from 632db1c74212 to 9a5acc5a2dec (1 revision) (waiting for tree to go green) [19289](https://github.com/flutter/engine/pull/19289) Call Dart_NotifyLowMemory more on iOS (cla: yes, platform-ios, waiting for tree to go green) [19291](https://github.com/flutter/engine/pull/19291) Roll Fuchsia Mac SDK from l2ubU... to GUK7S... (cla: yes, waiting for tree to go green) [19293](https://github.com/flutter/engine/pull/19293) Roll Dart SDK from d8eb844e5d8f to 2ec47ad27394 (15 revisions) (cla: yes, waiting for tree to go green) [19294](https://github.com/flutter/engine/pull/19294) Roll Skia from 9a5acc5a2dec to 9861b7ca2241 (7 revisions) (cla: yes, waiting for tree to go green) [19295](https://github.com/flutter/engine/pull/19295) Position overlay layer views in PlatformViewsController.onDisplayOverlaySurface (cla: yes, platform-android) [19296](https://github.com/flutter/engine/pull/19296) [fuchsia] include icudtl.dat in cipd bucket (cla: yes) [19297](https://github.com/flutter/engine/pull/19297) Roll Skia from 9861b7ca2241 to 49f9437cc85f (1 revision) (cla: yes, waiting for tree to go green) [19298](https://github.com/flutter/engine/pull/19298) Run ios-safari tests on try bots (cla: yes) [19299](https://github.com/flutter/engine/pull/19299) Roll Dart SDK from 2ec47ad27394 to d33e51df3cda (3 revisions) (cla: yes, waiting for tree to go green) [19300](https://github.com/flutter/engine/pull/19300) Roll Skia from 49f9437cc85f to ec60ef9ab4ab (1 revision) (cla: yes, waiting for tree to go green) [19301](https://github.com/flutter/engine/pull/19301) Roll Skia from ec60ef9ab4ab to e684c6daef6b (3 revisions) (cla: yes, waiting for tree to go green) [19303](https://github.com/flutter/engine/pull/19303) Operator equals (cla: yes) [19304](https://github.com/flutter/engine/pull/19304) Roll Dart SDK from d33e51df3cda to 1c512ef1203b (3 revisions) (cla: yes, waiting for tree to go green) [19305](https://github.com/flutter/engine/pull/19305) Roll Fuchsia Linux SDK from GqEvV... to cK_s5... (cla: yes, waiting for tree to go green) [19306](https://github.com/flutter/engine/pull/19306) Roll Fuchsia Mac SDK from GUK7S... to eiQN4... (cla: yes, waiting for tree to go green) [19307](https://github.com/flutter/engine/pull/19307) Roll Dart SDK from 1c512ef1203b to 4079c373c08a (2 revisions) (cla: yes, waiting for tree to go green) [19308](https://github.com/flutter/engine/pull/19308) Roll Skia from e684c6daef6b to 7580ad47b70c (1 revision) (cla: yes, waiting for tree to go green) [19309](https://github.com/flutter/engine/pull/19309) Roll Skia from 7580ad47b70c to 9689e39a6902 (5 revisions) (cla: yes, waiting for tree to go green) [19310](https://github.com/flutter/engine/pull/19310) Roll Skia from 9689e39a6902 to 061a5cf82abb (4 revisions) (cla: yes, waiting for tree to go green) [19311](https://github.com/flutter/engine/pull/19311) Roll Skia from 061a5cf82abb to b795bea220ae (4 revisions) (cla: yes, waiting for tree to go green) [19313](https://github.com/flutter/engine/pull/19313) Roll Dart SDK from 4079c373c08a to a9bef090e8cb (7 revisions) (cla: yes, waiting for tree to go green) [19315](https://github.com/flutter/engine/pull/19315) Roll Skia from b795bea220ae to ac9d3f6f07a6 (7 revisions) (cla: yes, waiting for tree to go green) [19316](https://github.com/flutter/engine/pull/19316) Roll Skia from ac9d3f6f07a6 to 29c70f2bb656 (3 revisions) (cla: yes, waiting for tree to go green) [19318](https://github.com/flutter/engine/pull/19318) Roll Dart SDK from a9bef090e8cb to ea87c9b01a6a (15 revisions) (cla: yes, waiting for tree to go green) [19319](https://github.com/flutter/engine/pull/19319) Fix ImageReader "unable to acquire a buffer item" warnings in FlutterImageView (cla: yes, platform-android, waiting for tree to go green) [19321](https://github.com/flutter/engine/pull/19321) Roll Fuchsia Linux SDK from cK_s5... to mJzHi... (cla: yes, waiting for tree to go green) [19323](https://github.com/flutter/engine/pull/19323) Roll Dart SDK from ea87c9b01a6a to 63cf56d92510 (3 revisions) (cla: yes, waiting for tree to go green) [19324](https://github.com/flutter/engine/pull/19324) Roll Fuchsia Mac SDK from eiQN4... to YGK_M... (cla: yes, waiting for tree to go green) [19325](https://github.com/flutter/engine/pull/19325) Fix hybrid composition bugs (cla: yes, platform-android, waiting for tree to go green) [19328](https://github.com/flutter/engine/pull/19328) Roll Fuchsia Linux SDK from mJzHi... to _d0dW... (cla: yes, waiting for tree to go green) [19331](https://github.com/flutter/engine/pull/19331) Roll Skia from 29c70f2bb656 to 7ac9b5fdb6ee (14 revisions) (cla: yes, waiting for tree to go green) [19333](https://github.com/flutter/engine/pull/19333) Roll Skia from 7ac9b5fdb6ee to 318afe66e699 (6 revisions) (cla: yes, waiting for tree to go green) [19335](https://github.com/flutter/engine/pull/19335) Roll Skia from 318afe66e699 to 63a0a758ce14 (4 revisions) (cla: yes, waiting for tree to go green) [19336](https://github.com/flutter/engine/pull/19336) Roll Skia from 63a0a758ce14 to f123f06aabd6 (9 revisions) (cla: yes, waiting for tree to go green) [19337](https://github.com/flutter/engine/pull/19337) Manual roll of Dart e24733ebd1...63cf56d925 (cla: yes) [19338](https://github.com/flutter/engine/pull/19338) Roll Dart SDK from e24733ebd16c to 243ad5427564 (5 revisions) (cla: yes, waiting for tree to go green) [19339](https://github.com/flutter/engine/pull/19339) Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows) [19341](https://github.com/flutter/engine/pull/19341) Cache CanvasKit objects and delete if not used. (cla: yes) [19342](https://github.com/flutter/engine/pull/19342) Roll Dart SDK from 243ad5427564 to 7fc61e77e225 (5 revisions) (cla: yes, waiting for tree to go green) [19343](https://github.com/flutter/engine/pull/19343) Roll Fuchsia Mac SDK from YGK_M... to l3tHO... (cla: yes, waiting for tree to go green) [19344](https://github.com/flutter/engine/pull/19344) Implement onDisplayPlatformView (cla: yes, platform-android, waiting for tree to go green) [19346](https://github.com/flutter/engine/pull/19346) Roll Dart SDK from 7fc61e77e225 to 871f0ee31eb0 (4 revisions) (cla: yes, waiting for tree to go green) [19347](https://github.com/flutter/engine/pull/19347) Roll Fuchsia Linux SDK from _d0dW... to Y_dK2... (cla: yes, waiting for tree to go green) [19348](https://github.com/flutter/engine/pull/19348) Roll Fuchsia Mac SDK from l3tHO... to SuveI... (cla: yes, waiting for tree to go green) [19349](https://github.com/flutter/engine/pull/19349) Roll Fuchsia Linux SDK from Y_dK2... to lgSTC... (cla: yes, waiting for tree to go green) [19350](https://github.com/flutter/engine/pull/19350) Roll Dart SDK from 871f0ee31eb0 to f91547d6dd45 (1 revision) (cla: yes, waiting for tree to go green) [19386](https://github.com/flutter/engine/pull/19386) update web compilation rules for null-safety (cla: yes) [19389](https://github.com/flutter/engine/pull/19389) Roll Fuchsia Linux SDK from lgSTC... to ScRia... (cla: yes, waiting for tree to go green) [19391](https://github.com/flutter/engine/pull/19391) Roll Skia from f123f06aabd6 to 49b30f451e68 (31 revisions) (cla: yes, waiting for tree to go green) [19394](https://github.com/flutter/engine/pull/19394) Roll Skia from 49b30f451e68 to 3a54b68cb436 (3 revisions) (cla: yes, waiting for tree to go green) [19397](https://github.com/flutter/engine/pull/19397) Show EGL configuration debugging when fail to create surface/context (cla: yes) [19399](https://github.com/flutter/engine/pull/19399) fuchsia: Fix profile build (cla: yes, platform-fuchsia) [19401](https://github.com/flutter/engine/pull/19401) Roll Fuchsia Mac SDK from SuveI... to zbrla... (cla: yes, waiting for tree to go green) [19402](https://github.com/flutter/engine/pull/19402) Basic support for resizing overlay surfaces in hybrid composition (cla: yes, platform-android, waiting for tree to go green) [19403](https://github.com/flutter/engine/pull/19403) Roll Dart SDK from f91547d6dd45 to 019755f77bdc (20 revisions) (cla: yes) [19404](https://github.com/flutter/engine/pull/19404) Roll Skia from 3a54b68cb436 to eb1a9106b40b (2 revisions) (cla: yes, waiting for tree to go green) [19406](https://github.com/flutter/engine/pull/19406) Roll Skia from eb1a9106b40b to 359d16da1108 (2 revisions) (cla: yes, waiting for tree to go green) [19407](https://github.com/flutter/engine/pull/19407) Roll Dart SDK from 019755f77bdc to 96e8fa9cb565 (2 revisions) (cla: yes, waiting for tree to go green) [19408](https://github.com/flutter/engine/pull/19408) Roll Fuchsia Linux SDK from ScRia... to TbmMK... (cla: yes, waiting for tree to go green) [19410](https://github.com/flutter/engine/pull/19410) Roll Skia from 359d16da1108 to 95c250c24769 (1 revision) (cla: yes, waiting for tree to go green) [19412](https://github.com/flutter/engine/pull/19412) Roll Skia from 95c250c24769 to 8f3a83671a13 (1 revision) (cla: yes, waiting for tree to go green) [19414](https://github.com/flutter/engine/pull/19414) Fix paths in source and yaml files (cla: yes, waiting for tree to go green) [19415](https://github.com/flutter/engine/pull/19415) Roll Skia from 8f3a83671a13 to 1c62a7b034c0 (7 revisions) (cla: yes, waiting for tree to go green) [19416](https://github.com/flutter/engine/pull/19416) Roll Dart SDK from 96e8fa9cb565 to 22da8934ac8b (6 revisions) (cla: yes, waiting for tree to go green) [19417](https://github.com/flutter/engine/pull/19417) Roll Fuchsia Mac SDK from zbrla... to 1cpN9... (cla: yes, waiting for tree to go green) [19418](https://github.com/flutter/engine/pull/19418) Roll Skia from 1c62a7b034c0 to 2d7cf46c815b (1 revision) (cla: yes, waiting for tree to go green) [19419](https://github.com/flutter/engine/pull/19419) Remove linux_host_release_tests. (cla: yes) [19420](https://github.com/flutter/engine/pull/19420) Roll Skia from 2d7cf46c815b to 746460e25a1e (7 revisions) (cla: yes, waiting for tree to go green) [19421](https://github.com/flutter/engine/pull/19421) Update scenario UI screenshoots (cla: yes, platform-android) [19423](https://github.com/flutter/engine/pull/19423) Rename Sk* classes to Ck* in preparation for @JS migration (cla: yes) [19426](https://github.com/flutter/engine/pull/19426) Implement mutator stack on Android hybrid composition platform view (cla: yes, platform-android, waiting for tree to go green) [19427](https://github.com/flutter/engine/pull/19427) Synthesize touch events for hybrid views (cla: yes, platform-android) [19428](https://github.com/flutter/engine/pull/19428) generate package config during runhooks (cla: yes) [19429](https://github.com/flutter/engine/pull/19429) Roll Skia from 746460e25a1e to 1e6460d552f7 (8 revisions) (cla: yes, waiting for tree to go green) [19434](https://github.com/flutter/engine/pull/19434) Roll Skia from 1e6460d552f7 to 492558a10db6 (2 revisions) (cla: yes, waiting for tree to go green) [19435](https://github.com/flutter/engine/pull/19435) Revert unintended change (cla: yes, platform-android, waiting for tree to go green) [19436](https://github.com/flutter/engine/pull/19436) Roll Dart SDK from 22da8934ac8b to bec128612c03 (16 revisions) (cla: yes, waiting for tree to go green) [19437](https://github.com/flutter/engine/pull/19437) Roll Skia from 492558a10db6 to 400ba22f4564 (3 revisions) (cla: yes, waiting for tree to go green) [19438](https://github.com/flutter/engine/pull/19438) Use the X visual from the EGL configuration when making an FlView. (cla: yes) [19439](https://github.com/flutter/engine/pull/19439) Fix wrong licensing in engine (cla: yes, waiting for tree to go green) [19440](https://github.com/flutter/engine/pull/19440) Roll Skia from 400ba22f4564 to 16ee98ddeda3 (4 revisions) (cla: yes, waiting for tree to go green) [19441](https://github.com/flutter/engine/pull/19441) Roll Fuchsia Mac SDK from 1cpN9... to avEUl... (cla: yes, waiting for tree to go green) [19443](https://github.com/flutter/engine/pull/19443) Roll Fuchsia Linux SDK from TbmMK... to Pcug7... (cla: yes, waiting for tree to go green) [19447](https://github.com/flutter/engine/pull/19447) Roll Dart SDK from bec128612c03 to 63feed82e1b1 (8 revisions) (cla: yes, waiting for tree to go green) [19448](https://github.com/flutter/engine/pull/19448) Roll Skia from 16ee98ddeda3 to e381036051eb (2 revisions) (cla: yes, waiting for tree to go green) [19449](https://github.com/flutter/engine/pull/19449) Roll Skia from e381036051eb to d2f870c91102 (1 revision) (cla: yes, waiting for tree to go green) [19450](https://github.com/flutter/engine/pull/19450) First batch of CanvasKit bindings using @JS (cla: yes) [19451](https://github.com/flutter/engine/pull/19451) Roll Skia from d2f870c91102 to b7bfbc299aae (4 revisions) (cla: yes, waiting for tree to go green) [19452](https://github.com/flutter/engine/pull/19452) add collection rev variable to DEPS so it gets rolled by the auto roller (cla: yes) [19453](https://github.com/flutter/engine/pull/19453) Roll Fuchsia Mac SDK from avEUl... to 4MMwM... (cla: yes, waiting for tree to go green) [19457](https://github.com/flutter/engine/pull/19457) Roll Dart SDK from 63feed82e1b1 to 6b4fe2fb78f6 (12 revisions) (cla: yes, waiting for tree to go green) [19460](https://github.com/flutter/engine/pull/19460) Roll Skia from b7bfbc299aae to b5f7a07b77b4 (11 revisions) (cla: yes, waiting for tree to go green) [19461](https://github.com/flutter/engine/pull/19461) Roll Fuchsia Linux SDK from Pcug7... to 34sZm... (cla: yes, waiting for tree to go green) [19462](https://github.com/flutter/engine/pull/19462) Set child_layer_exists_below flag for Fuchsia PlatformViewLayer (cla: yes) [19463](https://github.com/flutter/engine/pull/19463) Roll Skia from b5f7a07b77b4 to 0106fcc8a733 (1 revision) (cla: yes, waiting for tree to go green) [19469](https://github.com/flutter/engine/pull/19469) Roll Dart SDK from 6b4fe2fb78f6 to f8ff12008e84 (17 revisions) (cla: yes, waiting for tree to go green) [19472](https://github.com/flutter/engine/pull/19472) Roll Dart SDK from f8ff12008e84 to 8afe9875a6d7 (1 revision) (cla: yes, waiting for tree to go green) [19475](https://github.com/flutter/engine/pull/19475) Roll Fuchsia Mac SDK from 4MMwM... to bigQ3... (cla: yes, waiting for tree to go green) [19476](https://github.com/flutter/engine/pull/19476) Roll Dart SDK from 8afe9875a6d7 to 28a3cd203923 (2 revisions) (cla: yes, waiting for tree to go green) [19479](https://github.com/flutter/engine/pull/19479) Roll Fuchsia Linux SDK from 34sZm... to kibil... (cla: yes, waiting for tree to go green) [19481](https://github.com/flutter/engine/pull/19481) Roll Dart SDK from 28a3cd203923 to c190fc3a31e7 (5 revisions) (cla: yes, waiting for tree to go green) [19482](https://github.com/flutter/engine/pull/19482) FlutterView will handle dispatching all touch events to sub-views (cla: yes, platform-android) [19483](https://github.com/flutter/engine/pull/19483) Roll Dart SDK from c190fc3a31e7 to cffeac78f98c (3 revisions) (cla: yes, waiting for tree to go green) [19484](https://github.com/flutter/engine/pull/19484) Track motion events for reuse post gesture disambiguation (cla: yes, platform-android) [19485](https://github.com/flutter/engine/pull/19485) Roll Fuchsia Mac SDK from bigQ3... to 9Xk9p... (cla: yes, waiting for tree to go green) [19486](https://github.com/flutter/engine/pull/19486) Roll Dart SDK from cffeac78f98c to 4301899ed5b3 (1 revision) (cla: yes, waiting for tree to go green) [19487](https://github.com/flutter/engine/pull/19487) Switch to FlutterSurfaceView if no Android view is in the frame (cla: yes, platform-android, waiting for tree to go green) [19488](https://github.com/flutter/engine/pull/19488) Roll Fuchsia Linux SDK from kibil... to tu9Py... (cla: yes, waiting for tree to go green) [19492](https://github.com/flutter/engine/pull/19492) Roll Fuchsia Mac SDK from 9Xk9p... to s4lA_... (cla: yes, waiting for tree to go green) [19493](https://github.com/flutter/engine/pull/19493) Revert "fuchsia: Fix profile build" (cla: yes) [19494](https://github.com/flutter/engine/pull/19494) Revert "Add tests & --unopt to build_fuchsia_artifacts" (cla: yes) [19498](https://github.com/flutter/engine/pull/19498) Roll Skia from 0106fcc8a733 to 733666b3be3b (11 revisions) (cla: yes, waiting for tree to go green) [19499](https://github.com/flutter/engine/pull/19499) Flutter 1.20 candidate.3 (cla: yes) [19500](https://github.com/flutter/engine/pull/19500) fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia) [19502](https://github.com/flutter/engine/pull/19502) Roll Skia from 733666b3be3b to 52a4379f03f7 (1 revision) (cla: yes, waiting for tree to go green) [19505](https://github.com/flutter/engine/pull/19505) Roll Fuchsia Mac SDK from s4lA_... to _Na1L... (cla: yes, waiting for tree to go green) [19506](https://github.com/flutter/engine/pull/19506) Roll Fuchsia Linux SDK from tu9Py... to TizBd... (cla: yes, waiting for tree to go green) [19507](https://github.com/flutter/engine/pull/19507) Roll Dart SDK from 4301899ed5b3 to 69aba23371ff (14 revisions) (cla: yes, waiting for tree to go green) [19509](https://github.com/flutter/engine/pull/19509) Roll Fuchsia Linux SDK from TizBd... to TvWbh... (cla: yes, waiting for tree to go green) [19524](https://github.com/flutter/engine/pull/19524) Roll Skia from 52a4379f03f7 to b827e97d2bab (3 revisions) (cla: yes, waiting for tree to go green) [19528](https://github.com/flutter/engine/pull/19528) Add missing GrContext.h include (cla: yes) [19533](https://github.com/flutter/engine/pull/19533) [web] Move surface path code (cla: yes) [19538](https://github.com/flutter/engine/pull/19538) Switch view_holder flags (cla: yes) [19544](https://github.com/flutter/engine/pull/19544) Pin the version of meta used by web_ui () [19546](https://github.com/flutter/engine/pull/19546) [CanvasKit] Dispose the overlay surface when a platform view is disposed (cla: yes) [19552](https://github.com/flutter/engine/pull/19552) Roll Skia from b827e97d2bab to ac45f499af46 (26 revisions) (cla: yes, waiting for tree to go green) [19555](https://github.com/flutter/engine/pull/19555) Resubmit frame when the surface is switched (cla: yes, platform-android) [19556](https://github.com/flutter/engine/pull/19556) Changed iOS channels to start cleaning up the accessibility handler when the bridge is deleted (cla: yes, platform-ios) [19559](https://github.com/flutter/engine/pull/19559) Roll Skia from ac45f499af46 to 6130d5079d55 (1 revision) (cla: yes, waiting for tree to go green) [19560](https://github.com/flutter/engine/pull/19560) Add @Keep annotation to FlutterMutatorsStack (cla: yes, platform-android) [19563](https://github.com/flutter/engine/pull/19563) Push fuchsia reverts to 1.20-candidate.4 (cla: yes) [19566](https://github.com/flutter/engine/pull/19566) Roll Fuchsia Linux SDK from TvWbh... to 1oAHN... (cla: yes, waiting for tree to go green) [19567](https://github.com/flutter/engine/pull/19567) include list_libraries.dart as a snapshot for fuchsia (cla: yes) [19570](https://github.com/flutter/engine/pull/19570) Roll Skia from 6130d5079d55 to 0c0d8dd6d637 (3 revisions) (cla: yes, waiting for tree to go green) [19571](https://github.com/flutter/engine/pull/19571) Cherrypick "Pin the version of meta used by web_ui (#19544)" (cla: yes) [19573](https://github.com/flutter/engine/pull/19573) Roll Skia from 0c0d8dd6d637 to cf5e35f72130 (13 revisions) (cla: yes, waiting for tree to go green) [19575](https://github.com/flutter/engine/pull/19575) kick flaky fuchsia build (cla: yes) [19576](https://github.com/flutter/engine/pull/19576) switch const finder to package_config (cla: yes) [19577](https://github.com/flutter/engine/pull/19577) Manual roll of Dart 06cb010247...69aba23371 (cla: yes) [19586](https://github.com/flutter/engine/pull/19586) [web][1/3] Start first batch of auto-generated (already passing) tests for line break (cla: yes, platform-web) [19587](https://github.com/flutter/engine/pull/19587) Roll Skia from cf5e35f72130 to b4d60f807dbd (5 revisions) (cla: yes, waiting for tree to go green) [19592](https://github.com/flutter/engine/pull/19592) Only attempt surface creation in viewDidLayoutSubviews if the application is active. (cla: yes, platform-ios) [19594](https://github.com/flutter/engine/pull/19594) Roll Skia from b4d60f807dbd to 473c9f4cd9b2 (11 revisions) (cla: yes, waiting for tree to go green) [19608](https://github.com/flutter/engine/pull/19608) Propoagate Tap events on Android hybrid views (cla: yes, platform-android) ### Merged PRs in `flutter/plugins` There were 153 pull requests. [831](https://github.com/flutter/plugins/pull/831) [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue) [2116](https://github.com/flutter/plugins/pull/2116) [google_sign_in] Add ability to return serverAuthCode (cla: yes, in review) [2172](https://github.com/flutter/plugins/pull/2172) [url_launcher] docs: note about encoding URIs (cla: yes) [2346](https://github.com/flutter/plugins/pull/2346) Remove podspec lint bash script, use flutter_plugin_tools (cla: yes) [2449](https://github.com/flutter/plugins/pull/2449) [google_maps_flutter] Add liteModeEnabled option (cla: yes) [2510](https://github.com/flutter/plugins/pull/2510) [in_app_purchase] Expose SKPaymentQueue.transactions to dart (cla: yes) [2533](https://github.com/flutter/plugins/pull/2533) [webview_flutter] Enable WebView programmatic scrolling. (cla: yes) [2544](https://github.com/flutter/plugins/pull/2544) [video_player] upgraded video_player to use pigeon (cla: yes) [2589](https://github.com/flutter/plugins/pull/2589) [path_provider] path provider linux implementation in dart (cla: yes) [2598](https://github.com/flutter/plugins/pull/2598) [android_intent] Adds canResolveActivity method (cla: yes) [2617](https://github.com/flutter/plugins/pull/2617) [video-player] upgraded video_player_interface to use pigeon (cla: yes) [2618](https://github.com/flutter/plugins/pull/2618) [package_info] add support for macos to package_info plugin (cla: yes) [2625](https://github.com/flutter/plugins/pull/2625) [image_picker] fix bug, sometimes double click cancel button will crash (cla: yes) [2629](https://github.com/flutter/plugins/pull/2629) [google_maps_flutter] Fix the visual jarring during the first gesture on the map (cla: yes) [2630](https://github.com/flutter/plugins/pull/2630) [scripts] Exclude shared_preferences_windows package (cla: yes) [2633](https://github.com/flutter/plugins/pull/2633) [e2e] Replaces the check for ActivityTestRule (cla: yes) [2634](https://github.com/flutter/plugins/pull/2634) [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness) [2636](https://github.com/flutter/plugins/pull/2636) [google_sign_in] Move GoogleSignInWrapper to a separate file. (cla: yes) [2637](https://github.com/flutter/plugins/pull/2637) [google_maps_flutter] Introduce Platform Interface package. (cla: yes) [2639](https://github.com/flutter/plugins/pull/2639) [webview_flutter] Add onReceivedError callback (cla: yes) [2641](https://github.com/flutter/plugins/pull/2641) Add LHLL to co-owner (cla: yes) [2643](https://github.com/flutter/plugins/pull/2643) [image_picker] Added maxDuration property to pickVideo method (cla: yes) [2646](https://github.com/flutter/plugins/pull/2646) [in_app_purchase] Fix cannot fix transaction issue (cla: yes) [2647](https://github.com/flutter/plugins/pull/2647) Upgrade dependency google_sign_in_web: ^0.9.1 (cla: yes) [2649](https://github.com/flutter/plugins/pull/2649) [google_sign_in_web] Ensure not-signed-in users are returned as `null`. (cla: yes, waiting for test harness) [2651](https://github.com/flutter/plugins/pull/2651) Remove Gradle hacks and upgrade SDK (cla: yes) [2654](https://github.com/flutter/plugins/pull/2654) [ios_platform_images] Fix crash when parameter extension is null (cla: yes) [2656](https://github.com/flutter/plugins/pull/2656) [url_launcher] Open url in same window when browser is in standalone mode. (cla: yes) [2657](https://github.com/flutter/plugins/pull/2657) Revert "[e2e] Replaces the check for ActivityTestRule" (cla: yes) [2658](https://github.com/flutter/plugins/pull/2658) [video_player_web] Add a custom analysis_options file to video_player_web. (cla: yes) [2660](https://github.com/flutter/plugins/pull/2660) [google_sign_in] Make the Delegate non-final to allow overriding (cla: yes) [2661](https://github.com/flutter/plugins/pull/2661) Reland: [e2e] Replaces the check for ActivityTestRule (#2633) (cla: yes) [2663](https://github.com/flutter/plugins/pull/2663) [webview_flutter] Workaround old Android tablets select drop down crash (cla: yes) [2664](https://github.com/flutter/plugins/pull/2664) Remove out of date pod repo update from Cirrus (cla: yes) [2665](https://github.com/flutter/plugins/pull/2665) [webview_flutter] OCMock module import -> #import (cla: yes) [2668](https://github.com/flutter/plugins/pull/2668) [image_picker] Fixes crash when an image in the gallery is tapped mor… (cla: yes) [2669](https://github.com/flutter/plugins/pull/2669) [webview_flutter] Bump the Dart SDK requirement to 2.7.0 (cla: yes) [2670](https://github.com/flutter/plugins/pull/2670) [google_maps_flutter] Removes setZoomControlsEnabled from GoogleMapController.h (cla: yes) [2671](https://github.com/flutter/plugins/pull/2671) [android_alarm_manager] Fix pod lint warnings (cla: yes) [2672](https://github.com/flutter/plugins/pull/2672) [android_intent] Fix pod lint warnings (cla: yes) [2673](https://github.com/flutter/plugins/pull/2673) [battery] Fix pod lint warnings (cla: yes) [2674](https://github.com/flutter/plugins/pull/2674) [google_maps_flutter] Migrate plugin to platform_interface API. (cla: yes) [2675](https://github.com/flutter/plugins/pull/2675) [connectivity] Fix pod lint warnings (cla: yes) [2676](https://github.com/flutter/plugins/pull/2676) [device_info] Fix pod lint warnings (cla: yes) [2677](https://github.com/flutter/plugins/pull/2677) [google_maps_flutter_platform_interface] Bump to 1.0.1 version. (cla: yes) [2678](https://github.com/flutter/plugins/pull/2678) [e2e] Fix pod lint warnings (cla: yes) [2679](https://github.com/flutter/plugins/pull/2679) [espresso] Fix pod lint warnings (cla: yes) [2680](https://github.com/flutter/plugins/pull/2680) [flutter_plugin_android_lifecycle] Fix pod lint warnings (cla: yes) [2681](https://github.com/flutter/plugins/pull/2681) [google_maps_flutter] Fix UIKit availability and pod lint warnings (cla: yes) [2682](https://github.com/flutter/plugins/pull/2682) [image_picker] Fix pod lint warnings (cla: yes) [2683](https://github.com/flutter/plugins/pull/2683) [in_app_purchase] Fix pod lint warnings (cla: yes) [2684](https://github.com/flutter/plugins/pull/2684) [ios_platform_images] Fix pod lint warnings (cla: yes) [2685](https://github.com/flutter/plugins/pull/2685) [local_auth] Fix retain self warning and pod lint warnings (cla: yes) [2686](https://github.com/flutter/plugins/pull/2686) [package_info] Fix pod lint warnings (cla: yes) [2687](https://github.com/flutter/plugins/pull/2687) [quick_actions] Fix UIApplicationShortcutItem availability and pod lint warnings (cla: yes) [2688](https://github.com/flutter/plugins/pull/2688) [sensors] Fix pod lint warnings (cla: yes) [2689](https://github.com/flutter/plugins/pull/2689) [share] Fix pod lint warnings (cla: yes) [2690](https://github.com/flutter/plugins/pull/2690) [shared_preferences] Fix pod lint warnings (cla: yes) [2691](https://github.com/flutter/plugins/pull/2691) [url_launcher] Fix pod lint warnings (cla: yes) [2692](https://github.com/flutter/plugins/pull/2692) [video_player] Fix pod lint warnings (cla: yes) [2693](https://github.com/flutter/plugins/pull/2693) [webview_flutter] Fix pod lint warnings (cla: yes) [2694](https://github.com/flutter/plugins/pull/2694) [path_provider] Fix pod lint warnings (cla: yes) [2695](https://github.com/flutter/plugins/pull/2695) [local_auth] Bump version (cla: yes) [2696](https://github.com/flutter/plugins/pull/2696) [image_picker] fix version. (cla: yes) [2697](https://github.com/flutter/plugins/pull/2697) Skip linting camera (cla: yes) [2699](https://github.com/flutter/plugins/pull/2699) Run camera linter, skip warnings (cla: yes) [2700](https://github.com/flutter/plugins/pull/2700) [google_sign_in] OCMock module import -> #import, pod lint warnings (cla: yes) [2702](https://github.com/flutter/plugins/pull/2702) [google_sign_in] Fix issue with repeated calls to requestScopes. (cla: yes) [2703](https://github.com/flutter/plugins/pull/2703) [video_player] Update README to mention web support. (cla: yes) [2704](https://github.com/flutter/plugins/pull/2704) [google_maps_flutter] fix crash and remove listeners (cla: yes) [2706](https://github.com/flutter/plugins/pull/2706) [video_player] Update version and changelog (cla: yes) [2710](https://github.com/flutter/plugins/pull/2710) [ci] Use Xcode 11.3.1 (cla: yes) [2711](https://github.com/flutter/plugins/pull/2711) [webview_flutter] Fix the version update for #2533 () [2712](https://github.com/flutter/plugins/pull/2712) [image_picker] Move core plugin to its own subdir. (cla: yes) [2713](https://github.com/flutter/plugins/pull/2713) [image_picker_platform_interface] Create image_picker_platform_interface package. (cla: yes) [2715](https://github.com/flutter/plugins/pull/2715) [connectivity_platform_interface] Remove Platform asserts. (cla: yes) [2716](https://github.com/flutter/plugins/pull/2716) [url_launcher] Remove an ephemeral file from macOS example (cla: yes) [2717](https://github.com/flutter/plugins/pull/2717) Add support for running Linux desktop tests on CI (cla: yes) [2718](https://github.com/flutter/plugins/pull/2718) [image_picker] Port core plugin to platform_interface APIs. (cla: yes) [2723](https://github.com/flutter/plugins/pull/2723) [battery] Bump to 1.0.0 (cla: yes) [2727](https://github.com/flutter/plugins/pull/2727) [url_launcher_web] Refactor unit tests to reduce flakiness. (cla: yes) [2728](https://github.com/flutter/plugins/pull/2728) [image_picker] Handle all images through URI (cla: yes) [2734](https://github.com/flutter/plugins/pull/2734) Announce 1.0.0 compatibility for multiple plugins (cla: yes) [2735](https://github.com/flutter/plugins/pull/2735) [google_maps_flutter] Remove endorsement of web platform. (cla: yes) [2736](https://github.com/flutter/plugins/pull/2736) [url_launcher] Add web to example app. (cla: yes) [2739](https://github.com/flutter/plugins/pull/2739) [in_app_purchase] update docs to warn about `completePurchase` (cla: yes) [2740](https://github.com/flutter/plugins/pull/2740) [url_launcher] Launches only mailto urls in same window on iOS devices (cla: yes) [2741](https://github.com/flutter/plugins/pull/2741) [video_player]: updated video_player_web to use the new video_player_platform_interface (cla: yes) [2743](https://github.com/flutter/plugins/pull/2743) reference apple sign in plugin from google sign in plugin (cla: yes, submit queue) [2744](https://github.com/flutter/plugins/pull/2744) [video_player]: added test class to fix video_player unit tests (cla: yes) [2745](https://github.com/flutter/plugins/pull/2745) [video_player]: fixed platform_interface unit tests (cla: yes) [2746](https://github.com/flutter/plugins/pull/2746) [google_maps_flutter] use `WaitUntilTouchesEndedPolicy` to fix the cameraIdle not called issue on iOS (cla: yes) [2747](https://github.com/flutter/plugins/pull/2747) [android_alarm_manager] update dart deps lower bound to 2.1.0 (cla: yes) [2748](https://github.com/flutter/plugins/pull/2748) [battery] update dart deps lower bound to 2.1.0 (cla: yes) [2749](https://github.com/flutter/plugins/pull/2749) [camera] Update lower bound of dart dependency to 2.1.0. (cla: yes) [2750](https://github.com/flutter/plugins/pull/2750) Use Xvfb for Linux desktop tests (cla: yes) [2751](https://github.com/flutter/plugins/pull/2751) [Many]Update lower dart bound to 2.1.0 (cla: yes) [2752](https://github.com/flutter/plugins/pull/2752) [google_maps_flutter] add todo on skipped test. (cla: yes) [2755](https://github.com/flutter/plugins/pull/2755) [image_picker] fixes for iOS which doesn't present camera/albums with more complex navigation (cla: yes, in review) [2757](https://github.com/flutter/plugins/pull/2757) [url_launcher] Initialize previousAutomaticSystemUiAdjustment in launch (bugfix, cla: yes) [2759](https://github.com/flutter/plugins/pull/2759) [video_player] fixed detach from engine logic (cla: yes) [2761](https://github.com/flutter/plugins/pull/2761) [image_picker] updated VALID_ARCHS to support iPhone simulator (cla: yes) [2763](https://github.com/flutter/plugins/pull/2763) [webview_flutter] Add support for passing a failing url (cla: yes) [2764](https://github.com/flutter/plugins/pull/2764) Run the publish with the pub version from flutter master (cla: yes) [2765](https://github.com/flutter/plugins/pull/2765) [image_picker] Add documentation for Android external storage permissions (cla: yes) [2766](https://github.com/flutter/plugins/pull/2766) [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview) [2768](https://github.com/flutter/plugins/pull/2768) Typo in e2e README.md (cla: yes) [2770](https://github.com/flutter/plugins/pull/2770) [e2e] Use CompletableFuture from package for lower API level support (cla: yes) [2772](https://github.com/flutter/plugins/pull/2772) [google_maps_flutter] Android: only destroy mapView once (cla: yes) [2774](https://github.com/flutter/plugins/pull/2774) Update Linux desktop Dockerfile for CMake switch (cla: yes) [2776](https://github.com/flutter/plugins/pull/2776) [url_launcher] remove android no-op implementation (cla: yes) [2777](https://github.com/flutter/plugins/pull/2777) [video_player] remove android no-op implementation (cla: yes) [2778](https://github.com/flutter/plugins/pull/2778) Clean up plugins post v2 Android embedding (cla: yes) [2779](https://github.com/flutter/plugins/pull/2779) [shared_preferences] remove android no-op implementation (cla: yes) [2780](https://github.com/flutter/plugins/pull/2780) [path_provider] remove android no-op implementation (cla: yes) [2781](https://github.com/flutter/plugins/pull/2781) [ios_platform_images] remove android no-op implementation (cla: yes) [2782](https://github.com/flutter/plugins/pull/2782) [google_sign_in] remove android no-op implementation (cla: yes) [2783](https://github.com/flutter/plugins/pull/2783) [e2e] remove android no-op implementation (cla: yes) [2784](https://github.com/flutter/plugins/pull/2784) [connectivity] remove android no-op implementation (cla: yes) [2785](https://github.com/flutter/plugins/pull/2785) [webview_flutter] use hard coded values in `setAndGetScrollPosition` test (cla: yes) [2789](https://github.com/flutter/plugins/pull/2789) [path_provider] linux endorsement (cla: yes) [2790](https://github.com/flutter/plugins/pull/2790) v2 embedding cleanup version bump (cla: yes) [2791](https://github.com/flutter/plugins/pull/2791) [image_picker_platform_interface] Introduce new PickedFile APIs. (cla: yes) [2794](https://github.com/flutter/plugins/pull/2794) [e2e] fixed code snippet in readme that referenced a non-existent variable (cla: yes) [2796](https://github.com/flutter/plugins/pull/2796) [in_app_purchase] PurchaseDetails.error should contain platform independent error (cla: yes) [2797](https://github.com/flutter/plugins/pull/2797) [image_picker] Port plugin to use the new Platform Interface. (cla: yes) [2798](https://github.com/flutter/plugins/pull/2798) [google_maps_flutter] Move test to its correct location. (cla: yes) [2799](https://github.com/flutter/plugins/pull/2799) [image_picker] Pin version of platform_interface. (cla: yes) [2800](https://github.com/flutter/plugins/pull/2800) [e2e] Android: Remove warning, bump AGP (cla: yes) [2801](https://github.com/flutter/plugins/pull/2801) [camera] Fix bug in example (cla: yes) [2802](https://github.com/flutter/plugins/pull/2802) [image_picker_for_web] Introduce image_picker_for_web package (cla: yes) [2804](https://github.com/flutter/plugins/pull/2804) [shared_preference_macos] Remove iOS and Android folder in example app (cla: yes) [2805](https://github.com/flutter/plugins/pull/2805) [e2e] Avoid overriding http, textinput, window size (cla: yes) [2807](https://github.com/flutter/plugins/pull/2807) Version bump for v0.5.0 (cla: yes) [2809](https://github.com/flutter/plugins/pull/2809) [path_provider] Change Linux example to depend on endorsed plugin from pub.dev (cla: yes) [2815](https://github.com/flutter/plugins/pull/2815) [path_provider] Updated documentation reflecting changes needed for testing (cla: yes) [2816](https://github.com/flutter/plugins/pull/2816) [image_picker] Add web support to the example app. (cla: yes) [2817](https://github.com/flutter/plugins/pull/2817) [image_picker_for_web] Remove android directory. (cla: yes, waiting for test harness) [2819](https://github.com/flutter/plugins/pull/2819) [video_player] Miscellaneous fixes to improve video player in web. (cla: yes) [2820](https://github.com/flutter/plugins/pull/2820) [connectivity] Bring "experimental" connectivity web to main repo. (cla: yes) [2826](https://github.com/flutter/plugins/pull/2826) Update Linux desktop Dockerfile for GTK switch (cla: yes) [2834](https://github.com/flutter/plugins/pull/2834) [In_App_Purchase]queryPastPurchases() shouldn't block transaction updates. (cla: yes) [2836](https://github.com/flutter/plugins/pull/2836) [shared_preferences_linux] Add support for Linux (cla: yes) [2842](https://github.com/flutter/plugins/pull/2842) [e2e] Fix e2e pixel ratio (cla: yes) [2843](https://github.com/flutter/plugins/pull/2843) Update README for plugin list (cla: yes) [2847](https://github.com/flutter/plugins/pull/2847) [url_launcher_web] Add tel URL support (cla: yes) [2853](https://github.com/flutter/plugins/pull/2853) [connectivity] Endorse connectivity_for_web. (cla: yes) [2854](https://github.com/flutter/plugins/pull/2854) [e2e] Use SettableFutures instead of CompletableFuture (cla: yes) [2855](https://github.com/flutter/plugins/pull/2855) [e2e] Bump version to 0.6.0 (cla: yes) [2857](https://github.com/flutter/plugins/pull/2857) [url_launcher_linux] Add Linux url_launcher plugin (cla: yes) [2863](https://github.com/flutter/plugins/pull/2863) [url_launcher] Endorse url_launcher_linux (cla: yes) [2864](https://github.com/flutter/plugins/pull/2864) [shared_preferences] Shared preferences linux endorsement (cla: yes) [2865](https://github.com/flutter/plugins/pull/2865) [shared_preferences_linux] Add iOS stub (cla: yes)
website/src/release/release-notes/release-notes-1.20.0.md/0
{ "file_path": "website/src/release/release-notes/release-notes-1.20.0.md", "repo_id": "website", "token_count": 244668 }
1,345
```nocode flutter: FocusManager#9d096 flutter: │ primaryFocus: FocusScopeNode#926dc(_ModalScopeState<dynamic> flutter: │ Focus Scope [PRIMARY FOCUS]) flutter: │ primaryFocusCreator: FocusScope ← PrimaryScrollController ← flutter: │ _ActionsScope ← Actions ← Builder ← PageStorage ← Offstage ← flutter: │ _ModalScopeStatus ← UnmanagedRestorationScope ← flutter: │ RestorationScope ← AnimatedBuilder ← flutter: │ _ModalScope<dynamic>-[LabeledGlobalKey<_ModalScopeState<dynamic>>#bd53e] flutter: │ ← Semantics ← _RenderTheaterMarker ← _EffectiveTickerMode ← flutter: │ TickerMode ← flutter: │ _OverlayEntryWidget-[LabeledGlobalKey<_OverlayEntryWidgetState>#89dd7] flutter: │ ← _Theater ← Overlay-[LabeledGlobalKey<OverlayState>#52f82] ← flutter: │ UnmanagedRestorationScope ← ⋯ flutter: │ flutter: └─rootScope: FocusScopeNode#f4205(Root Focus Scope [IN FOCUS PATH]) flutter: │ IN FOCUS PATH flutter: │ focusedChildren: FocusScopeNode#a0d10(Navigator Scope [IN FOCUS flutter: │ PATH]) flutter: │ flutter: └─Child 1: FocusNode#088ec([IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusNode#85f70(Shortcuts [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusNode#f0c18(Shortcuts [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusNode#0749f(Shortcuts [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: _FocusTraversalGroupNode#28990(FocusTraversalGroup [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusNode#5b515(Shortcuts [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusScopeNode#a0d10(Navigator Scope [IN FOCUS PATH]) flutter: │ context: FocusScope flutter: │ IN FOCUS PATH flutter: │ focusedChildren: FocusScopeNode#926dc(_ModalScopeState<dynamic> flutter: │ Focus Scope [PRIMARY FOCUS]) flutter: │ flutter: └─Child 1: _FocusTraversalGroupNode#72c8a(FocusTraversalGroup [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ NOT FOCUSABLE flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusNode#eb709(Navigator [IN FOCUS PATH]) flutter: │ context: Focus flutter: │ IN FOCUS PATH flutter: │ flutter: └─Child 1: FocusScopeNode#926dc(_ModalScopeState<dynamic> Focus Scope [PRIMARY FOCUS]) flutter: │ context: FocusScope flutter: │ PRIMARY FOCUS flutter: │ flutter: └─Child 1: FocusNode#a6b74 flutter: context: Focus flutter: ```
website/src/testing/trees/focus-tree.md/0
{ "file_path": "website/src/testing/trees/focus-tree.md", "repo_id": "website", "token_count": 1766 }
1,346
--- title: Install and run DevTools from Android Studio description: Learn how to install and use DevTools from Android Studio. --- ## Install the Flutter plugin Install the Flutter plugin if you don't already have it installed. This can be done using the normal **Plugins** page in the IntelliJ and Android Studio settings. Once that page is open, you can search the marketplace for the Flutter plugin. ## Start an app to debug To open DevTools, you first need to run a Flutter app. This can be accomplished by opening a Flutter project, ensuring that you have a device connected, and clicking the **Run** or **Debug** toolbar buttons. ## Launch DevTools from the toolbar/menu Once an app is running, you can start DevTools using one of the following: * Select the **Open DevTools** toolbar action in the Run view. * Select the **Open DevTools** toolbar action in the Debug view. (if debugging) * Select the **Open DevTools** action from the **More Actions** menu in the Flutter Inspector view. ![screenshot of Open DevTools button](/assets/images/docs/tools/devtools/android_studio_open_devtools.png){:width="100%"} ## Launch DevTools from an action You can also open DevTools from an IntelliJ action. Open the **Find Action...** dialog (on macOS, press <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>A</kbd>), and search for the **Open DevTools** action. When you select that action, DevTools is installed (if it isn't already), the DevTools server launches, and a browser instance opens pointing to the DevTools app. When opened with an IntelliJ action, DevTools is not connected to a Flutter app. You'll need to provide a service protocol port for a currently running app. You can do this using the inline **Connect to a running app** dialog.
website/src/tools/devtools/android-studio.md/0
{ "file_path": "website/src/tools/devtools/android-studio.md", "repo_id": "website", "token_count": 471 }
1,347
# DevTools 2.12.2 release notes The 2.12.2 release of the Dart and Flutter DevTools includes the following changes among other general improvements. To learn more about DevTools, check out the [DevTools overview](https://docs.flutter.dev/tools/devtools/overview). ## General updates * Recover from missing trace events - [#3960](https://github.com/flutter/devtools/pull/3960) ## Full commit history To find a complete list of changes since the previous release, check out [the diff on GitHub](https://github.com/flutter/devtools/compare/v2.12.1...v2.12.2).
website/src/tools/devtools/release-notes/release-notes-2.12.2-src.md/0
{ "file_path": "website/src/tools/devtools/release-notes/release-notes-2.12.2-src.md", "repo_id": "website", "token_count": 169 }
1,348
# DevTools 2.20.0 release notes The 2.20.0 release of the Dart and Flutter DevTools includes the following changes among other general improvements. To learn more about DevTools, check out the [DevTools overview](https://docs.flutter.dev/tools/devtools/overview). ## CPU profiler updates * Add support for grouping samples by tag - [#4693](https://github.com/flutter/devtools/pull/4693) ![samples by tag](/tools/devtools/release-notes/images-2.20.0/4693.png "samples by tag") * Enable guidelines for tree view - [#4722](https://github.com/flutter/devtools/pull/4722) ![guidelines](/tools/devtools/release-notes/images-2.20.0/4722.png "guidelines") * Rename "Profile granularity" to "CPU sampling rate" and move down to the area it relates to - [#4803](https://github.com/flutter/devtools/pull/4722) ![sampling rate](/tools/devtools/release-notes/images-2.20.0/4803.png "sampling rate") ## Memory updates * Retire the **Analysis** tab - [#4714](https://github.com/flutter/devtools/pull/4714) * Add a new tab, **Diff**, to enable memory leak detection and troubleshooting by comparing heap snapshots, providing insights about the number of instances, shallow size, retained size, and retaining paths - [#4714](https://github.com/flutter/devtools/pull/4714) ![diff](/tools/devtools/release-notes/images-2.20.0/4714.png "Diff in Memory tab") ## Debugger updates * Support for inspecting more types of instances in the variables viewer (Expandos, Types, TypeArguments, Parameters, Closures + closure Contexts, WeakProperty, Function, FunctionType, ReceivePort, Closure, RegExp) - [#4760](https://github.com/flutter/devtools/pull/4760) * Add support for displaying coverage in CodeView - [#4700](https://github.com/flutter/devtools/pull/4700) ![coverage](/tools/devtools/release-notes/images-2.20.0/4700.png "coverage in CodeView") ## Network updates * Display request data if content type is not json (thanks to @leungpuikuen!) - [#4602](https://github.com/flutter/devtools/pull/4602) ## Full commit history To find a complete list of changes since the previous release, check out [the diff on GitHub](https://github.com/flutter/devtools/compare/v2.19.0...v2.20.0).
website/src/tools/devtools/release-notes/release-notes-2.20.0-src.md/0
{ "file_path": "website/src/tools/devtools/release-notes/release-notes-2.20.0-src.md", "repo_id": "website", "token_count": 724 }
1,349
# DevTools 2.28.1 release notes The 2.28.1 release of the Dart and Flutter DevTools includes the following changes among other general improvements. To learn more about DevTools, check out the [DevTools overview](https://docs.flutter.dev/tools/devtools/overview). ## General updates * Added support for DevTools extensions. This means if you are debugging an app that depends on `package:foo`, and `package:foo` provides a DevTools extension, you will see a "Foo" tab display in DevTools that you can use to debug your app. To provide a DevTools extension for your pub package, check out the getting started guide for [package:devtools_extensions](https://pub.dev/packages/devtools_extensions)! ![Example DevTools extension](/tools/devtools/release-notes/images-2.28.1/example_devtools_extension.png "Example DevTools extension for package:foo_package") * Fixed theming bug in isolate selector - [#6403](https://github.com/flutter/devtools/pull/6403) * Fixed isolate bug where main isolate was not reselecting on hot restart - [#6436](https://github.com/flutter/devtools/pull/6436) * Show the hot reload button for Dart server apps that support hot reload - [#6341](https://github.com/flutter/devtools/pull/6341) * Fixed exceptions on hot restart - [#6451](https://github.com/flutter/devtools/pull/6451), [#6450](https://github.com/flutter/devtools/pull/6450) ## Inspector updates * Fixed bug where inspector service calls were done on the selected isolate, instead of the main isolate - [#6434](https://github.com/flutter/devtools/pull/6434) ## Logging updates * Improved responsiveness of the top bar on the Logging view - [#6281](https://github.com/flutter/devtools/pull/6281) * Added the ability to copy filtered logs - [#6260](https://github.com/flutter/devtools/pull/6260) ![The copy button on the Logging view to the right of the filter tool](/tools/devtools/release-notes/images-2.28.1/logger_copy.png "The Logging view copy button") ## Full commit history To find a complete list of changes in this release, check out the [DevTools git log](https://github.com/flutter/devtools/tree/v2.28.1).
website/src/tools/devtools/release-notes/release-notes-2.28.1-src.md/0
{ "file_path": "website/src/tools/devtools/release-notes/release-notes-2.28.1-src.md", "repo_id": "website", "token_count": 647 }
1,350
# DevTools 2.32.0 release notes The 2.32.0 release of the Dart and Flutter DevTools includes the following changes among other general improvements. To learn more about DevTools, check out the [DevTools overview](https://docs.flutter.dev/tools/devtools/overview). ## General updates * Improved overall usability by making the DevTools UI more dense. This significantly improves the user experience when using DevTools embedded in an IDE. - [#7030](https://github.com/flutter/devtools/pull/7030) * Removed the "Dense mode" setting. - [#7086](https://github.com/flutter/devtools/pull/7086) * Added support for filtering with regular expressions in the Logging, Network, and CPU profiler pages - [#7027](https://github.com/flutter/devtools/pull/7027) * Add a DevTools server interaction for getting the DTD uri. - [#7054](https://github.com/flutter/devtools/pull/7054) ## Memory updates * Supported allocation tracing for Flutter profile builds and Dart AOT compiled applications. - [#7058](https://github.com/flutter/devtools/pull/7058) * Supported import of memory snapshots. - [#6974](https://github.com/flutter/devtools/pull/6974) ## Debugger updates * Highlighted `extension type` as a declaration keyword, highlight the `$` in identifier interpolation as part of the interpolation, and properly highlight comments within type arguments. - [#6837](https://github.com/flutter/devtools/pull/6837) ## Logging updates * Added toggle filters to filter out noisy Flutter and Dart logs - [#7026](https://github.com/flutter/devtools/pull/7026) ![Logging view filters](/tools/devtools/release-notes/images-2.32.0/logging_toggle_filters.png "Toggle filters for logging screen") * Added a scrollbar to the details pane. - [#6917](https://github.com/flutter/devtools/pull/6917) ## DevTools extension updates * Added a description and documentation link to the `devtools_options.yaml` file that is created in a user's project. - [#7052](https://github.com/flutter/devtools/pull/7052) * Updated the Simulated DevTools Environment Panel to be collapsible (thanks to @victoreronmosele!) - [#7062](https://github.com/flutter/devtools/pull/7062) * Integrated DevTools extensions with the new Dart Tooling Daemon. This will allow DevTools extensions to access public methods registered by other DTD clients, such as an IDE, as well as access a minimal file system API for interacting with the development project. - [#7108](https://github.com/flutter/devtools/pull/7108) ## VS Code sidebar updates * Fixed an issue that prevented the VS code sidebar from loading in recent `beta` and `main` builds. - [#6984](https://github.com/flutter/devtools/pull/6984) * Showed DevTools extensions as an option from the debug sessions DevTools dropdown, when available. [#6709](https://github.com/flutter/devtools/pull/6709) ## Full commit history To find a complete list of changes in this release, check out the [DevTools git log](https://github.com/flutter/devtools/tree/v2.32.0).
website/src/tools/devtools/release-notes/release-notes-2.32.0-src.md/0
{ "file_path": "website/src/tools/devtools/release-notes/release-notes-2.32.0-src.md", "repo_id": "website", "token_count": 877 }
1,351
--- title: Hot reload description: Speed up development using Flutter's hot reload feature. --- <?code-excerpt path-base="development/tools"?> Flutter's hot reload feature helps you quickly and easily experiment, build UIs, add features, and fix bugs. Hot reload works by injecting updated source code files into the running [Dart Virtual Machine (VM)][]. After the VM updates classes with the new versions of fields and functions, the Flutter framework automatically rebuilds the widget tree, allowing you to quickly view the effects of your changes. ## How to perform a hot reload To hot reload a Flutter app: 1. Run the app from a supported [Flutter editor][] or a terminal window. Either a physical or virtual device can be the target. **Only Flutter apps in debug mode can be hot reloaded or hot restarted.** 1. Modify one of the Dart files in your project. Most types of code changes can be hot reloaded; for a list of changes that require a hot restart, see [Special cases](#special-cases). 1. If you're working in an IDE/editor that supports Flutter's IDE tools, select **Save All** (`cmd-s`/`ctrl-s`), or click the hot reload button on the toolbar. If you're running the app at the command line using `flutter run`, enter `r` in the terminal window. After a successful hot reload operation, you'll see a message in the console similar to: ``` Performing hot reload... Reloaded 1 of 448 libraries in 978ms. ``` The app updates to reflect your change, and the current state of the app is preserved. Your app continues to execute from where it was prior to run the hot reload command. The code updates and execution continues. {{site.alert.secondary}} **What is the difference between hot reload, hot restart, and full restart?** * **Hot reload** loads code changes into the VM and re-builds the widget tree, preserving the app state; it doesn't rerun `main()` or `initState()`. (`⌘\` in Intellij and Android Studio, `⌃F5` in VSCode) * **Hot restart** loads code changes into the VM, and restarts the Flutter app, losing the app state. (`⇧⌘\` in IntelliJ and Android Studio, `⇧⌘F5` in VSCode) * **Full restart** restarts the iOS, Android, or web app. This takes longer because it also recompiles the Java / Kotlin / ObjC / Swift code. On the web, it also restarts the Dart Development Compiler. There is no specific keyboard shortcut for this; you need to stop and start the run configuration. Flutter web currently supports hot restart but not hot reload. {{site.alert.end}} ![Android Studio UI](/assets/images/docs/development/tools/android-studio-run-controls.png){:width="100%"}<br> Controls for run, run debug, hot reload, and hot restart in Android Studio A code change has a visible effect only if the modified Dart code is run again after the change. Specifically, a hot reload causes all the existing widgets to rebuild. Only code involved in the rebuilding of the widgets is automatically re-executed. The `main()` and `initState()` functions, for example, are not run again. ## Special cases The next sections describe specific scenarios that involve hot reload. In some cases, small changes to the Dart code enable you to continue using hot reload for your app. In other cases, a hot restart, or a full restart is needed. ### An app is killed Hot reload can break when the app is killed. For example, if the app was in the background for too long. ### Compilation errors When a code change introduces a compilation error, hot reload generates an error message similar to: ```nocode Hot reload was rejected: '/path/to/project/lib/main.dart': warning: line 16 pos 38: unbalanced '{' opens here Widget build(BuildContext context) { ^ '/path/to/project/lib/main.dart': error: line 33 pos 5: unbalanced ')' ); ^ ``` In this situation, simply correct the errors on the specified lines of Dart code to keep using hot reload. ### CupertinoTabView's builder Hot reload won't apply changes made to a `builder` of a `CupertinoTabView`. For more information, see [Issue 43574][]. ### Enumerated types Hot reload doesn't work when enumerated types are changed to regular classes or regular classes are changed to enumerated types. For example: Before the change: <?code-excerpt "lib/hot-reload/before.dart (Enum)"?> ```dart enum Color { red, green, blue, } ``` After the change: <?code-excerpt "lib/hot-reload/after.dart (Enum)"?> ```dart class Color { Color(this.i, this.j); final int i; final int j; } ``` ### Generic types Hot reload won't work when generic type declarations are modified. For example, the following won't work: Before the change: <?code-excerpt "lib/hot-reload/before.dart (Class)"?> ```dart class A<T> { T? i; } ``` After the change: <?code-excerpt "lib/hot-reload/after.dart (Class)"?> ```dart class A<T, V> { T? i; V? v; } ``` ### Native code If you've changed native code (such as Kotlin, Java, Swift, or Objective-C), you must perform a full restart (stop and restart the app) to see the changes take effect. ### Previous state is combined with new code Flutter's stateful hot reload preserves the state of your app. This approach enables you to view the effect of the most recent change only, without throwing away the current state. For example, if your app requires a user to log in, you can modify and hot reload a page several levels down in the navigation hierarchy, without re-entering your login credentials. State is kept, which is usually the desired behavior. If code changes affect the state of your app (or its dependencies), the data your app has to work with might not be fully consistent with the data it would have if it executed from scratch. The result might be different behavior after a hot reload versus a hot restart. ### Recent code change is included but app state is excluded In Dart, [static fields are lazily initialized][static-variables]. This means that the first time you run a Flutter app and a static field is read, it's set to whatever value its initializer was evaluated to. Global variables and static fields are treated as state, and are therefore not reinitialized during hot reload. If you change initializers of global variables and static fields, a hot restart or restart the state where the initializers are hold is necessary to see the changes. For example, consider the following code: <?code-excerpt "lib/hot-reload/before.dart (SampleTable)"?> ```dart final sampleTable = [ Table( children: const [ TableRow( children: [Text('T1')], ) ], ), Table( children: const [ TableRow( children: [Text('T2')], ) ], ), Table( children: const [ TableRow( children: [Text('T3')], ) ], ), Table( children: const [ TableRow( children: [Text('T4')], ) ], ), ]; ``` After running the app, you make the following change: <?code-excerpt "lib/hot-reload/after.dart (SampleTable)"?> ```dart final sampleTable = [ Table( children: const [ TableRow( children: [Text('T1')], ) ], ), Table( children: const [ TableRow( children: [Text('T2')], ) ], ), Table( children: const [ TableRow( children: [Text('T3')], ) ], ), Table( children: const [ TableRow( children: [Text('T10')], // modified ) ], ), ]; ``` You hot reload, but the change is not reflected. Conversely, in the following example: <?code-excerpt "lib/hot-reload/before.dart (Const)"?> ```dart const foo = 1; final bar = foo; void onClick() { print(foo); print(bar); } ``` Running the app for the first time prints `1` and `1`. Then, you make the following change: <?code-excerpt "lib/hot-reload/after.dart (Const)"?> ```dart const foo = 2; // modified final bar = foo; void onClick() { print(foo); print(bar); } ``` While changes to `const` field values are always hot reloaded, the static field initializer is not rerun. Conceptually, `const` fields are treated like aliases instead of state. The Dart VM detects initializer changes and flags when a set of changes needs a hot restart to take effect. The flagging mechanism is triggered for most of the initialization work in the above example, but not for cases like the following: <?code-excerpt "lib/hot-reload/after.dart (FinalFoo)"?> ```dart final bar = foo; ``` To update `foo` and view the change after hot reload, consider redefining the field as `const` or using a getter to return the value, rather than using `final`. For example, either of the following solutions work: <?code-excerpt "lib/hot-reload/foo_const.dart (Const)"?> ```dart const foo = 1; const bar = foo; // Convert foo to a const... void onClick() { print(foo); print(bar); } ``` <?code-excerpt "lib/hot-reload/getter.dart (Const)"?> ```dart const foo = 1; int get bar => foo; // ...or provide a getter. void onClick() { print(foo); print(bar); } ``` For more information, read about the [differences between the `const` and `final` keywords][const-new] in Dart. ### Recent UI change is excluded Even when a hot reload operation appears successful and generates no exceptions, some code changes might not be visible in the refreshed UI. This behavior is common after changes to the app's `main()` or `initState()` methods. As a general rule, if the modified code is downstream of the root widget's `build()` method, then hot reload behaves as expected. However, if the modified code won't be re-executed as a result of rebuilding the widget tree, then you won't see its effects after hot reload. For example, consider the following code: <?code-excerpt "lib/hot-reload/before.dart (Build)"?> ```dart import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return GestureDetector(onTap: () => print('tapped')); } } ``` After running this app, change the code as follows: <?code-excerpt "lib/hot-reload/after.dart (Main)"?> ```dart import 'package:flutter/widgets.dart'; void main() { runApp(const Center(child: Text('Hello', textDirection: TextDirection.ltr))); } ``` With a hot restart, the program starts from the beginning, executes the new version of `main()`, and builds a widget tree that displays the text `Hello`. However, if you hot reload the app after this change, `main()` and `initState()` are not re-executed, and the widget tree is rebuilt with the unchanged instance of `MyApp` as the root widget. This results in no visible change after hot reload. ## How it works When hot reload is invoked, the host machine looks at the edited code since the last compilation. The following libraries are recompiled: * Any libraries with changed code * The application's main library * The libraries from the main library leading to affected libraries The source code from those libraries is compiled into [kernel files][] and sent to the mobile device's Dart VM. The Dart VM re-loads all libraries from the new kernel file. So far no code is re-executed. The hot reload mechanism then causes the Flutter framework to trigger a rebuild/re-layout/repaint of all existing widgets and render objects. [static-variables]: {{site.dart-site}}/language/classes#static-variables [const-new]: {{site.dart-site}}/language/variables#final-and-const [Dart Virtual Machine (VM)]: {{site.dart-site}}/overview#platform [Flutter editor]: /get-started/editor [Issue 43574]: {{site.repo.flutter}}/issues/43574 [kernel files]: {{site.github}}/dart-lang/sdk/tree/main/pkg/kernel
website/src/tools/hot-reload.md/0
{ "file_path": "website/src/tools/hot-reload.md", "repo_id": "website", "token_count": 3650 }
1,352
--- layout: toc title: Assets & media description: Content covering incorporating assets and media in Flutter apps. ---
website/src/ui/assets/index.md/0
{ "file_path": "website/src/ui/assets/index.md", "repo_id": "website", "token_count": 29 }
1,353
--- layout: toc title: Lists & grids description: Content covering adding lists and grids of items to Flutter apps. sitemap: false ---
website/src/ui/layout/lists/index.md/0
{ "file_path": "website/src/ui/layout/lists/index.md", "repo_id": "website", "token_count": 37 }
1,354
--- title: Widget catalog description: A catalog of some of Flutter's rich set of widgets. short-title: Widgets --- Create beautiful apps faster with Flutter's collection of visual, structural, platform, and interactive widgets. In addition to browsing widgets by category, you can also see all the widgets in the [widget index][]. <div class="card-deck card-deck--responsive"> {% assign categories = site.data.catalog.index | sort: 'name' -%} {% for section in categories %} <!-- Don't display the legacy Material 2 card. It is only accessible via the Material 3 components page. --> {% if section.name != "Material 2 Components" %} <div class="card"> <div class="card-body"> <a href="{{page.url}}{{section.id}}"><header class="card-title">{{section.name}}</header></a> <p class="card-text">{{section.description}}</p> </div> <div class="card-footer card-footer--transparent"> <a href="{{page.url}}{{section.id}}">Visit</a> </div> </div> {% endif -%} {% endfor %} </div> ## Widget of the Week 100+ short, 1-minute explainer videos to help you quickly get started with Flutter widgets. <div class="card-deck card-deck--responsive"> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/1z6YP7YmvwA" title="Learn about the TextStyle Flutter Widget" {{site.yt.set}}></iframe> </div> </div> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/VdkRy3yZiPo" title="Learn about the flutter_rating_bar Flutter Package" {{site.yt.set}}></iframe> </div> </div> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/gYNTcgZVcWw" title="Learn about the LinearGradient Flutter Widget" {{site.yt.set}}></iframe> </div> </div> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/-Nny8kzW380" title="Learn about the AutoComplete Flutter Widget" {{site.yt.set}}></iframe> </div> </div> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/y9xchtVTtqQ" title="Learn about the NavigationRail Flutter Widget" {{site.yt.set}}></iframe> </div> </div> <div class="video-card"> <div class="card-body"> <iframe style="max-width: 100%; width: 100%; height: 230px;" src="{{site.yt.embed}}/qjA0JFiPMnQ" title="Learn about the mason Flutter Package" {{site.yt.set}}></iframe> </div> </div> </div> <a class="btn btn-primary full-width" target="_blank" href="{{site.yt.playlist}}PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG" >See more Widget of the Weeks</a> [widget index]: /reference/widgets
website/src/ui/widgets/index.md/0
{ "file_path": "website/src/ui/widgets/index.md", "repo_id": "website", "token_count": 1254 }
1,355
// Copyright 2024 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'; import 'package:args/command_runner.dart'; import 'package:path/path.dart' as path; final class CheckLinkReferencesCommand extends Command<int> { @override String get description => 'Verify there are no unlinked/broken ' 'Markdown link references in the generated site output.'; @override String get name => 'check-link-references'; @override Future<int> run() async => _checkLinkReferences(); } int _checkLinkReferences() { print('Checking for broken Markdown link references...'); const generatedSiteDirectory = '_site'; final directory = Directory(generatedSiteDirectory); if (!directory.existsSync()) { stderr.writeln( 'Error: Generated site not found at $generatedSiteDirectory. ' 'Make sure the site is generated first!', ); return 1; } final filesToInvalidReferences = _findInvalidLinkReferences(directory); if (filesToInvalidReferences.isNotEmpty) { stderr.writeln('Error: Invalid link references found!'); filesToInvalidReferences.forEach((sourceFile, invalidReferences) { stderr.writeln('\n$sourceFile:'); for (final invalidReference in invalidReferences) { stderr.writeln(invalidReference); } }); return 1; } print('No invalid link references found.'); return 0; } /// Find all invalid link references within generated HTML files /// in the specified [directory]. Map<String, List<String>> _findInvalidLinkReferences(Directory directory) { final invalidReferences = <String, List<String>>{}; for (final filePath in directory .listSync(recursive: true) .map((f) => f.path) .where((p) => path.extension(p) == '.html')) { final content = File(filePath).readAsStringSync(); final results = _findInContent(content); if (results.isNotEmpty) { invalidReferences[path.relative(filePath, from: directory.path)] = results; } } return invalidReferences; } List<String> _findInContent(String content) { for (final replacement in _allReplacements) { content = content.replaceAll(replacement, ''); } // Use regex to find all links that displayed abnormally, // since a valid reference link should be an `<a>` tag after rendered: // // - `[flutter.dev][]` // - `[GitHub repo][repo]` // See also: // - https://github.github.com/gfm/#reference-link final invalidFound = _invalidLinkReferencePattern.allMatches(content); if (invalidFound.isEmpty) { return const []; } return invalidFound .map((e) => e[0]) .whereType<String>() .toList(growable: false); } /// Ignore blocks with TODOs: /// /// ```html /// <!-- TODO(somebody): [Links here][are not rendered]. --> /// ``` final _htmlCommentPattern = RegExp(r'<!--.*?-->', dotAll: true); /// Ignore blocks with code: /// /// ```dart /// [[highlight]]flutter[[/highlight]] /// ``` final _codeBlockPattern = RegExp(r'<pre.*?</pre>', dotAll: true); /// Ignore PR titles that look like a link /// directly embedded in a paragraph /// and often found in release notes: /// /// ```html /// <p><a href="https://github.com/flutter/engine/pull/27070">27070</a> /// [web][felt] Fix stdout inheritance for sub-processes /// (cla: yes, waiting for tree to go green, platform-web, needs tests) /// </p> /// ``` final _pullRequestTitlePattern = RegExp( r'<p><a href="https://github.com/.*?/pull/\d+">\d+</a>.*?</p>', dotAll: true, ); /// Ignore PR titles that look like a link, /// directly embedded in a `<li>` /// and often found in release notes: /// /// ```html /// <li>[docs][FWW] DropdownButton, ScaffoldMessenger, and StatefulBuilder links /// by @craiglabenz in https://github.com/flutter/flutter/pull/100316</li> /// ``` final _pullRequestTitleInListItemPattern = RegExp( r'<li>.*? in.*?https://github.com/.*?/pull/.*?</li>', dotAll: true, ); /// All replacements to run on a file content before finding invalid references. final _allReplacements = [ _htmlCommentPattern, _codeBlockPattern, _pullRequestTitlePattern, _pullRequestTitleInListItemPattern, ]; final _invalidLinkReferencePattern = RegExp(r'\[[^\[\]]+]\[[^\[\]]*]');
website/tool/flutter_site/lib/src/commands/check_link_references.dart/0
{ "file_path": "website/tool/flutter_site/lib/src/commands/check_link_references.dart", "repo_id": "website", "token_count": 1427 }
1,356
// 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:googleapis/youtube/v3.dart'; import 'package:provider/provider.dart'; import 'package:url_launcher/link.dart'; import 'app_state.dart'; class PlaylistDetails extends StatelessWidget { const PlaylistDetails( {required this.playlistId, required this.playlistName, super.key}); final String playlistId; final String playlistName; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(playlistName), ), body: Consumer<FlutterDevPlaylists>( builder: (context, playlists, _) { final playlistItems = playlists.playlistItems(playlistId: playlistId); if (playlistItems.isEmpty) { return const Center(child: CircularProgressIndicator()); } return _PlaylistDetailsListView(playlistItems: playlistItems); }, ), ); } } class _PlaylistDetailsListView extends StatelessWidget { const _PlaylistDetailsListView({required this.playlistItems}); final List<PlaylistItem> playlistItems; @override Widget build(BuildContext context) { return ListView.builder( itemCount: playlistItems.length, itemBuilder: (context, index) { final playlistItem = playlistItems[index]; return Padding( padding: const EdgeInsets.all(8.0), child: ClipRRect( borderRadius: BorderRadius.circular(4), child: Stack( alignment: Alignment.center, children: [ if (playlistItem.snippet!.thumbnails!.high != null) Image.network(playlistItem.snippet!.thumbnails!.high!.url!), _buildGradient(context), _buildTitleAndSubtitle(context, playlistItem), _buildPlayButton(context, playlistItem), ], ), ), ); }, ); } Widget _buildGradient(BuildContext context) { return Positioned.fill( child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( colors: [ Colors.transparent, Theme.of(context).colorScheme.background, ], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.5, 0.95], ), ), ), ); } Widget _buildTitleAndSubtitle( BuildContext context, PlaylistItem playlistItem) { return Positioned( left: 20, right: 0, bottom: 20, child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( playlistItem.snippet!.title!, style: Theme.of(context).textTheme.bodyLarge!.copyWith( fontSize: 18, // fontWeight: FontWeight.bold, ), ), if (playlistItem.snippet!.videoOwnerChannelTitle != null) Text( playlistItem.snippet!.videoOwnerChannelTitle!, style: Theme.of(context).textTheme.bodyMedium!.copyWith( fontSize: 12, ), ), ], ), ); } Widget _buildPlayButton(BuildContext context, PlaylistItem playlistItem) { return Stack( alignment: AlignmentDirectional.center, children: [ Container( width: 42, height: 42, decoration: const BoxDecoration( color: Colors.white, borderRadius: BorderRadius.all( Radius.circular(21), ), ), ), Link( uri: Uri.parse( 'https://www.youtube.com/watch?v=${playlistItem.snippet!.resourceId!.videoId}'), builder: (context, followLink) => IconButton( onPressed: followLink, color: Colors.red, icon: const Icon(Icons.play_circle_fill), iconSize: 45, ), ), ], ); } }
codelabs/adaptive_app/step_04/lib/src/playlist_details.dart/0
{ "file_path": "codelabs/adaptive_app/step_04/lib/src/playlist_details.dart", "repo_id": "codelabs", "token_count": 1948 }
0
#include "../../Flutter/Flutter-Debug.xcconfig" #include "Warnings.xcconfig"
codelabs/adaptive_app/step_04/macos/Runner/Configs/Debug.xcconfig/0
{ "file_path": "codelabs/adaptive_app/step_04/macos/Runner/Configs/Debug.xcconfig", "repo_id": "codelabs", "token_count": 32 }
1
import 'package:adaptive_app/main.dart'; import 'package:adaptive_app/src/app_state.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:googleapis/youtube/v3.dart'; import 'package:http/src/client.dart'; import 'package:provider/provider.dart'; class FakeAuthedUserPlaylists extends ChangeNotifier implements AuthedUserPlaylists { @override List<PlaylistItem> playlistItems({required String playlistId}) => []; @override List<Playlist> get playlists => []; @override set authClient(Client authClient) => throw UnimplementedError(); @override bool get isLoggedIn => true; } void main() { testWidgets('smoke test', (tester) async { // Build our app and trigger a frame. await tester.pumpWidget( ChangeNotifierProvider<AuthedUserPlaylists>( create: (context) => FakeAuthedUserPlaylists(), child: const PlaylistsApp(), ), ); }); }
codelabs/adaptive_app/step_07/test/widget_test.dart/0
{ "file_path": "codelabs/adaptive_app/step_07/test/widget_test.dart", "repo_id": "codelabs", "token_count": 333 }
2
#include "Generated.xcconfig"
codelabs/animated-responsive-layout/step_04/ios/Flutter/Debug.xcconfig/0
{ "file_path": "codelabs/animated-responsive-layout/step_04/ios/Flutter/Debug.xcconfig", "repo_id": "codelabs", "token_count": 12 }
3
// 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 'models.dart'; final User user_0 = User( name: const Name(first: 'Me', last: ''), avatarUrl: 'assets/avatar_1.png', lastActive: DateTime.now()); final User user_1 = User( name: const Name(first: '老', last: '强'), avatarUrl: 'assets/avatar_2.png', lastActive: DateTime.now().subtract(const Duration(minutes: 10))); final User user_2 = User( name: const Name(first: 'So', last: 'Duri'), avatarUrl: 'assets/avatar_3.png', lastActive: DateTime.now().subtract(const Duration(minutes: 20))); final User user_3 = User( name: const Name(first: 'Lily', last: 'MacDonald'), avatarUrl: 'assets/avatar_4.png', lastActive: DateTime.now().subtract(const Duration(hours: 2))); final User user_4 = User( name: const Name(first: 'Ziad', last: 'Aouad'), avatarUrl: 'assets/avatar_5.png', lastActive: DateTime.now().subtract(const Duration(hours: 6))); final List<Email> emails = [ Email( sender: user_1, recipients: [], subject: '豆花鱼', content: '最近忙吗?昨晚我去了你最爱的那家饭馆,点了他们的特色豆花鱼,吃着吃着就想你了。', ), Email( sender: user_2, recipients: [], subject: 'Dinner Club', content: 'I think it’s time for us to finally try that new noodle shop downtown that doesn’t use menus. Anyone else have other suggestions for dinner club this week? I’m so intrigued by this idea of a noodle restaurant where no one gets to order for themselves - could be fun, or terrible, or both :)\n\nSo', ), Email( sender: user_3, recipients: [], subject: 'This food show is made for you', content: 'Ping– you’d love this new food show I started watching. It’s produced by a Thai drummer who started getting recognized for the amazing vegan food she always brought to shows.', attachments: [const Attachment(url: 'assets/thumbnail_1.png')]), Email( sender: user_4, recipients: [], subject: 'Volunteer EMT with me?', content: 'What do you think about training to be volunteer EMTs? We could do it together for moral support. Think about it??', ), ]; final List<Email> replies = [ Email( sender: user_2, recipients: [ user_3, user_2, ], subject: 'Dinner Club', content: 'I think it’s time for us to finally try that new noodle shop downtown that doesn’t use menus. Anyone else have other suggestions for dinner club this week? I’m so intrigued by this idea of a noodle restaurant where no one gets to order for themselves - could be fun, or terrible, or both :)\n\nSo', ), Email( sender: user_0, recipients: [ user_3, user_2, ], subject: 'Dinner Club', content: 'Yes! I forgot about that place! I’m definitely up for taking a risk this week and handing control over to this mysterious noodle chef. I wonder what happens if you have allergies though? Lucky none of us have any otherwise I’d be a bit concerned.\n\nThis is going to be great. See you all at the usual time?', ), ];
codelabs/animated-responsive-layout/step_06/lib/models/data.dart/0
{ "file_path": "codelabs/animated-responsive-layout/step_06/lib/models/data.dart", "repo_id": "codelabs", "token_count": 1197 }
4
# MyArtist A music player app where fans can keep up to date with their favorite artists. ## Getting started This is a companion Flutter app to go along with the [Take your Flutter app from boring to beautiful](#) codelab. This codelab guides you step-by-step through modifying MyArtist's design to look beautiful across platforms and devices. For help getting started with Flutter development, view our [online documentation](https://docs.flutter.dev), which offers tutorials, samples, guidance on mobile development, and a full API reference. ## How to run To run the final app: ``` cd final flutter run ``` Optional: Replace `final` with any of the step_XX directories to see the app state at intermediate steps. ## Image Credits Images sourced from Adobe Stock and Unsplash. ### - record.jpeg: Adobe Stock #### albums - [artist1-album1.jpg](https://unsplash.com/photos/f0WoQluZ8XI): Keagan Henman - [artist1-album2.jpg](https://unsplash.com/photos/6etHcucBiRg): Keagan Henman - [artist1-album3.jpg](https://unsplash.com/photos/qS7H4QV18Y4): Keagan Henman - [artist2-album2.jpg](https://unsplash.com/photos/MS371wlcGPo): Alice Alinari - [artist3-album1.jpg](https://unsplash.com/photos/apYiDRNa-pY): Alice Alinari - [artist4-album1.jpg](https://unsplash.com/photos/ZWDg7v2FPWE): Jr Korpa - [artist4-album2.jpg](https://unsplash.com/photos/RQgKM1h2agA): Alexandru Acea - [artist4-album3.jpg](https://unsplash.com/photos/rX12B5uX7QM): Stormseeker - [artist5-album1.jpg](https://unsplash.com/photos/2FLzsOu-7Do): pawel szvmanski - [artist5-album2.jpg](https://unsplash.com/photos/Q4LxHmaygHA): pawel szvmanski - [artist6-album1.jpg](https://unsplash.com/photos/cTKGZJTMJQU): Drew Dizzy Graham - [artist6-album2.jpg](https://unsplash.com/photos/Qsw_e4EDTF0): Saffu - [artist6-album3.jpg](https://unsplash.com/photos/m82uh_vamhg): Vicko Mozara #### artists - [joe.jpg](https://unsplash.com/photos/k7UKO-tT5QU): Natalie Runnerstrom - [woman.jpeg](https://unsplash.com/photos/w8wpFqiMpW8): Daniel Monteiro #### news - concert.jpeg: Adobe Stock - [concert_heart.jpg](https://unsplash.com/photos/hzgs56Ze49s): Anthony DELANOIX - [recording_studio.jpg](https://unsplash.com/photos/CbOGmLA46JI): Yohann LIBOT #### playlists - [austin.jpg](https://unsplash.com/photos/AlBgcDfDG_s): Carlos Alfonso - [calm.jpg](https://unsplash.com/photos/NTyBbu66_SI): Jared Rice - [coffee.jpg](https://unsplash.com/photos/XOhI_kW_TaM): Nathan Dumlao - [favorite.jpg](https://unsplash.com/photos/60GsdOMRFGc): Karsten Winegeart - [jazz.jpg](https://unsplash.com/photos/BY_KyTwTKq4): dimitri.photography - [piano.jpg](https://unsplash.com/photos/BhfE1IgcsA8): Jordan Whitfield - [reading.jpg](https://unsplash.com/photos/wkgv7I2VTzM): Alexandra Fuller - [studying.jpg](https://unsplash.com/photos/-moT-Deiw1M): Humble Lamb - [workout.jpg](https://unsplash.com/photos/CnEEF5eJemQ): Karsten Winegeart
codelabs/boring_to_beautiful/README.md/0
{ "file_path": "codelabs/boring_to_beautiful/README.md", "repo_id": "codelabs", "token_count": 1097 }
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 'package:url_launcher/url_launcher.dart'; import '../../../shared/classes/classes.dart'; import '../../../shared/providers/providers.dart'; import '../../../shared/views/views.dart'; class ArtistEvents extends StatelessWidget { const ArtistEvents({super.key, required this.artist}); final Artist artist; @override Widget build(BuildContext context) { final theme = ThemeProvider.of(context); final colors = Theme.of(context).colorScheme; return AdaptiveTable<Event>( breakpoint: 720, items: artist.events, itemBuilder: (item, index) { final dateParts = item.date.split('/'); return ListTile( leading: Container( decoration: BoxDecoration( color: colors.primaryContainer, borderRadius: BorderRadius.circular(100), ), child: Padding( padding: const EdgeInsets.all(8.0), child: Text.rich( TextSpan( children: [ TextSpan( text: dateParts[0], style: TextStyle( fontSize: 18.0, color: colors.onPrimaryContainer, ), ), TextSpan( text: '/', style: TextStyle( fontSize: 18.0, color: colors.onPrimaryContainer, ), ), TextSpan( text: dateParts[1], style: TextStyle( fontSize: 14.0, color: colors.onPrimaryContainer, ), ), ], ), ), ), ), title: Text(item.title), subtitle: Text(item.location), trailing: IconButton( icon: const Icon(Icons.info_outline), onPressed: () {}, ), ); }, columns: const <DataColumn>[ DataColumn( label: Text( 'Date', ), numeric: true, ), DataColumn( label: Text( 'Event', ), ), DataColumn( label: Text( 'Location', ), ), DataColumn( label: Text( 'More info', ), ), ], rowBuilder: (item, index) => DataRow.byIndex(index: index, cells: [ DataCell( Text(item.date), ), DataCell( Row(children: [ Expanded(child: Text(item.title)), ]), ), DataCell( Text(item.location), ), DataCell( Clickable( child: Text( item.link, style: TextStyle( color: linkColor.value(theme), decoration: TextDecoration.underline, ), ), onTap: () => launchUrl(Uri.parse('https://docs.flutter.dev')), ), ), ]), ); } }
codelabs/boring_to_beautiful/final/lib/src/features/artists/view/artist_events.dart/0
{ "file_path": "codelabs/boring_to_beautiful/final/lib/src/features/artists/view/artist_events.dart", "repo_id": "codelabs", "token_count": 1907 }
6
// 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:flutter_bloc/flutter_bloc.dart'; import '../../../shared/classes/classes.dart'; import '../../../shared/extensions.dart'; import '../../../shared/playback/bloc/bloc.dart'; import '../../../shared/views/image_clipper.dart'; import '../../../shared/views/views.dart'; class PlaylistSongs extends StatelessWidget { const PlaylistSongs( {super.key, required this.playlist, required this.constraints}); final Playlist playlist; final BoxConstraints constraints; @override Widget build(BuildContext context) { return AdaptiveTable<Song>( items: playlist.songs, breakpoint: 450, columns: const [ DataColumn( label: Padding( padding: EdgeInsets.only(left: 20), child: Text('#'), ), ), DataColumn( label: Text('Title'), ), DataColumn( label: Padding( padding: EdgeInsets.only(right: 10), child: Text('Length'), ), ), ], rowBuilder: (context, index) => DataRow.byIndex( index: index, cells: [ DataCell( HoverableSongPlayButton( hoverMode: HoverMode.overlay, song: playlist.songs[index], child: Center( child: Text( (index + 1).toString(), textAlign: TextAlign.center, ), ), ), ), DataCell( Row(children: [ Padding( padding: const EdgeInsets.all(2), child: ClippedImage(playlist.songs[index].image.image), ), const SizedBox(width: 10), Expanded(child: Text(playlist.songs[index].title)), ]), ), DataCell( Text(playlist.songs[index].length.toHumanizedString()), ), ], ), itemBuilder: (song, index) { return ListTile( onTap: () => BlocProvider.of<PlaybackBloc>(context).add( PlaybackEvent.changeSong(song), ), leading: ClippedImage(song.image.image), title: Text(song.title), subtitle: Text(song.length.toHumanizedString()), ); }, ); } }
codelabs/boring_to_beautiful/final/lib/src/features/playlists/view/playlist_songs.dart/0
{ "file_path": "codelabs/boring_to_beautiful/final/lib/src/features/playlists/view/playlist_songs.dart", "repo_id": "codelabs", "token_count": 1218 }
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. part of 'playback_bloc.dart'; @Freezed() class PlaybackState with _$PlaybackState { const factory PlaybackState({ /// Legal values are between 0 and 1. @Default(0.5) double volume, /// Used to restore the volume after un-muting. double? previousVolume, @Default(false) bool isMuted, @Default(false) bool isPlaying, SongWithProgress? songWithProgress, }) = _PlaybackState; factory PlaybackState.initial() => const PlaybackState(); } /// Helper which enforces our rule that our `song` and `progress` must either /// both be `null`, or both have a real value. @Freezed() class SongWithProgress with _$SongWithProgress { const factory SongWithProgress({ required Duration progress, required Song song, }) = _SongWithProgress; }
codelabs/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_state.dart/0
{ "file_path": "codelabs/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_state.dart", "repo_id": "codelabs", "token_count": 285 }
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'; class HoverToggle extends StatefulWidget { const HoverToggle({ super.key, required this.child, required this.hoverChild, required this.size, this.mode = HoverMode.replace, }); final Widget child; final Widget hoverChild; final HoverMode mode; final Size size; @override State<HoverToggle> createState() => _HoverToggleState(); } class _HoverToggleState extends State<HoverToggle> with MaterialStateMixin { @override Widget build(BuildContext context) { return SizedBox.fromSize( size: widget.size, child: MouseRegion( cursor: isHovered ? SystemMouseCursors.click : MouseCursor.defer, onEnter: (_) => setMaterialState(MaterialState.hovered, true), onExit: (_) => setMaterialState(MaterialState.hovered, false), child: widget.mode == HoverMode.replace ? _buildReplaceableChildren() : _buildChildrenStack(), ), ); } Widget _buildChildrenStack() { Widget child = isHovered ? Opacity(opacity: 0.2, child: widget.child) : widget.child; return Stack( children: <Widget>[ child, if (isHovered) widget.hoverChild, ], ); } Widget _buildReplaceableChildren() => isHovered ? widget.hoverChild : widget.child; } enum HoverMode { replace, overlay }
codelabs/boring_to_beautiful/final/lib/src/shared/views/hover_toggle.dart/0
{ "file_path": "codelabs/boring_to_beautiful/final/lib/src/shared/views/hover_toggle.dart", "repo_id": "codelabs", "token_count": 562 }
9
name: myartist description: A new Flutter project. publish_to: "none" version: 1.0.0 environment: sdk: ^3.2.0 dependencies: adaptive_breakpoints: ^0.1.7 adaptive_components: ^0.0.10 adaptive_navigation: ^0.0.10 animations: ^2.0.11 collection: ^1.18.0 cupertino_icons: ^1.0.6 desktop_window: ^0.4.0 dynamic_color: ^1.6.9 english_words: ^4.0.0 flutter: sdk: flutter flutter_bloc: ^8.1.3 freezed_annotation: ^2.4.1 go_router: ^13.1.0 google_fonts: ^6.1.0 material_color_utilities: any universal_platform: ^1.0.0+1 url_launcher: ^6.2.4 dev_dependencies: build_runner: ^2.4.8 flutter_lints: ^3.0.1 flutter_test: sdk: flutter freezed: ^2.4.6 flutter: uses-material-design: true assets: - assets/images/ - assets/images/playlists/ - assets/images/albums/ - assets/images/artists/ - assets/images/news/
codelabs/boring_to_beautiful/final/pubspec.yaml/0
{ "file_path": "codelabs/boring_to_beautiful/final/pubspec.yaml", "repo_id": "codelabs", "token_count": 399 }
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:flutter/material.dart'; import 'package:go_router/go_router.dart'; import '../../../shared/classes/classes.dart'; import '../../../shared/extensions.dart'; class HomeArtists extends StatelessWidget { const HomeArtists({ super.key, required this.artists, required this.constraints, }); final List<Artist> artists; final BoxConstraints constraints; @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.all(15), child: constraints.isMobile ? Column( children: [ for (final artist in artists) buildTile(context, artist), ], ) : Row(children: [ for (final artist in artists) Flexible( flex: 1, child: buildTile(context, artist), ), ]), ); } Widget buildTile(BuildContext context, Artist artist) { return ListTile( leading: CircleAvatar( backgroundImage: AssetImage(artist.image.image), ), title: Text( artist.updates.first, maxLines: 2, style: context.labelLarge, overflow: TextOverflow.ellipsis, ), subtitle: Padding( padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 0), child: Text(artist.name, style: context.labelMedium), ), onTap: () => GoRouter.of(context).go('/artists/${artist.id}'), ); } }
codelabs/boring_to_beautiful/step_01/lib/src/features/home/view/home_artists.dart/0
{ "file_path": "codelabs/boring_to_beautiful/step_01/lib/src/features/home/view/home_artists.dart", "repo_id": "codelabs", "token_count": 707 }
11