1. 09 Feb, 2023 19 commits
  2. 08 Feb, 2023 21 commits
    • Loïc Sharma's avatar
      [Tool] [Windows] Output build duration (#120311) · ef854a3d
      Loïc Sharma authored
      * [Tool][Windows] Output build duration
      
      * Tweak
      
      * Format
      ef854a3d
    • Drew Roen's avatar
      Update .cirrus.yml (#120315) · b4908f37
      Drew Roen authored
      b4908f37
    • engine-flutter-autoroll's avatar
      Manual roll Flutter Engine from cc4ca6a06ab3 to 89c8a1393d4b (6 revisions) (#120319) · 4ddf0a89
      engine-flutter-autoroll authored
      * ef9d3e9ad Roll Skia from d52b1a24c407 to 99a797d497fe (1 revision) (flutter/engine#39489)
      
      * 6a2de773e Revert "[ios_platform_view] MaskView pool to reuse maskViews. (#38989)" (flutter/engine#39490)
      
      * 62b49804f Disable mouse-input-test (flutter/engine#39492)
      
      * 28c3c8139 Roll Skia from 99a797d497fe to 638bfdc9e23c (4 revisions) (flutter/engine#39494)
      
      * 0d5653352 Roll Fuchsia Linux SDK from HGN3rmf37VA5Sc0e1... to B6PQF-BmeXvmNZJy5... (flutter/engine#39493)
      
      * 89c8a1393 Migrate iOS and Android to use pushRouteInformation (flutter/engine#39372)
      4ddf0a89
    • Andrew Kolos's avatar
      Reland "Stop recursively including assets from asset directories" (#120312) · 4a966088
      Andrew Kolos authored
      * stop recursively including assets from asset directories
      
      * remove unused imports
      
      * lint
      4a966088
    • engine-flutter-autoroll's avatar
      Manual roll Flutter Engine from bdc5b6b768f6 to cc4ca6a06ab3 (8 revisions) (#120309) · 2303f422
      engine-flutter-autoroll authored
      * 6c9f0c00d [macOS] Support text input autocomplete (flutter/engine#39460)
      
      * 08f50504d Roll Skia from f30529658275 to 7cac214d0f4b (1 revision) (flutter/engine#39478)
      
      * 9aa088df0 Roll Fuchsia Linux SDK from aRqjqB76Z2gNQsrTA... to HGN3rmf37VA5Sc0e1... (flutter/engine#39480)
      
      * 24fd06e79 [Impeller] Fix stroke cap drawing not correct. (flutter/engine#39481)
      
      * c0b1b2ccf Roll Fuchsia Mac SDK from uYw6cCpJIpQa42G4O... to vV4hr9qgSXTVhRzEr... (flutter/engine#39485)
      
      * 586378ff1 Roll Skia from 7cac214d0f4b to 4d064e82ce8e (1 revision) (flutter/engine#39486)
      
      * 81f6c3393 Roll Skia from 4d064e82ce8e to d52b1a24c407 (4 revisions) (flutter/engine#39487)
      
      * cc4ca6a06 Manual roll Dart SDK from a507a9057730 to 9c68f2a74491 (11 revisions) (flutter/engine#39488)
      2303f422
    • Hans Muller's avatar
    • Qun Cheng's avatar
      51227a9a
    • Camille Simon's avatar
      3a514175
    • Gabriel Terwesten's avatar
      Don't call `PlatformViewCreatedCallback`s after `AndroidViewController` is disposed (#116854) · ec289f1e
      Gabriel Terwesten authored
      * Don't call `PlatformViewCreatedCallback`s after `AndroidViewController` is disposed
      
      Before this change it was possible that, if a `AndroidViewController` was disposed before we got the notification that the platform view was created, `PlatformViewCreatedCallback`s where called even after calling `AndroidViewController.dispose`.
      
      Also makes `_PlatformViewLinkState._onPlatformViewCreated` more carful to only call `setState` when mounted.
      
      Closes #84628
      Closes #96384
      
      * Allow all widgets to remove listeners from controller
      
      * Remove assert
      
      * Add expectations to test
      ec289f1e
    • engine-flutter-autoroll's avatar
      Roll Plugins from 6f985d57b04b to f59c08db3f27 (3 revisions) (#120303) · bfea22db
      engine-flutter-autoroll authored
      * 40c2e1169 [local_auth_android] update java complie sdk version to green tree (flutter/plugins#7121)
      
      * 81c6fd07a Update release tooling to give a workaround for predictable failing case https://github.com/flutter/flutter/issues/120116 (flutter/plugins#7111)
      
      * f59c08db3 Roll Flutter from 3c3c9a1b to e8eac0d0 (21 revisions) (flutter/plugins#7122)
      bfea22db
    • Eilidh Southren's avatar
      Fix BottomAppBar & BottomSheet M3 shadow (#119819) · 0a97ef85
      Eilidh Southren authored
      * remove m3 shadows
      
      * fix
      
      * fix that test over there
      0a97ef85
    • MarchMore's avatar
      Removed "if" on resolving text color at "SnackBarAction" (#120050) · 0588b925
      MarchMore authored
      * Removed "if" on resolving text color at "SnackBarAction"
      
      Removed multiple "if" for "resolveForegroundColor" method at "SnackBarAction". At least one of the multiple "if" ("defaults.actionTextColor is MaterialStateColor") led to not applying a custom set color (e.g. MaterialColor "Colors.red") for the action text when using Material 3.
      
      The second "if" ("snackBarTheme.actionTextColor is MaterialStateColor") also makes no sense then as the set color of the Theme would lead to the same blocking behaviour of manual color assignment.
      
      The last remaining "if" ("widget.textColor is MaterialStateColor") will be unnecessary if the other "if" will be removed, as it will be resolved in the code right afterwards.
      
      The three "if" also seems to block the usage of the custom text color or the color at all if the widget is in the "MaterialState.disabled" state.
      
      * Adjusted recent modifications to SnackBarAction's text color resolution
      
      * Now the "widget.textColor" is checked if it is set.
        * If it is a MaterialStateColor, it will be used
        * Otherwise continue with normal resolution (It will be used in the resolution anyways because it's set)
      
      * Repeat same steps with "snackBarTheme.actionTextColor" if previous was not set
      
      * Repeat same steps with "defaults.actionTextColor" if previous was not set
      
      * Reverted the auto formatting changes
      
      * Added two test cases to "snack_bar_test"
      
       * Test for setting a MaterialColor to a SnackBarAction' label (M3)
       * Test for setting a MaterialStateColor to a SnackBarAction' label (M3)
      
      * Renamed test cases "Snackbar labels can be colored"
      0588b925
    • Hans Muller's avatar
    • engine-flutter-autoroll's avatar
      Manual roll Flutter Engine from f310ffd1461a to bdc5b6b768f6 (12 revisions) (#120261) · d8154fde
      engine-flutter-autoroll authored
      * 0e25c0a1c [impeller] ensure full glyphs respect alpha (flutter/engine#39377)
      
      * 684cfe292 Add helpers for updating arm tools in CIPD (flutter/engine#39458)
      
      * e6cf1c532 Roll Skia from 87dbc81b421f to bd48f82dcabb (8 revisions) (flutter/engine#39459)
      
      * bf8547dd9 Override _accessibilityHitTest to fix IOS 16 semantics issues  (flutter/engine#38794)
      
      * 2e225eb6b Manual roll Dart SDK from a507a9057730 to 5c74c8b64dec (9 revisions) (flutter/engine#39462)
      
      * ca05af79e [Windows] Remove accessibility root assumptions (flutter/engine#39441)
      
      * 3e9eb95ea Roll Skia from bd48f82dcabb to f30529658275 (7 revisions) (flutter/engine#39463)
      
      * 85958c2ea Update malioc analysis golden file (flutter/engine#39461)
      
      * 7098858dc Roll Fuchsia Mac SDK from zYEsaCaA1cokDUU43... to uYw6cCpJIpQa42G4O... (flutter/engine#39466)
      
      * bc8d3fca7 Revert "Manual roll Dart SDK from a507a9057730 to 5c74c8b64dec (9 revisions) (#39462)" (flutter/engine#39470)
      
      * 28837b3ad Revert "Revert "Manual roll Dart SDK from a507a9057730 to 5c74c8b64dec (9 revisions) (#39462)" (#39470)" (flutter/engine#39475)
      
      * bdc5b6b76 Revert "Revert "Revert "Manual roll Dart SDK from a507a9057730 to 5c74c8b64dec (9 revisions) (#39462)" (#39470)" (#39475)" (flutter/engine#39477)
      d8154fde
    • Mouad Debbar's avatar
      7f578fb0
    • Qun Cheng's avatar
      Add trackOutlineColor for Switch and SwitchListTile (#120140) · 3f98c0f8
      Qun Cheng authored
      * Add trackOutlineColor for Switch and SwitchListTile
      
      * Update tests
      
      * Update test
      
      * Clean up unnecessary StatefulBUilder in tests
      
      * Fix failed test
      
      ---------
      Co-authored-by: 's avatarQun Cheng <quncheng@google.com>
      3f98c0f8
    • xubaolin's avatar
      fix a TextFormField bug (#120182) · 6e7f5803
      xubaolin authored
      * fix a TextFormField bug
      
      * review feedback
      6e7f5803
    • Zachary Anderson's avatar
    • Renzo Olivares's avatar
      Add support for extending selection to paragraph on ctrl + shift + arrow... · 99b6bd8c
      Renzo Olivares authored
      Add support for extending selection to paragraph on ctrl + shift + arrow up/down on Non-Apple platforms (#120151)
      
      * Add support for extending selection to paragraph on ctrl + shift + arrow up/down for common keyboard actions
      
      * Add ctrl + shift + arrow up/down common text editing shortcuts/actions
      
      * fix analyzer
      
      ---------
      Co-authored-by: 's avatarRenzo Olivares <roliv@google.com>
      99b6bd8c
    • engine-flutter-autoroll's avatar
      Roll Flutter Engine from f310ffd1461a to 7098858dc0a5 (9 revisions) (#120251) · f94fa7ea
      engine-flutter-autoroll authored
      * 0e25c0a1c [impeller] ensure full glyphs respect alpha (flutter/engine#39377)
      
      * 684cfe292 Add helpers for updating arm tools in CIPD (flutter/engine#39458)
      
      * e6cf1c532 Roll Skia from 87dbc81b421f to bd48f82dcabb (8 revisions) (flutter/engine#39459)
      
      * bf8547dd9 Override _accessibilityHitTest to fix IOS 16 semantics issues  (flutter/engine#38794)
      
      * 2e225eb6b Manual roll Dart SDK from a507a9057730 to 5c74c8b64dec (9 revisions) (flutter/engine#39462)
      
      * ca05af79e [Windows] Remove accessibility root assumptions (flutter/engine#39441)
      
      * 3e9eb95ea Roll Skia from bd48f82dcabb to f30529658275 (7 revisions) (flutter/engine#39463)
      
      * 85958c2ea Update malioc analysis golden file (flutter/engine#39461)
      
      * 7098858dc Roll Fuchsia Mac SDK from zYEsaCaA1cokDUU43... to uYw6cCpJIpQa42G4O... (flutter/engine#39466)
      f94fa7ea
    • Greg Price's avatar
      Add test for RenderProxyBoxMixin; clarify doc, resolve TODO (#117664) · cd125e1f
      Greg Price authored
      * Add test for RenderProxyBoxMixin; clarify doc, resolve TODO
      
      The TODO comment suggested this mixin would no longer be needed once
      a Dart issue on inherited constructors was fixed:
        https://github.com/dart-lang/sdk/issues/31543
      That issue is now long since fixed, so I went to go carry out the TODO.
      
      But in doing so, I realized that the mixin's documentation was more
      right than the TODO comment: even with that issue fixed, there is a
      legitimate use case for this mixin, namely to reuse the implementation
      of RenderProxyBox in a class that also inherits from some other base
      class.  Moreover, searching GitHub I found an example of a library
      that makes real use of that capability.
      
      So I think the right resolution is to accept that this separation
      is useful and delete the TODO.
      
      Then, add a test with an extremely simplified sketch of that
      real-world example.  In case someone in the future attempts to
      simplify this mixin away, the test will point us at the use case
      that would be broken by such a change.
      
      Also remove the only in-tree use of the mixin, which was redundant;
      and expand the mixin's documentation to advise about that case.
      
      * Tweak formatting
      Co-authored-by: 's avatarMichael Goderbauer <goderbauer@google.com>
      
      * Cut comments
      
      ---------
      Co-authored-by: 's avatarMichael Goderbauer <goderbauer@google.com>
      cd125e1f