1. 03 Aug, 2023 1 commit
  2. 07 Jan, 2022 1 commit
    • Greg Spencer's avatar
      Update platform shims in dev/manual_tests (#94616) · 3750beac
      Greg Spencer authored
      Updates the platform shims in dev/manual_tests so that Windows and Linux can be built. I had to update the Windows shims, because I was unable to build a Windows app there.
      
      Also updates the analyze.dart script to report all license issues simultaneously instead of just dying after the first failure.
      
      The only substantive code changes are in dev/bots/analyze.dart and dev/bots/test/analyze_test.dart
      3750beac
  3. 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
  4. 25 Aug, 2021 1 commit
    • Greg Spencer's avatar
      Extract Sample code into examples/api (#87280) · 33403bd2
      Greg Spencer authored
      This extracts the sample code out from the API doc comments, and places them in separate files on disk, allowing running of the examples locally, testing them, and building of slightly larger examples.
      33403bd2
  5. 28 Jun, 2021 1 commit
  6. 07 May, 2021 1 commit
  7. 01 Feb, 2021 1 commit
    • Robert Ancell's avatar
      Make Linux apps non-unique by default. (#74959) · 09adc359
      Robert Ancell authored
      This stops them attempting to own a D-Bus name, which may not be possible if the
      app is sandboxed (e.g. in a Snap). It's also probably what most developers would
      expect is the correct behaviour by default.
      09adc359
  8. 29 Oct, 2020 1 commit
  9. 21 Oct, 2020 1 commit
  10. 29 Jul, 2020 1 commit
  11. 23 Jun, 2020 1 commit
  12. 18 Jun, 2020 2 commits
  13. 16 Jun, 2020 1 commit
    • stuartmorgan's avatar
      Switch Linux to the GTK embedding (#59287) · 61c198e7
      stuartmorgan authored
      Updates the tooling to use the GTK embedding, rather than the GLFW embedding:
      - Adds new requirements to `doctor`
      - Updates the app and plugin templates to make GTK-based runners and plugins
      - Stops downloading and installing the GLFW artifacts
      
      Final part of #54860, other than cleanup.
      61c198e7