1. 13 Mar, 2023 1 commit
  2. 23 Feb, 2023 1 commit
  3. 07 Feb, 2023 1 commit
  4. 24 Jan, 2023 1 commit
  5. 17 Jan, 2023 1 commit
  6. 03 Jan, 2023 1 commit
  7. 20 Dec, 2022 1 commit
  8. 19 Dec, 2022 2 commits
  9. 28 Nov, 2022 2 commits
  10. 15 Nov, 2022 1 commit
  11. 24 Oct, 2022 1 commit
  12. 27 Sep, 2022 1 commit
  13. 19 Sep, 2022 1 commit
  14. 14 Sep, 2022 1 commit
  15. 22 Aug, 2022 1 commit
  16. 19 Jul, 2022 1 commit
  17. 11 Jul, 2022 1 commit
  18. 08 Jul, 2022 1 commit
  19. 15 Jun, 2022 1 commit
  20. 08 Jun, 2022 1 commit
  21. 07 Jun, 2022 1 commit
  22. 27 May, 2022 1 commit
  23. 25 May, 2022 1 commit
  24. 10 May, 2022 1 commit
  25. 27 Apr, 2022 1 commit
  26. 18 Apr, 2022 1 commit
  27. 14 Apr, 2022 1 commit
  28. 23 Mar, 2022 1 commit
  29. 14 Mar, 2022 1 commit
  30. 10 Mar, 2022 1 commit
  31. 11 Feb, 2022 1 commit
  32. 01 Dec, 2021 1 commit
  33. 08 Oct, 2021 3 commits
  34. 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
  35. 29 Sep, 2021 1 commit
  36. 28 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Add smoke tests for all the examples, fix 17 broken examples. (#89021) · ab2b0851
      Greg Spencer authored
      This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework.
      
      The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead.
      
      The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
      ab2b0851