1. 05 Jun, 2023 1 commit
    • Kate Lovett's avatar
      Remove scrollbar deprecations isAlwaysShown and hoverThickness (#127351) · a3ddead1
      Kate Lovett authored
      The deprecated `[RawScrollbar/Scrollbar/CupertinoScrollbar/ScrollbarThemeData].isAlwaysShown` has expired and is removed in thi PR.
      Also, `Scrollbar.hoverThickness` is also removed after having expired.
      
      The replacement for `isAlwaysShown` is `thumbVisibility`. This deprecation was introduced in #96957. The name change came from new behaviors like a track that is conditionally visible. Since the original API only referred to the thumb, the name was changed to reflect this intention. This change is supported by dart fix. ✅ 
      
      The replacement for `hoverThickness` is `ScrollbarThemeData.thickness`, which is a MaterialStateProperty that allows for the thickness to respond to multiple states including hover. This deprecation was introduced in #97173. This change is not supported by dart fix. 😞  
      
      Part of https://github.com/flutter/flutter/issues/127042
      a3ddead1
  2. 22 Mar, 2023 1 commit
  3. 09 Dec, 2022 1 commit
  4. 19 Oct, 2022 1 commit
  5. 16 Sep, 2022 1 commit
  6. 25 May, 2022 1 commit
  7. 27 Apr, 2022 1 commit
  8. 14 Apr, 2022 1 commit
  9. 03 Feb, 2022 1 commit
  10. 28 Jan, 2022 1 commit
  11. 26 Jan, 2022 1 commit
  12. 24 Jan, 2022 1 commit
  13. 14 Jan, 2022 1 commit
  14. 04 Dec, 2021 1 commit
  15. 01 Dec, 2021 1 commit
  16. 04 Oct, 2021 1 commit
    • Greg Spencer's avatar
      Clean up examples, remove section markers and --template args (#91133) · fd9ce277
      Greg Spencer authored
      This does a cleanup of the examples, removing all of the "section" markers and extra comments that we don't need anymore now that the samples are no longer in the source code. It also removes the --template arguments from the {@tool dartpad} and {@tool sample} directives, since those are no longer used. It converts two examples that I discovered were still embedded into linked examples in the examples folder.
      
      I didn't delete the templates from the snippets config folder yet, because there are still embedded samples in the dart:ui package from the engine that use them. Once dart:ui no longer uses the templates, they can be removed.
      
      I bumped the version of the snippets package to pick up a change that allows removal of the --template argument.
      fd9ce277
  17. 25 Aug, 2021 1 commit
    • Greg Spencer's avatar
      Extract Sample code into examples/api (#87280) · 33403bd2
      Greg Spencer authored
      This extracts the sample code out from the API doc comments, and places them in separate files on disk, allowing running of the examples locally, testing them, and building of slightly larger examples.
      33403bd2
  18. 04 Aug, 2021 1 commit
  19. 02 Jun, 2021 1 commit
  20. 17 May, 2021 2 commits
  21. 13 May, 2021 1 commit
  22. 11 May, 2021 1 commit
  23. 10 May, 2021 1 commit
  24. 17 Mar, 2021 1 commit
  25. 15 Mar, 2021 1 commit
  26. 10 Mar, 2021 1 commit
  27. 18 Feb, 2021 1 commit
  28. 29 Jan, 2021 1 commit
  29. 19 Jan, 2021 1 commit
  30. 16 Jan, 2021 1 commit
  31. 15 Jan, 2021 1 commit
  32. 14 Jan, 2021 1 commit
  33. 13 Jan, 2021 1 commit
  34. 23 Dec, 2020 1 commit
  35. 17 Dec, 2020 1 commit
  36. 11 Dec, 2020 1 commit
  37. 02 Nov, 2020 1 commit
  38. 30 Oct, 2020 1 commit
  39. 28 Oct, 2020 1 commit
    • Greg Spencer's avatar
      Remove `nullOk` in `MediaQuery.of` (#68736) · 55289324
      Greg Spencer authored
      Adds MediaQuery.maybeOf to replace calling MediaQuery.of(context, nullOk: true), and removes the nullOk parameter. Also changes MediaQuery.of to return a non-nullable value, and removes many instances of the ! operator, reducing the possible places where a null dereference could occur.
      55289324