1. 09 Jan, 2018 2 commits
  2. 21 Dec, 2017 1 commit
  3. 23 Nov, 2017 1 commit
  4. 24 Oct, 2017 1 commit
  5. 19 Oct, 2017 1 commit
  6. 18 Oct, 2017 2 commits
    • Michael Goderbauer's avatar
      Redesign Semantic Tree Compilation Algorithm (#12605) · f8a2bd20
      Michael Goderbauer authored
      * Oct 12 10:12am
      
      * implicit_semantics_test.dart passes
      
      * refactoring
      
      * works in nice
      
      * minor rename
      
      * more doc comments
      
      * to be explicit check better
      
      * fix test
      
      * ++
      
      * ++
      
      * semantics_9_test (BlockSemantics) and implicit_semantics_test are passing
      
      * doc updates
      
      * tiny refactor
      
      * fix static errors in tests
      
      * fix gesture detector
      
      * ++
      
      * ++
      
      * geometry
      
      * ++
      
      * remove noGeometry
      
      * revert test
      
      * +
      
      * all tests but scrolling/clipping pass
      
      * clipping works
      
      * scrolling halfway
      
      * sliver tests pass
      
      * ALL TESTS PASS
      
      * SemanticsNode changed
      
      * docs and tiny fixes
      
      * card test
      
      * more doc comments
      
      * remove missed print
      
      * more tests
      
      * make test pass on Linux
      
      * remove changes to intellij proj file
      
      * review comments
      f8a2bd20
    • Michael Goderbauer's avatar
      Make Tab take a widget as child (#12613) · 9baca001
      Michael Goderbauer authored
      * Make Tab take a widget as child
      
      This way you can override the semantics information of a Tab (see test).
      
      Fixes https://github.com/flutter/flutter/issues/12432
      
      * more tests
      
      * review comments
      
      * review comment
      
      * doc nits
      
      * style fix
      9baca001
  7. 11 Oct, 2017 1 commit
  8. 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
  9. 31 Aug, 2017 1 commit
  10. 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
  11. 23 Aug, 2017 1 commit
  12. 08 Aug, 2017 1 commit
  13. 17 Jul, 2017 1 commit
  14. 14 Jun, 2017 1 commit
  15. 13 Jun, 2017 1 commit
  16. 12 Jun, 2017 1 commit
  17. 09 Jun, 2017 1 commit
  18. 21 Apr, 2017 1 commit
  19. 18 Apr, 2017 1 commit
  20. 14 Apr, 2017 1 commit
  21. 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
  22. 11 Apr, 2017 1 commit
    • xster's avatar
      Rename State.config to widget everywhere (#9273) · 89a7fdfc
      xster authored
      Rename State.config to State.widget
      Rename State.didUpdateConfig to State.didUpdateWidget
      Renamed all State subclasses' local variables named config to something else
      89a7fdfc
  23. 07 Apr, 2017 1 commit
  24. 27 Mar, 2017 1 commit
  25. 22 Mar, 2017 1 commit
  26. 13 Mar, 2017 2 commits
  27. 04 Mar, 2017 1 commit
  28. 01 Mar, 2017 1 commit
  29. 21 Feb, 2017 1 commit
    • Adam Barth's avatar
      Call onPageChanged at the halfway mark (#8302) · 862fc051
      Adam Barth authored
      Previously we called onPageChanged when the scroll ended, but that is too late.
      Now we call onPageChanged when we cross the halfway mark, which, for example,
      makes the tab indicator update earlier.
      
      Fixes #8265
      862fc051
  30. 14 Feb, 2017 1 commit
  31. 09 Feb, 2017 1 commit
  32. 08 Feb, 2017 1 commit
  33. 31 Jan, 2017 1 commit
  34. 28 Jan, 2017 1 commit
  35. 09 Jan, 2017 1 commit
  36. 09 Dec, 2016 1 commit
  37. 06 Dec, 2016 1 commit