1. 31 Jan, 2018 1 commit
    • amirh's avatar
      Support arbitrary shaped Material. (#14367) · 0672055a
      amirh authored
      For backward compatibility we keep supporting specifying the shape as a
      combination of MaterialType and borderRadius, and we just use that as a
      default when shapeBorder is null.
      
      To cleanup the implementation if shapeBorder was not specified we just
      translate the specified shape to a shapeBorder internally.
      I benchmarked paint, layout and hit testing, with the specialized shape
      clippers vs. the equivalent path clippers and did not see any
      significant performance difference.
      
      For testing, I extended the clippers/physicalShape matchers to match either the
      specialized shape or the equivalent shape.
      0672055a
  2. 12 Jan, 2018 3 commits
  3. 09 Jan, 2018 2 commits
  4. 17 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Fix spelling errors in all the dartdocs. (#13061) · 0259be90
      Greg Spencer authored
      I got tired of drive-by spelling fixes, so I figured I'd just take care of them all at once.
      
      This only corrects errors in the dartdocs, not regular comments, and I skipped any sample code in the dartdocs. It doesn't touch any identifiers in the dartdocs either. No code changes, just comments.
      0259be90
  5. 03 Nov, 2017 1 commit
  6. 02 Nov, 2017 1 commit
  7. 01 Nov, 2017 1 commit
  8. 21 Sep, 2017 1 commit
  9. 12 Sep, 2017 1 commit
  10. 03 Aug, 2017 1 commit
  11. 28 Jul, 2017 1 commit
  12. 25 Jul, 2017 1 commit
  13. 21 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Add documentation and clean up code. (#11330) · 8f56f6fd
      Ian Hickson authored
      Mainly, this adds documentation to members that were previously
      lacking documentation.
      
      It also adds a big block of documentation about improving performance
      of widgets.
      
      This also removes some references to package:collection and adds
      global setEquals and listEquals methods in foundation that we can use.
      (setEquals in particular should be much faster than the
      package:collection equivalent, though both should be faster as they
      avoid allocating new objects.) All remaining references now qualify
      the import so we know what our remaining dependencies are.
      
      Also lots of code reordering in Flutter driver to make the code
      consistent and apply the style guide more thoroughly.
      8f56f6fd
  14. 19 Jul, 2017 1 commit
  15. 20 Jun, 2017 1 commit
    • Ian Hickson's avatar
      Text selection handles track scrolled text fields (#10805) · 6d32b339
      Ian Hickson authored
      Introduce CompositedTransformTarget and CompositedTransformFollower
      widgets, corresponding render objects, and corresponding layers.
      
      Adjust the way text fields work to use this.
      
      Various changes I needed to debug the issues that came up.
      6d32b339
  16. 05 Jun, 2017 1 commit
  17. 12 May, 2017 2 commits
  18. 05 May, 2017 1 commit
  19. 03 May, 2017 1 commit
  20. 27 Apr, 2017 1 commit
  21. 21 Apr, 2017 1 commit
  22. 19 Apr, 2017 1 commit
  23. 07 Apr, 2017 1 commit
  24. 31 Mar, 2017 1 commit
    • Adam Barth's avatar
      Improve focus management (#9074) · 89aaaa9c
      Adam Barth authored
      We now have an explicit focus tree that we manage. Instead of using
      GlobalKeys to manage focus, we use FocusNode and FocusScopeNode objects.
      The FocusNode is Listenable and notifies when its focus state changes.
      
      Focus notifications trigger by tree mutations are now delayed by one
      frame, which is necessary to handle certain complex tree mutations. In
      the common case of focus changes being triggered by user input, the
      focus notificiation still arives in the same frame.
      89aaaa9c
  25. 16 Mar, 2017 1 commit
  26. 13 Mar, 2017 1 commit
  27. 04 Mar, 2017 1 commit
  28. 28 Feb, 2017 1 commit
  29. 17 Feb, 2017 1 commit
  30. 06 Jan, 2017 1 commit
  31. 28 Nov, 2016 1 commit
  32. 19 Nov, 2016 1 commit
  33. 09 Nov, 2016 1 commit
  34. 28 Oct, 2016 1 commit
  35. 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
  36. 04 Oct, 2016 1 commit
    • Adam Barth's avatar
      Isolate Mozart dependencies (#6194) · 8071a82d
      Adam Barth authored
      This patch removes the Mozart dependencies from object.dart and
      layer.dart, which will make it easier for us to move the Mozart
      dependencies purely into the Fuchsia tree.
      8071a82d