1. 24 Jan, 2024 1 commit
  2. 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
  3. 15 Dec, 2023 1 commit
  4. 11 Sep, 2023 1 commit
  5. 14 Aug, 2023 1 commit
  6. 09 Aug, 2023 1 commit
  7. 08 Aug, 2023 1 commit
  8. 07 Aug, 2023 1 commit
  9. 22 Jul, 2023 1 commit
  10. 12 Jun, 2023 1 commit
  11. 30 May, 2023 1 commit
  12. 02 Feb, 2023 1 commit
  13. 01 Feb, 2023 1 commit
  14. 23 Dec, 2022 1 commit
  15. 21 Dec, 2022 1 commit
  16. 20 Dec, 2022 1 commit
  17. 20 May, 2022 1 commit
  18. 21 Apr, 2022 1 commit
  19. 08 Feb, 2022 1 commit
  20. 03 Feb, 2022 1 commit
  21. 13 Jan, 2022 1 commit
  22. 08 Oct, 2021 3 commits
  23. 30 Aug, 2021 1 commit
  24. 02 Aug, 2021 1 commit
  25. 27 Jul, 2021 1 commit
  26. 16 Jul, 2021 1 commit
  27. 15 Jul, 2021 1 commit
  28. 14 Jul, 2021 3 commits
  29. 13 Jul, 2021 2 commits
  30. 02 Jun, 2021 1 commit
  31. 12 Apr, 2021 1 commit
  32. 14 Jan, 2021 1 commit
  33. 01 Dec, 2020 1 commit
  34. 26 Nov, 2020 1 commit
    • Pierre-Louis's avatar
      Update FAB elevation to match spec (#69312) · 183f0e79
      Pierre-Louis authored
      * Update floating_action_button.dart
      
      * Fix default hover elevation
      
      * revert letter spacing change
      
      * add test
      
      * Update floating_action_button.dart
      
      * Update floating_action_button_test.dart
      183f0e79
  35. 18 Nov, 2020 1 commit