1. 14 Dec, 2021 1 commit
  2. 01 Dec, 2021 1 commit
  3. 24 Nov, 2021 1 commit
  4. 29 Oct, 2021 1 commit
  5. 04 Oct, 2021 1 commit
  6. 30 Sep, 2021 1 commit
  7. 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.
      Unverified
      ab2b0851
  8. 16 Sep, 2021 1 commit
  9. 13 Sep, 2021 1 commit
  10. 02 Sep, 2021 1 commit
  11. 18 Aug, 2021 1 commit
  12. 03 Aug, 2021 1 commit
  13. 20 Jul, 2021 1 commit
    • Greg Spencer's avatar
      Modify key info generation for new iOS key code. (#83439) · 2cb685e1
      Greg Spencer authored
      The (new, not yet used) code gen for iOS was setting up a std::map from key codes to logical and physical key codes, but it was using uint32_t, which isn't big enough to hold the Flutter key codes.
      
      Also, iOS needs to be able to filter out function keys, so I added a function key set.
      Unverified
      2cb685e1
  14. 14 Jul, 2021 1 commit
  15. 09 Jul, 2021 1 commit
  16. 23 Jun, 2021 1 commit
  17. 15 Jun, 2021 1 commit
  18. 27 May, 2021 1 commit
  19. 22 Apr, 2021 1 commit
  20. 03 Mar, 2021 1 commit
  21. 22 Feb, 2021 1 commit
  22. 16 Feb, 2021 1 commit
  23. 04 Feb, 2021 1 commit
  24. 01 Feb, 2021 1 commit
  25. 12 Jan, 2021 1 commit
  26. 07 Jan, 2021 1 commit
  27. 05 Dec, 2020 1 commit
  28. 04 Nov, 2020 1 commit
  29. 26 Oct, 2020 1 commit
  30. 17 Oct, 2020 1 commit
  31. 12 Oct, 2020 1 commit
  32. 23 Sep, 2020 1 commit
  33. 17 Sep, 2020 1 commit
    • Ben Konyi's avatar
      Roll packages to fix #66038 (#66052) · fb08acf1
      Ben Konyi authored
      PR #65873 enabled DDS for non-web Flutter applications. This change
      surfaced a bug where DDS would not send ServiceRegistered events to VM
      service clients when they subscribed to the Service stream. This would
      cause tools and tests that rely on these events (e.g., hot reload in
      VSCode) to fail.
      
      Fixes #66038.
      Unverified
      fb08acf1
  34. 19 Aug, 2020 1 commit
  35. 11 Aug, 2020 1 commit
  36. 28 Jul, 2020 1 commit
  37. 24 Jul, 2020 2 commits
  38. 09 Jul, 2020 1 commit
  39. 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.
      Unverified
      37db92be