1. 04 May, 2018 1 commit
  2. 03 May, 2018 1 commit
  3. 25 Apr, 2018 1 commit
  4. 23 Apr, 2018 1 commit
    • Yegor's avatar
      a11y traversal: sort locally; use new sorting algorithm (#16253) · d3540962
      Yegor authored
      New a11y traversal:
      
      - sort direct sibling SemanticsNodes only
      - use new sorting algorithm
      - implement RTL
      - test semantics in traversal order by default
      - add AppBar traversal test
      - breaking: remove nextNodeId/previousNodeId from the framework
      - breaking: remove DebugSemanticsDumpOrder.geometricOrder
      d3540962
  5. 09 Mar, 2018 1 commit
  6. 28 Feb, 2018 1 commit
  7. 01 Feb, 2018 1 commit
  8. 11 Jan, 2018 1 commit
  9. 21 Dec, 2017 1 commit
  10. 09 Dec, 2017 1 commit
    • Chris Bracken's avatar
      Remove bottom padding in SliverAppBar (#13471) · 355ebef5
      Chris Bracken authored
      Removes bottom padding from the child AppBar in SliverAppBar. Scaffold
      already does this for its own app bars, but sliver app bars in the body
      should also apply the bottom padding removal.
      
      Fixes flutter/flutter#13458
      355ebef5
  11. 07 Oct, 2017 1 commit
  12. 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
  13. 29 Sep, 2017 1 commit
  14. 14 Sep, 2017 1 commit
    • Mehmet Fidanboylu's avatar
      Allow apps to change the title spacing in app bar. (#12076) · f3b3ff47
      Mehmet Fidanboylu authored
      * Allow apps to change the title margin in app bar.
      
      * Fix documentation links and the shouldLayout function in the _ToolbarLayout
      
      * Rename margin to spacing
      
      * review comments
      
      * Test fixes. Now we also test the width to make sure enough space is left for trailing widget
      
      * Expose the middle spacing default and use it in app bar.
      
      * Fix analyzer break
      
      * Doc fixes due to review
      f3b3ff47
  15. 08 Sep, 2017 1 commit
  16. 01 Sep, 2017 1 commit
  17. 28 Aug, 2017 1 commit
    • Ian Hickson's avatar
      RTL: Padding, Flex (#11709) · f235a2c1
      Ian Hickson authored
      * Introduce a Directionality inherited widget which sets the ambient LTR vs RTL mode (defaulting to null, which means you cannot use directionality-influenced values).
      
      * Make it possible to configure Padding (including Container.padding and Container.margin) using a directionality-agnostic EdgeInsets variant.
      
      * Provide textDirection and verticalDirection controls on Row and Column to make them RTL-aware.
      
      * Introduce a variant of FractionalOffset based on the EdgeInsets variant. Not yet actually used.
      
      * Fix all the tests that depended on Row defaulting to LTR.
      f235a2c1
  18. 22 Jul, 2017 1 commit
  19. 01 Jun, 2017 1 commit
  20. 24 May, 2017 1 commit
  21. 03 May, 2017 1 commit
  22. 02 May, 2017 1 commit
  23. 27 Apr, 2017 1 commit
  24. 21 Apr, 2017 1 commit
  25. 13 Apr, 2017 1 commit
  26. 12 Apr, 2017 3 commits
    • Hans Muller's avatar
      Point to Offset (#9355) · 9f34e2e4
      Hans Muller authored
      9f34e2e4
    • Hans Muller's avatar
      28bb89c6
    • 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
  27. 07 Apr, 2017 1 commit
  28. 05 Apr, 2017 1 commit
  29. 03 Apr, 2017 1 commit
  30. 08 Mar, 2017 1 commit
  31. 04 Mar, 2017 1 commit
  32. 24 Feb, 2017 1 commit
    • Adam Barth's avatar
      Add a `color` argument to `Container`. (#8396) · f20c3d10
      Adam Barth authored
      It's common to just want a simple colored box. Simple thing should be simple,
      so this patch adds a convenience argument to Continer for creating a box
      decoration that is just a color.
      
      Fixes #5555
      f20c3d10
  33. 23 Feb, 2017 1 commit
  34. 22 Feb, 2017 3 commits
  35. 17 Feb, 2017 1 commit
  36. 16 Dec, 2016 1 commit