1. 12 May, 2022 1 commit
  2. 07 May, 2022 1 commit
  3. 26 Apr, 2022 2 commits
  4. 03 Feb, 2022 1 commit
  5. 14 Jan, 2022 1 commit
  6. 15 Dec, 2021 1 commit
  7. 04 Dec, 2021 1 commit
  8. 08 Oct, 2021 3 commits
  9. 20 Jul, 2021 1 commit
  10. 15 Jul, 2021 1 commit
  11. 14 Jul, 2021 3 commits
  12. 13 Jul, 2021 2 commits
  13. 11 Jun, 2021 1 commit
  14. 20 May, 2021 1 commit
  15. 28 Apr, 2021 1 commit
  16. 27 Jan, 2021 1 commit
  17. 20 Nov, 2020 1 commit
  18. 02 Nov, 2020 1 commit
  19. 19 Oct, 2020 1 commit
  20. 15 Oct, 2020 1 commit
  21. 18 Sep, 2020 1 commit
  22. 02 Sep, 2020 1 commit
  23. 31 Aug, 2020 1 commit
    • Chris Bracken's avatar
      Prefer moreOrLessEquals over closeTo (#64915) · c0ea00ed
      Chris Bracken authored
      Flutter's `moreOrLessEquals` has a few advantages over `closeTo` from
      the `matcher` package:
      
         * It emits the epsilon value in the test result on failure.
         * It uses a named parameter for epsilon, which improves readability
           at the call site.
         * It has a reasonable default for epsilon in cases where something
           more specific isn't required.
      
      Using it also has the nice property that it aids in its own discovery
      when when people go looking for such functionality in new tests.
      
      This change also includes a couple unrelated whitespace formatting cleanups.
      c0ea00ed
  24. 28 Aug, 2020 1 commit
  25. 21 Aug, 2020 2 commits
  26. 17 Aug, 2020 1 commit
  27. 28 Jul, 2020 1 commit
  28. 10 Jul, 2020 1 commit
  29. 24 Jun, 2020 1 commit
  30. 11 Jun, 2020 1 commit
  31. 10 Jun, 2020 1 commit
  32. 08 Jun, 2020 1 commit
    • Greg Spencer's avatar
      Make _RenderSlider not be a semantics container (#58535) · d7321d92
      Greg Spencer authored
      This PR makes _RenderSlider not be a semantics container. This is so that the FocusableActionDetector in the Slider widget will get to aggregate the semantics information, since otherwise Talkback won't focus the slider because it thinks that the focus node doesn't have anything to say (which it doesn't but the _RenderSlider child does). If the _RenderSlider is a semantics container, then it keeps its speakable information to itself, but it isn't the Focus widget, so when the keyboard focus goes to the focus node, the accessibility focus doesn't move.
      
      Since the _RenderSlider is always wrapped by the Slider widget, there's nothing lost in making it not be a container.
      d7321d92
  33. 28 May, 2020 1 commit