1. 03 Feb, 2022 1 commit
  2. 14 Jan, 2022 1 commit
  3. 15 Dec, 2021 1 commit
  4. 04 Dec, 2021 1 commit
  5. 08 Oct, 2021 3 commits
  6. 20 Jul, 2021 1 commit
  7. 15 Jul, 2021 1 commit
  8. 14 Jul, 2021 3 commits
  9. 13 Jul, 2021 2 commits
  10. 11 Jun, 2021 1 commit
  11. 20 May, 2021 1 commit
  12. 28 Apr, 2021 1 commit
  13. 27 Jan, 2021 1 commit
  14. 20 Nov, 2020 1 commit
  15. 02 Nov, 2020 1 commit
  16. 19 Oct, 2020 1 commit
  17. 15 Oct, 2020 1 commit
  18. 18 Sep, 2020 1 commit
  19. 02 Sep, 2020 1 commit
  20. 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
  21. 28 Aug, 2020 1 commit
  22. 21 Aug, 2020 2 commits
  23. 17 Aug, 2020 1 commit
  24. 28 Jul, 2020 1 commit
  25. 10 Jul, 2020 1 commit
  26. 24 Jun, 2020 1 commit
  27. 11 Jun, 2020 1 commit
  28. 10 Jun, 2020 1 commit
  29. 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
  30. 28 May, 2020 1 commit
  31. 27 May, 2020 1 commit
  32. 18 May, 2020 1 commit
  33. 30 Apr, 2020 1 commit
  34. 27 Apr, 2020 1 commit
    • Jose Alba's avatar
      Default to use V2 Slider (#55599) · 7eb3df4a
      Jose Alba authored
      * Instead of changing test I just flipped flag so the test uses the proper slider
      
      * Use Depracated annotation
      
      * Updated depracation notice
      
      * Updated depracation notice again
      
      * Ignore analyze issues
      
      * flutter analyze .
      
      * ignore analyzer
      
      * // ignore: deprecated_member_use
      
      * Ignoring notice
      
      * indentation
      7eb3df4a