1. 28 Feb, 2024 1 commit
  2. 27 Feb, 2024 2 commits
  3. 22 Feb, 2024 1 commit
  4. 20 Feb, 2024 1 commit
  5. 24 Jan, 2024 1 commit
  6. 22 Jan, 2024 1 commit
    • Hassan Toor's avatar
      [web] - Fix broken `TextField` in semantics mode when it's a sibling of `Navigator` (#138446) · 59e892d3
      Hassan Toor authored
      When a `TextField` is rendered before a `Navigator`, it breaks in semantics mode.  This is because the framework generates the incorrect semantics tree (excludes the TextField) and when that tree gets sent to the engine, we don't get the signal to create the corresponding `<input>` element.
      
      This happens for a few reasons:
      * `ModalBarrier` uses `BlockSemantics` to drop the semantics of routes beneath the current route in `Navigator`
      * `ModalBarrier` mistakenly recognizes the widget outside of the `Navigator` to be its sibling
      *  So we end up dropping the semantics node of the `TextField` rendered before it. 
      
      The fix is to let `Navigator` generate a semantics node so that `ModalBarrier` doesn't mistakenly think widgets outside of `Navigator` are its siblings.  
      
      `Navigator` doesn't currently do this, which causes all the nodes generated from its widget subtree to be directly attached to the parent semantics node above `Navigator` - since this is also the parent of `TextField`, it considers them siblings. 
      
      Fixes https://github.com/flutter/flutter/issues/129324
      59e892d3
  7. 19 Jan, 2024 1 commit
  8. 15 Dec, 2023 1 commit
  9. 03 Nov, 2023 1 commit
  10. 26 Oct, 2023 1 commit
  11. 09 Oct, 2023 1 commit
  12. 13 Sep, 2023 1 commit
  13. 11 Sep, 2023 1 commit
  14. 29 Aug, 2023 1 commit
  15. 25 Jul, 2023 1 commit
  16. 13 Jun, 2023 1 commit
    • Qun Cheng's avatar
      Update unit tests in material library for Material 3 (#128725) · a5f8b64e
      Qun Cheng authored
      Updates most of the unit tests in the packages/flutter/test/material folder so that they'll pass if ThemeData.useMaterial3 defaults to true.
      
      All of the tests have wired useMaterial3 to false and will need to be updated with a M3 version.
      
      related to #127064
      a5f8b64e
  17. 09 Jun, 2023 1 commit
  18. 31 May, 2023 1 commit
    • Renzo Olivares's avatar
      Fix bottom sheet rebuilding when tapping (#127526) · 83f19be2
      Renzo Olivares authored
      This fixes an issue where the bottom sheet would rebuild when `enableDrag` is set to true on every tap. This is because `DragGestureRecognizer` would win the arena by default and dispatch the `drag` callbacks (in `acceptGesture`) even though it had not met the drag threshold. This changes keep the default behavior of `DragGestureRecognizer` the same, but adds a parameter `onlyAcceptDragOnThreshold` that a user can use to stop drag callbacks from being fired when the drag threshold has not been met.
      
      Fixes #126833
      83f19be2
  19. 23 May, 2023 1 commit
  20. 27 Apr, 2023 1 commit
  21. 19 Mar, 2023 1 commit
  22. 08 Mar, 2023 1 commit
  23. 06 Mar, 2023 1 commit
    • Eilidh Southren's avatar
      Bottom appbar/sheet shadow property (#121406) · d696b051
      Eilidh Southren authored
      * add shadowColor property
      
      * add to bottom app bar
      
      * add test
      
      * update m2/m3 diffs
      
      * reorder debug test
      
      * finalize
      
      * remove crswap
      
      * update doc comments
      
      * add m2 shadow back
      
      * add const
      
      * update docs
      
      * update docs
      
      * comment replies
      
      * make param non-null
      
      * indentation fix
      
      * doc fix
      d696b051
  24. 24 Feb, 2023 1 commit
  25. 11 Feb, 2023 1 commit
  26. 08 Feb, 2023 1 commit
  27. 20 Dec, 2022 1 commit
    • harperl-lgtm's avatar
      Implemented Scrim Focus for BottomSheet (#116743) · 7f7a8778
      harperl-lgtm authored
      * Implemented Scrim Focus for BottomSheet so that assistive technology users can focus and tap on the scrim to close the BottomSheet, which they could not do before the change . The Scrim Focus's size changes to avoid overlapping the BottomSheet.
      7f7a8778
  28. 13 Oct, 2022 1 commit
  29. 11 Oct, 2022 1 commit
  30. 09 Aug, 2022 1 commit
  31. 19 Jul, 2022 1 commit
  32. 13 May, 2022 1 commit
  33. 27 Apr, 2022 1 commit
  34. 14 Apr, 2022 1 commit
  35. 22 Mar, 2022 1 commit
  36. 08 Mar, 2022 1 commit
  37. 08 Dec, 2021 1 commit
  38. 01 Dec, 2021 1 commit
  39. 11 Nov, 2021 1 commit