1. 17 Jul, 2019 1 commit
  2. 08 Jun, 2019 1 commit
  3. 07 Jun, 2019 2 commits
  4. 06 Jun, 2019 3 commits
  5. 05 Jun, 2019 1 commit
  6. 04 Jun, 2019 1 commit
    • Gary Qian's avatar
      Text inline widgets, TextSpan rework (#33794) · 86862c1e
      Gary Qian authored
      * Merge in changes for inline widgets
      
      * Make analyzer happy, fix tests
      
      * Fix analyzer
      
      * Add missing doc
      
      * Docs on RichText
      
      * Fix analyzer some more
      
      * Remove whitespace at end of line
      
      * Update goldens
      
      * Text fixes
      
      * Analyzer
      86862c1e
  7. 10 Apr, 2019 1 commit
  8. 08 Nov, 2018 1 commit
  9. 01 Oct, 2018 1 commit
  10. 12 Sep, 2018 1 commit
  11. 07 Sep, 2018 1 commit
  12. 05 Jun, 2018 1 commit
  13. 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
  14. 21 Sep, 2017 1 commit
  15. 11 Sep, 2017 1 commit
  16. 29 Aug, 2017 1 commit
  17. 03 Aug, 2017 1 commit
  18. 28 Jul, 2017 1 commit
  19. 27 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Increase the touch slop. (#11419) · 87445e59
      Ian Hickson authored
      It was 8.0. It's now arbitrarily 18.0.
      
      Changing this required adjusting some tests. Adjusting the tests
      required debugging the tests. Debugging the tests required some tools
      to help debugging gesture recognizers and gesture arenas, so I added
      some. It also required updating some toString() methods which resulted
      in some changes to the tree diagnostics logic.
      
      Also I cleaned up some docs while I was at it.
      87445e59
  20. 25 Jul, 2017 1 commit
  21. 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
  22. 20 Jul, 2017 1 commit
  23. 13 Jun, 2017 1 commit
  24. 12 Jun, 2017 1 commit
    • Ian Hickson's avatar
      More documentation (#10606) · a9f1cb8c
      Ian Hickson authored
      - How do you handle a tap on text?
      - Why is AnimatedOpacity expensive?
      - Why would you use a gesture arena team?
      ...and other minor fixes
      a9f1cb8c
  25. 14 Apr, 2017 1 commit
  26. 28 Mar, 2017 1 commit
  27. 21 Mar, 2017 1 commit
  28. 04 Mar, 2017 1 commit
  29. 11 Jan, 2017 1 commit
  30. 25 Oct, 2016 1 commit
  31. 20 Sep, 2016 1 commit
  32. 12 Sep, 2016 1 commit
  33. 29 Apr, 2016 1 commit
    • Adam Barth's avatar
      Improve the TextPainter API (#3621) · e41120bc
      Adam Barth authored
      Instead of using properties, TextPainter now receives min and max width as
      parameters to layout. Also, this patch integrates the intrinsic sizing logic
      into the main layout function, which satisfies all the existing uses cases.
      e41120bc