1. 24 Oct, 2018 1 commit
  2. 01 Oct, 2018 1 commit
  3. 12 Sep, 2018 1 commit
  4. 02 Aug, 2018 1 commit
  5. 27 Jul, 2018 1 commit
  6. 23 Jul, 2018 1 commit
  7. 16 Jul, 2018 2 commits
  8. 05 Jun, 2018 1 commit
  9. 03 May, 2018 1 commit
  10. 22 Mar, 2018 1 commit
    • Ian Hickson's avatar
      Clean up the existing Navigator API. (#15718) · aba0379d
      Ian Hickson authored
      This is not a grand refactor yet, it's just cleaning up what we have
      already, so that people who keep using this API (e.g. dialogs) have
      something coherent to deal with.
      
      The major changes are that Navigator and NavigatorState have the same
      API now, that most of the examples use `<void>` instead of `<Null>`,
      that the navigator observer can see replaces, and that the `settings`
      is moved from ModalRoute to Route. I also cleaned up some of the API
      documentation.
      aba0379d
  11. 16 Mar, 2018 1 commit
  12. 12 Mar, 2018 1 commit
  13. 28 Feb, 2018 1 commit
  14. 02 Feb, 2018 1 commit
  15. 02 Jan, 2018 1 commit
    • Chris Bracken's avatar
      Apply media padding to Gallery animation demo (#13853) · ece737d1
      Chris Bracken authored
      Applies horizontal safe area insets to the animation demo in the
      Gallery. Specifically, this ensures the back button is positioned
      consistently with iOS expectations and that that main image card in the
      detail view respects safe area insets.
      
      This is to support the iPhone X sensor housing notch and other similarly
      creative display features when in landscape orientation.
      ece737d1
  16. 06 Dec, 2017 1 commit
  17. 02 Oct, 2017 1 commit
  18. 03 Aug, 2017 1 commit
  19. 25 Jul, 2017 1 commit
  20. 08 Jun, 2017 1 commit
  21. 07 Jun, 2017 1 commit
  22. 10 May, 2017 1 commit
  23. 08 May, 2017 1 commit
  24. 05 May, 2017 1 commit
  25. 04 May, 2017 1 commit
  26. 03 May, 2017 1 commit
  27. 27 Apr, 2017 1 commit
  28. 25 Apr, 2017 1 commit
  29. 23 Apr, 2017 1 commit
  30. 21 Apr, 2017 1 commit
  31. 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
  32. 31 Mar, 2017 1 commit
  33. 15 Mar, 2017 1 commit
  34. 14 Mar, 2017 1 commit
  35. 10 Mar, 2017 1 commit
  36. 08 Mar, 2017 1 commit
  37. 06 Mar, 2017 1 commit
  38. 03 Mar, 2017 1 commit