1. 27 Apr, 2022 1 commit
  2. 03 Feb, 2022 1 commit
  3. 03 Nov, 2021 1 commit
  4. 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
  5. 03 Aug, 2021 1 commit
  6. 15 Jul, 2021 1 commit
  7. 14 Jul, 2021 3 commits
  8. 13 Jul, 2021 2 commits
  9. 30 Mar, 2021 1 commit
  10. 06 Mar, 2021 1 commit
  11. 02 Feb, 2021 1 commit
    • Sam Rawlins's avatar
      Remove "unnecessary" imports. (#75198) · 11609d11
      Sam Rawlins authored
      In each library where an import is removed, the library uses some elements
      provided by the import, BUT there is another import which provides all of the
      same elements, and at least one more which the library uses.
      
      In this change, we remove the imports which can be simply removed in favor of
      the other already present imports.
      
      See https://github.com/dart-lang/sdk/issues/44569 for more information.
      11609d11
  12. 06 Oct, 2020 1 commit
  13. 22 Sep, 2020 1 commit
  14. 21 Aug, 2020 1 commit
  15. 26 Jun, 2020 1 commit
  16. 23 Jun, 2020 1 commit
  17. 11 Jun, 2020 1 commit
  18. 18 May, 2020 1 commit
  19. 08 May, 2020 1 commit