1. 21 Jan, 2023 1 commit
  2. 21 Dec, 2022 1 commit
  3. 15 Dec, 2022 1 commit
  4. 12 Dec, 2022 1 commit
  5. 07 Jul, 2022 1 commit
  6. 27 Apr, 2022 2 commits
  7. 26 Apr, 2022 1 commit
  8. 21 Jan, 2022 1 commit
  9. 18 Dec, 2021 1 commit
  10. 13 Nov, 2021 1 commit
  11. 12 Oct, 2021 1 commit
  12. 30 Aug, 2021 1 commit
  13. 09 Aug, 2021 1 commit
  14. 25 May, 2021 1 commit
  15. 21 Apr, 2021 1 commit
  16. 04 Mar, 2021 1 commit
  17. 27 Jan, 2021 1 commit
  18. 15 Oct, 2020 1 commit
  19. 28 Jul, 2020 1 commit
  20. 11 Jun, 2020 1 commit
  21. 16 Dec, 2019 1 commit
  22. 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
  23. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  24. 12 Sep, 2018 1 commit
  25. 25 May, 2018 1 commit
    • Emmanuel Garcia's avatar
      Fix #16464 · c4d6311a
      Emmanuel Garcia authored
      * Fix #16464: Pass hit test when a big child is inside RenderFittedBox, RenderTransform, RenderFractionalTranslation, or RenderFollowerLayer
      
      * Override `hitTestChildren`
      
      * RenderTransform and RenderFollowerLayer shouldn't check if they are hit
      themselves
      
      * Test the hit test for translated child into translated box
      
      * Add hit test for `FractionalTranslation`
      
      * Don't check if RenderFractionalTranslation is hit themself
      
      * Add hit test for FractionalTranslation
      
      * Add test for FractionalTranslation
      c4d6311a
  26. 26 Apr, 2018 1 commit
  27. 12 Mar, 2018 1 commit
  28. 09 Jan, 2018 1 commit
  29. 07 Nov, 2017 1 commit
  30. 02 Oct, 2017 1 commit
    • Adam Barth's avatar
      Add Alignment, which will replace FractionalOffset (#12342) · 2b126bcd
      Adam Barth authored
      Unlike FractionalOffset, Alignment uses the center as the zero of the
      coordinate system, which makes the RTL math work out much cleaner.
      
      Also, make FractionalOffset into a subclass of Alignment so that clients
      can continue to use FractionalOffset.
      2b126bcd
  31. 08 Sep, 2017 1 commit
  32. 06 Jun, 2017 1 commit
  33. 27 Apr, 2017 1 commit
  34. 12 Apr, 2017 1 commit
    • Ian Hickson's avatar
      Move Point to Offset (#9277) · bf017b79
      Ian Hickson authored
      * Manually fix every use of Point.x and Point.y
      
      Some of these were moved to dx/dy, but not all.
      
      * Manually convert uses of the old gradient API
      
      * Remove old reference to Point.
      
      * Mechanical changes
      
      I applied the following at the root of the Flutter repository:
      
      git ls-files -z | xargs -0 sed -i 's/\bPoint[.]origin\b/Offset.zero/g'
      git ls-files -z | xargs -0 sed -i 's/\bPoint[.]lerp\b/Offset.lerp/g'
      git ls-files -z | xargs -0 sed -i 's/\bnew Point\b/new Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\bconst Point\b/const Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\bstatic Point /static Offset /g'
      git ls-files -z | xargs -0 sed -i 's/\bfinal Point /final Offset /g'
      git ls-files -z | xargs -0 sed -i 's/^\( *\)Point /\1Offset /g'
      git ls-files -z | xargs -0 sed -i 's/ui[.]Point\b/ui.Offset/g'
      git ls-files -z | xargs -0 sed -i 's/(Point\b/(Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\([[{,]\) Point\b/\1 Offset/g'
      git ls-files -z | xargs -0 sed -i 's/@required Point\b/@required Offset/g'
      git ls-files -z | xargs -0 sed -i 's/<Point>/<Offset>/g'
      git ls-files -z | xargs -0 sed -i 's/[.]toOffset()//g'
      git ls-files -z | xargs -0 sed -i 's/[.]toPoint()//g'
      git ls-files -z | xargs -0 sed -i 's/\bshow Point, /show /g'
      git ls-files -z | xargs -0 sed -i 's/\bshow Point;/show Offset;/g'
      
      * Mechanical changes - dartdocs
      
      I applied the following at the root of the Flutter repository:
      
      git ls-files -z | xargs -0 sed -i 's/\ba \[Point\]/an [Offset]/g'
      git ls-files -z | xargs -0 sed -i 's/\[Point\]/[Offset]/g'
      
      * Further improvements and a test
      
      * Fix minor errors from rebasing...
      
      * Roll engine
      bf017b79
  35. 04 Mar, 2017 1 commit
  36. 09 Dec, 2016 1 commit
  37. 07 Nov, 2016 1 commit
  38. 13 Oct, 2016 1 commit
    • Adam Barth's avatar
      Fix composited transform bounds calculations (#6302) · 3b56f122
      Adam Barth authored
      We weren't computing the bounds for composited transforms correctly. We
      need to conjugate the transform by the offset in order to get the
      correct paint bounds for the composited layer. We now also use the same
      math in the non-composited case for consistency.
      
      Also, don't scale the z-coordinate in RenderFittedBox.
      
      Fixes #6293
      3b56f122
  39. 26 May, 2016 1 commit