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. 08 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Switch to Debian bullseye, update nodejs to npm package, add flutter desktop... · 9cea6917
      Greg Spencer authored
      Switch to Debian bullseye, update nodejs to npm package, add flutter desktop run dependencies (#89309)
      
      This change updates the Dockerfile for Cirrus builds:
      
      - Switch to a newer stable Debian build (bullseye instead of stretch)
      - Eliminates the very old (10) nodejs install in favor of the npm package
      - Installs OpenJDK so that Android SDK manager can run on bullseye
      - Installs the prerequisites for Linux desktop flutter run.
      
      The motivation for this change was to include the dependencies for Linux desktop flutter run so that I can run tests that use desktop Flutter apps, but that needs cmake 3.10 or later, and stretch doesn't have a cmake that new. Of course, there's also no openjdk-8-jre for bullseye, so I used OpenJDK from JFrog instead.
      9cea6917
  3. 15 May, 2021 1 commit
  4. 19 Mar, 2021 1 commit
  5. 08 Oct, 2020 1 commit
  6. 06 Oct, 2020 1 commit
  7. 20 Aug, 2020 1 commit
  8. 08 Aug, 2020 1 commit
  9. 31 Mar, 2020 1 commit
  10. 11 Feb, 2020 1 commit
  11. 10 Feb, 2020 1 commit
  12. 05 Feb, 2020 1 commit
  13. 04 Feb, 2020 1 commit
  14. 10 Jan, 2020 1 commit
  15. 09 Jan, 2020 1 commit
  16. 29 Oct, 2019 1 commit
  17. 26 Oct, 2019 1 commit
  18. 25 Oct, 2019 1 commit
  19. 18 Jun, 2019 2 commits
  20. 07 Jun, 2019 1 commit
  21. 25 May, 2019 1 commit
  22. 10 Apr, 2019 1 commit
  23. 05 Apr, 2019 2 commits
  24. 15 Nov, 2018 1 commit
    • Greg Spencer's avatar
      Add docset generation (#24322) · f20adcc4
      Greg Spencer authored
      (re-land of #24244)
      
      This generates a zip file containing all of the docs, and uploads it when we publish docs, as well as a
      Dash/Zeal docset that contains a feed of the docs.
      
      Addresses at least part of #9955
      f20adcc4
  25. 14 Nov, 2018 1 commit
  26. 13 Nov, 2018 1 commit
  27. 19 Oct, 2018 1 commit
  28. 02 Oct, 2018 1 commit
  29. 07 Aug, 2018 1 commit
  30. 04 Aug, 2018 2 commits