1. 21 Oct, 2020 1 commit
  2. 15 Oct, 2020 1 commit
  3. 05 Oct, 2020 1 commit
  4. 01 Oct, 2020 2 commits
    • Dan Field's avatar
      Revert dispose images when done (#67100) · 473358d9
      Dan Field authored
      * Revert "docs for image disposal (#67066)"
      
      This reverts commit bcb2ac5a.
      
      * Revert "Dispose of images after using them (#66688)"
      
      This reverts commit a7954691.
      473358d9
    • Dan Field's avatar
      Dispose of images after using them (#66688) · a7954691
      Dan Field authored
      * Dispose of images after using them
      Adds ImageInfo.clone, ImageInfo.dispose, and ImageInfo.isCloneOf.
      Makes all stateful holders of ui.Image objects properly clone and dispose of them.
      Behavior change for ImageStreamCompleter: Removing the last listener after registering at least one listener results in the object being disposed, and new listeners cannot be added, unless a keepAlive handle is created.
      Makes all non-stateful holders of ui.Image (i.e. paintImage and RawImage) assert that whoever gave the image to them has not disposed it on them.
      a7954691
  5. 30 Sep, 2020 1 commit
  6. 22 Sep, 2020 1 commit
  7. 12 Aug, 2020 1 commit
  8. 09 Jul, 2020 1 commit
  9. 26 Jun, 2020 1 commit
  10. 11 Jun, 2020 2 commits
  11. 18 May, 2020 1 commit
  12. 23 Apr, 2020 2 commits
  13. 09 Apr, 2020 1 commit
  14. 06 Apr, 2020 1 commit
  15. 12 Mar, 2020 1 commit
  16. 27 Feb, 2020 1 commit
  17. 26 Feb, 2020 1 commit
  18. 24 Feb, 2020 1 commit
  19. 20 Feb, 2020 1 commit
  20. 14 Feb, 2020 1 commit
  21. 11 Feb, 2020 1 commit
  22. 10 Feb, 2020 1 commit
  23. 07 Feb, 2020 1 commit
  24. 30 Jan, 2020 1 commit
  25. 27 Jan, 2020 1 commit
  26. 17 Jan, 2020 1 commit
  27. 16 Jan, 2020 1 commit
  28. 07 Jan, 2020 1 commit
  29. 16 Dec, 2019 1 commit
  30. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  31. 16 Oct, 2019 1 commit
  32. 15 Oct, 2019 2 commits
  33. 30 Sep, 2019 1 commit
  34. 13 Jun, 2019 1 commit
  35. 30 May, 2019 1 commit
  36. 29 May, 2019 1 commit
    • Todd Volkert's avatar
      Add loading support to Image (#33369) · 68841469
      Todd Volkert authored
      This adds two new builders to the `Image` class:
      
      * `frameBuilder`, which allows callers to control the widget
        created by an [Image].
      * `loadingBuilder`, which allows callers fine-grained control
        over how to display loading progress of an image to the user.
      
      `FadeInImage` can be simplified by migrating to the new API.
      This is done in a follow-on commit.
      
      https://github.com/flutter/flutter/issues/32374
      68841469