-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Comparing changes
Open a pull request
base repository: flutter/flutter
base: 9d32f07e34c3
head repository: flutter/flutter
compare: 7fa932be5c12
- 19 commits
- 35 files changed
- 9 contributors
Commits on Mar 31, 2024
-
Roll Flutter Engine from 34081fea4d59 to 9689390986b7 (1 revision) (#…
…146053) flutter/engine@34081fe...9689390 2024-03-31 [email protected] Finish clangd testing. (flutter/engine#51786) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for b1cdd0f - Browse repository at this point
Copy the full SHA b1cdd0fView commit details -
Roll Flutter Engine from 9689390986b7 to 4f6b832c8e33 (1 revision) (#…
…146055) flutter/engine@9689390...4f6b832 2024-03-31 [email protected] Prefix non-local build config names with ci/ (flutter/engine#51474) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for fd8561a - Browse repository at this point
Copy the full SHA fd8561aView commit details
Commits on Apr 1, 2024
-
Roll Flutter Engine from 4f6b832c8e33 to e9d35f8bfbe2 (1 revision) (#…
…146060) flutter/engine@4f6b832...e9d35f8 2024-04-01 [email protected] Roll Skia from c61843470d89 to b9d078716d40 (1 revision) (flutter/engine#51804) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 0753f22 - Browse repository at this point
Copy the full SHA 0753f22View commit details -
Roll Flutter Engine from e9d35f8bfbe2 to 984a78b04671 (2 revisions) (#…
…146062) flutter/engine@e9d35f8...984a78b 2024-04-01 [email protected] Roll Skia from b9d078716d40 to 45e4d2cbdd4f (2 revisions) (flutter/engine#51806) 2024-04-01 [email protected] Roll Fuchsia Linux SDK from TXxMINUq7JduIRX8K... to 5W6KVvHCGwWHBjm2m... (flutter/engine#51805) Also rolling transitive DEPS: fuchsia/sdk/core/linux-amd64 from TXxMINUq7Jdu to 5W6KVvHCGwWH If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 984c69a - Browse repository at this point
Copy the full SHA 984c69aView commit details -
Add
DataColumn.headingRowAlignmentforDataTable(#144006)fixes [[`DataTable`] Unable to center the label of a DataColumn without side effects](#143340) ### Code sample <details> <summary>expand to view the code sample</summary> ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @OverRide Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: MaterialApp( home: Material( child: DataTable( columns: <DataColumn>[ DataColumn( headingRowAlignment: MainAxisAlignment.center, onSort: (int columnIndex, bool ascending) {}, label: const Text('Header'), ), ], sortColumnIndex: 0, rows: const <DataRow>[ DataRow( cells: <DataCell>[ DataCell(Center(child: Text('Data'))), ], ), ], ), ), ), ); } } ``` </details> ### Center `DataColumn.mainAxisAlignment` without sort arrow  ### Center `DataColumn.mainAxisAlignment` with sort arrow 
Configuration menu - View commit details
-
Copy full SHA for 40dda2b - Browse repository at this point
Copy the full SHA 40dda2bView commit details -
Deprecate
ButtonBar,ButtonBarThemeData, and `ThemeData.buttonBar……Theme` (#145523) fixes [Deprecate `ButtonBar`](#127955) ### Code sample <details> <summary>expand to view the code sample</summary> ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @OverRide Widget build(BuildContext context) { return MaterialApp( theme: ThemeData( buttonBarTheme: const ButtonBarThemeData( alignment: MainAxisAlignment.spaceEvenly, ), ), home: Scaffold( body: ButtonBar( alignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ TextButton( onPressed: () {}, child: const Text('Button 1'), ), TextButton( onPressed: () {}, child: const Text('Button 2'), ), TextButton( onPressed: () {}, child: const Text('Button 3'), ), ], ), ), ); } } ``` </details> ## Data driven fix ### Before executing `dart fix --apply` ```dart return MaterialApp( theme: ThemeData( buttonBarTheme: const ButtonBarThemeData( alignment: MainAxisAlignment.spaceEvenly, ), ), home: Scaffold( body: ButtonBar( alignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ TextButton( onPressed: () {}, child: const Text('Button 1'), ), TextButton( onPressed: () {}, child: const Text('Button 2'), ), TextButton( onPressed: () {}, child: const Text('Button 3'), ), ], ), ), ); ``` ### After executing `dart fix --apply` ```dart return MaterialApp( theme: ThemeData( ), home: Scaffold( body: OverflowBar( alignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ TextButton( onPressed: () {}, child: const Text('Button 1'), ), TextButton( onPressed: () {}, child: const Text('Button 2'), ), TextButton( onPressed: () {}, child: const Text('Button 3'), ), ], ), ), ); ```
Configuration menu - View commit details
-
Copy full SHA for e85340e - Browse repository at this point
Copy the full SHA e85340eView commit details -
Roll Flutter Engine from 984a78b04671 to bf348cd73d49 (1 revision) (#…
…146065) flutter/engine@984a78b...bf348cd 2024-04-01 [email protected] Roll Skia from 45e4d2cbdd4f to 3093d7c90fb2 (1 revision) (flutter/engine#51807) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 5537688 - Browse repository at this point
Copy the full SHA 5537688View commit details -
Roll Flutter Engine from bf348cd73d49 to dd4f5cd5c9d5 (1 revision) (#…
…146071) flutter/engine@bf348cd...dd4f5cd 2024-04-01 [email protected] Roll Skia from 3093d7c90fb2 to da4cd3390be9 (1 revision) (flutter/engine#51811) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 888cf95 - Browse repository at this point
Copy the full SHA 888cf95View commit details -
Flutter Gradle Plugin: add versionName and versionCode to FlutterExte…
…nsion (#146044) This PR is a follow-up of a previous PR of mine: #141417. It was unfinished, i.e. I only implemented it and used it in `examples/hello_world`. No "flutter create" templates were modified. This change is theoretically breaking, but in practice, I am pretty sure nobody uses this. It was not accounced anywhere, the only app using it is `examples/hello_world`. I did not do that (that=update docs and templates) because I wanted a solution that is idiomatic in both Gradle and Kotlin, and only now I found time to do this. ### Without this change ```groovy defaultConfig { applicationId = "io.flutter.examples.hello_world" minSdk = flutter.minSdkVersion targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode() versionName = flutter.versionName() } ``` ### With this change ```groovy defaultConfig { applicationId = "io.flutter.examples.hello_world" minSdk = flutter.minSdkVersion targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode versionName = flutter.versionName } ``` Idiomatic getter - yay! It's consistent between assignment of all four props. ### Issue fixes #146067 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. --------- Co-authored-by: Reid Baker <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ec82f0d - Browse repository at this point
Copy the full SHA ec82f0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a187cc7 - Browse repository at this point
Copy the full SHA a187cc7View commit details -
Roll Packages from 51faaa1 to d5aff19 (3 revisions) (#146081)
flutter/packages@51faaa1...d5aff19 2024-03-30 [email protected] Roll Flutter from 8528881 to d12ba5c (21 revisions) (flutter/packages#6440) 2024-03-29 [email protected] Roll Flutter from 89ea492 to 8528881 (11 revisions) (flutter/packages#6436) 2024-03-29 [email protected] [two_dimensional_scrollables] Infinite TableView (flutter/packages#6411) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC [email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 181b69b - Browse repository at this point
Copy the full SHA 181b69bView commit details -
Roll Flutter Engine from dd4f5cd5c9d5 to d33666d90916 (3 revisions) (#…
…146083) flutter/engine@dd4f5cd...d33666d 2024-04-01 [email protected] Roll Skia from da4cd3390be9 to dacd62255b8d (1 revision) (flutter/engine#51813) 2024-04-01 [email protected] Roll buildroot to dcd71b5b237e1e58f2ad8a7e51bead0c2a3755a9 (flutter/engine#51812) 2024-04-01 [email protected] Roll Dart SDK from b735974580e7 to aa6544b48523 (1 revision) (flutter/engine#51810) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for bd90954 - Browse repository at this point
Copy the full SHA bd90954View commit details -
Fix SliverMainAxisGroup layout in reverse (#145572)
Fixes #145068 The original tests for SliverMainAxisGroup did not actually check where the child was painted (#126596). Followed the same pattern in RenderSliverMultiBoxAdaptor: https://github.com/flutter/flutter/blob/11c034f0371eb28576d41a0c218ccae6b38e7702/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart#L666
Configuration menu - View commit details
-
Copy full SHA for 6d7922f - Browse repository at this point
Copy the full SHA 6d7922fView commit details -
Roll Flutter Engine from d33666d90916 to 8dff6b833fe2 (3 revisions) (#…
…146087) flutter/engine@d33666d...8dff6b8 2024-04-01 [email protected] Use the stripped Vulkan validation library in Android engine builds by default (flutter/engine#51628) 2024-04-01 [email protected] [Impeller] Set RGBA8888 as the default Vulkan color format before the app acquires a surface (flutter/engine#51770) 2024-04-01 [email protected] Never panic in `finally { ... }`, check output logs on success only. (flutter/engine#51814) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 8c3575d - Browse repository at this point
Copy the full SHA 8c3575dView commit details -
Roll Flutter Engine from 8dff6b833fe2 to e6f19409b613 (2 revisions) (#…
…146093) flutter/engine@8dff6b8...e6f1940 2024-04-01 [email protected] Roll Skia from dacd62255b8d to 40c436a785fa (3 revisions) (flutter/engine#51817) 2024-04-01 [email protected] Remove unused and untested timeline data branch for `scenario_app` (flutter/engine#51816) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 1e20714 - Browse repository at this point
Copy the full SHA 1e20714View commit details -
Add test for animated_container.0.dart API example. (#145995)
This PR contributes to #130459 ### Description - Adds test for `examples/api/test/widgets/implicit_animations/animated_container.0_test.dart`
Configuration menu - View commit details
-
Copy full SHA for 5850651 - Browse repository at this point
Copy the full SHA 5850651View commit details -
Add info strings to code blocks. (#146085)
In preparation to add the lint `missing_code_block_language_in_doc_comment`, added info strings to a bunch of fenced code blocks. Related to issue: https://github.com/dart-lang/linter/issues/4904 ## Pre-launch Checklist - [X] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [X] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [X] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [X] I signed the [CLA]. - [X] I listed at least one issue that this PR fixes in the description above. - [X] I updated/added relevant documentation (doc comments with `///`). - [X] I added new tests to check the change I am making, or this PR is [test-exempt]. - [X] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [X] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene [test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [Features we expect every widget to implement]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat [Data Driven Fixes]: https://github.com/flutter/flutter/wiki/Data-driven-Fixes
Configuration menu - View commit details
-
Copy full SHA for 9fd9f04 - Browse repository at this point
Copy the full SHA 9fd9f04View commit details -
Refactor realm_checker (#145905)
Refactor realm_checker suite in order to reduce testing logic in test.dart and allow for later implementing package:test onto the existing realm_checker tests Part of #145482 *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].*
Configuration menu - View commit details
-
Copy full SHA for f8a06f6 - Browse repository at this point
Copy the full SHA f8a06f6View commit details -
Roll Flutter Engine from e6f19409b613 to ea93c5d91b12 (3 revisions) (#…
…146100) flutter/engine@e6f1940...ea93c5d 2024-04-01 [email protected] [Impeller] Add a TextureGLES API for wrapping a framebuffer and use it to implement OpenGL FBO targets in the embedder library (flutter/engine#51269) 2024-04-01 [email protected] Remove `testing/android_background_image` which does not run/exist on CI. (flutter/engine#51815) 2024-04-01 [email protected] [Impeller] Avoid loading redundant Vulkan extensions. (flutter/engine#51818) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Configuration menu - View commit details
-
Copy full SHA for 7fa932b - Browse repository at this point
Copy the full SHA 7fa932bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 9d32f07e34c3...7fa932be5c12