1. 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
  2. 16 Sep, 2021 1 commit
  3. 18 Aug, 2021 1 commit
  4. 16 Aug, 2021 1 commit
  5. 03 Aug, 2021 1 commit
  6. 14 Jul, 2021 1 commit
  7. 09 Jul, 2021 1 commit
  8. 15 Jun, 2021 1 commit
  9. 27 May, 2021 1 commit
  10. 13 May, 2021 1 commit
  11. 28 Apr, 2021 1 commit
  12. 31 Mar, 2021 1 commit
  13. 16 Feb, 2021 1 commit
  14. 04 Feb, 2021 1 commit
  15. 28 Jan, 2021 1 commit
  16. 07 Jan, 2021 1 commit
  17. 05 Nov, 2020 1 commit
  18. 04 Nov, 2020 1 commit
  19. 26 Oct, 2020 1 commit
  20. 16 Oct, 2020 1 commit
  21. 12 Oct, 2020 1 commit
  22. 01 Oct, 2020 1 commit
  23. 23 Sep, 2020 1 commit
  24. 21 Sep, 2020 1 commit
  25. 19 Sep, 2020 1 commit
  26. 03 Aug, 2020 1 commit
  27. 28 Jul, 2020 1 commit
  28. 24 Jul, 2020 2 commits
  29. 17 Jul, 2020 2 commits
  30. 16 Jul, 2020 3 commits
  31. 09 Jul, 2020 1 commit
  32. 07 Jul, 2020 1 commit
  33. 23 Jun, 2020 1 commit
    • Jonah Williams's avatar
      [versions] update all versions and fix tool tests (#60127) · 37db92be
      Jonah Williams authored
      Update all versions, specifically file which fixes some bugs that caused tests to fail if run in different orders:
      
      - systemTemp directories created by MemoryFileSystem will allot names based on the file system instance instead of globally.
      - MemoryFile.readAsLines()/readAsLinesSync() no longer treat a final newline in the file as the start of a new, empty line.
      - RecordingFile.readAsLine()/readAsLinesSync() now always record a final newline.
      37db92be
  34. 19 Jun, 2020 1 commit
  35. 15 Jun, 2020 1 commit
  36. 29 May, 2020 1 commit