1. 15 Jun, 2022 1 commit
  2. 07 May, 2022 1 commit
  3. 31 Mar, 2022 1 commit
  4. 13 Dec, 2021 1 commit
  5. 29 Oct, 2021 1 commit
  6. 19 Oct, 2021 1 commit
  7. 15 Oct, 2021 2 commits
  8. 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
  9. 14 Aug, 2021 1 commit
  10. 12 Aug, 2021 1 commit
  11. 01 Jun, 2021 1 commit
  12. 01 Apr, 2021 1 commit
  13. 24 Mar, 2021 1 commit
  14. 08 Feb, 2021 1 commit
  15. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4
  16. 27 Jan, 2021 1 commit
  17. 06 Nov, 2020 1 commit
  18. 08 Oct, 2020 1 commit
  19. 05 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] support all engine debugging options with... · 21bb29cc
      Jonah Williams authored
      [flutter_tools] support all engine debugging options with FLUTTER_ENGINE_SWITCH environment variables (#67150)
      
      Allow providing all debugging options to the desktop engine via the FLUTTER_ENGINE_SWITCH_ environment variables.
      
      Fixes #66532
      Fixes #46005
      Fixes #58882
      
      The underling engine changes have already landed for Windows, macOS, but linux is still in progress
      21bb29cc
  20. 03 Oct, 2020 1 commit
  21. 22 Sep, 2020 1 commit
  22. 31 Aug, 2020 2 commits
  23. 29 Aug, 2020 1 commit
  24. 28 Aug, 2020 2 commits
  25. 27 Aug, 2020 1 commit
    • Ben Konyi's avatar
      Re-enable the Dart Development Service (DDS) (#64671) · d7d12412
      Ben Konyi authored
      This change re-enables DDS and outputs the DDS URI in place of the VM
      service URI on the console. If --disable-dds is not provided,
      --host-vmservice-port will be used to determine the port for DDS rather
      than the host port for the VM service, which will instead be randomly
      chosen.
      d7d12412
  26. 23 Jul, 2020 1 commit
  27. 09 Jun, 2020 1 commit
  28. 08 Jun, 2020 2 commits
  29. 22 Apr, 2020 1 commit
  30. 25 Mar, 2020 3 commits
  31. 10 Mar, 2020 1 commit
  32. 06 Mar, 2020 1 commit
  33. 04 Mar, 2020 2 commits