1. 06 Jul, 2023 8 commits
    • Gil Nobrega's avatar
      [a11y] CupertinoSwitch On/Off labels (#127776) · 4f6c8877
      Gil Nobrega authored
      Adds optional visual labels to Cupertino's on/off switch for accessibility.
      4f6c8877
    • Henrique Nascimento's avatar
      Add option for flexible space on material SearchDelegate (#128132) · eebb1d6d
      Henrique Nascimento authored
      This pull request introduces the `buildFlexibleSpace` method to the `SearchDelegate` class in the material library. 
      It allows users to add a flexible space widget to the `AppBar` in a `_SearchPage`, providing more customization options.
      
      This PR does not fix any specific issue as there are no open issues related to this feature.
      eebb1d6d
    • engine-flutter-autoroll's avatar
      Roll Packages from 704207985a21 to 771ec9b42a38 (12 revisions) (#130077) · 7e2f1f5b
      engine-flutter-autoroll authored
      https://github.com/flutter/packages/compare/704207985a21...771ec9b42a38
      
      2023-07-06 stuartmorgan@google.com [ci] Enable LUCI Dart unit tests (flutter/packages#4378)
      2023-07-06 stuartmorgan@google.com [ci] Bring up LUCI Linux custom package tests (flutter/packages#4382)
      2023-07-06 tarrinneal@gmail.com [pigeon] adds generate option for example pigeons (flutter/packages#4370)
      2023-07-06 47866232+chunhtai@users.noreply.github.com [go_router] Allows redirect only GoRoute to be part of RouteMatchList (flutter/packages#4315)
      2023-07-06 49699333+dependabot[bot]@users.noreply.github.com [sign_in]: Bump com.google.android.gms:play-services-auth from 20.5.0 to 20.6.0 in /packages/google_sign_in/google_sign_in_android/android (flutter/packages#4359)
      2023-07-06 41930132+hellohuanlin@users.noreply.github.com [pigeon]fix a crash when casting NSNull to an Array (flutter/packages#4289)
      2023-07-06 hello@kamil.id [google_sign_in_web] Fixes force unwrap on values that can be null (flutter/packages#4374)
      2023-07-05 engine-flutter-autoroll@skia.org Roll Flutter from 590ef2d4 to 35085c39 (3 revisions) (flutter/packages#4379)
      2023-07-05 43054281+camsim99@users.noreply.github.com [camerax] Fixes `unawaited_futures` violations (flutter/packages#4337)
      2023-07-05 stuartmorgan@google.com [ci] Remove `starqlteue` from FTL tests (flutter/packages#4375)
      2023-07-05 stuartmorgan@google.com [tools] Switch to `flutter test` (flutter/packages#4348)
      2023-07-05 joshuapetitma@yahoo.com [flutter_markdown] Add TableCellVerticalAlignment property in markdown stylesheet (flutter/packages#3880)
      
      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 flutter-ecosystem@google.com,rmistry@google.com 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://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
      7e2f1f5b
    • luckysmg's avatar
      [framework] Add textField OCR support for framework side (#96637) · e0ad1296
      luckysmg authored
      iOS OCR keyboard input support.
      e0ad1296
    • fabiancrx's avatar
      [flutter_tools] modify Skeleton template to use ListenableBuilder instead of... · 2f7614a8
      fabiancrx authored
      [flutter_tools] modify Skeleton template to use ListenableBuilder instead of AnimatedBuilder (#128810)
      
      Replaces AnimatedBuilder for ListenableBuilder in the skeleton template
      
      Fixes https://github.com/flutter/flutter/issues/128801
      
      No tests needed
      2f7614a8
    • Ian Hickson's avatar
      Allow long-press gestures to continue even if buttons change. (#127877) · bc49cd1b
      Ian Hickson authored
      Previously, if you changed buttons during a long-press gesture, if it was before the gesture was accepted we would discard it, and if it was after the gesture was accepted we would silently end it without firing any of the relevant events.
      
      This silent cancelation behavior is terrible because it means there's no way for consumers to know what state they're in, so you end up with widgets that thing they're still being long-pressed even though nothing is happening.
      
      We could change the behavior in three ways, as far as I can tell:
      
      - we could send a cancel event when you change buttons. This would introduce a new kind of transition (start->cancel) which I don't think we currently require people to support. This would therefore not fix existing code and would make future code more complicated to handle a really obscure user action that it seems unlikely anyone cares about.
      
      - we could send an end event when you change buttons. This would mean the action commits, even though the user is still holding the mouse button down. This seems slightly better than the previous option but still not ideal as it means nudging the mouse button commits you even though you're still holding the button down.
      
      - we could ignore button changes after the long-press has been accepted.
      
      I implemented the last one in this PR.
      bc49cd1b
    • Michael Goderbauer's avatar
      Enable unreachable_from_main lint - it is stable now!!1 (#129854) · 55b6f049
      Michael Goderbauer authored
      PLUS: clean-up of all the unreachable stuff.
      55b6f049
    • Ian Hickson's avatar
  2. 05 Jul, 2023 13 commits
  3. 04 Jul, 2023 2 commits
  4. 03 Jul, 2023 3 commits
  5. 01 Jul, 2023 2 commits
  6. 30 Jun, 2023 12 commits