1. 30 May, 2019 2 commits
  2. 10 May, 2019 1 commit
  3. 09 May, 2019 1 commit
  4. 11 Apr, 2019 1 commit
    • champeauxr's avatar
      Fixed Table flex column layout error #30437 (#30470) · a5dd074b
      champeauxr authored
      RenderTable._computeColumnWidths() had a logic error that caused flex columns to be collapsed to their minimum widths in certain situations dependent on the layout width constraint and the number of flex columns.
      a5dd074b
  5. 20 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      some spaces formatting (#29452) · a6af4228
      Alexandre Ardhuin authored
      * some space formattings
      
      * always use blocks in if-else if a block is used
      
      * format spaces in for and while
      
      * allow multiline if conditions
      
      * fix missing space
      a6af4228
  6. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  7. 26 Jan, 2019 1 commit
  8. 12 Sep, 2018 1 commit
  9. 18 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Fixes resulting from audit of issues links (#20772) · 8c79f40d
      Ian Hickson authored
      * Fixes resulting from audit of issues links
      
      I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link.
      
      * Update run_test.dart
      
      skip this test again since it failed on linux and macos bots
      8c79f40d
  10. 05 Jun, 2018 1 commit
  11. 01 Jun, 2018 1 commit
  12. 20 Mar, 2018 1 commit
  13. 12 Mar, 2018 1 commit
  14. 19 Dec, 2017 1 commit
    • Ian Hickson's avatar
      Fix niggling PaginatedDataTable bugs (#13556) · 78ff7707
      Ian Hickson authored
      Prevent header from thinking it can wrap and then overflowing.
      
      Fix default footer string which lost its colon (localized values are fine).
      
      Make the "rows per page" drop-down include at least one value even when the table lacks many items. (Previously it would assert if your table was too short.)
      
      Make the footer scrollable.
      
      Fix some todos and improve some debug output.
      
      Tests for much of the above.
      78ff7707
  15. 12 Dec, 2017 1 commit
  16. 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
  17. 25 Oct, 2017 1 commit
  18. 22 Oct, 2017 1 commit
  19. 23 Sep, 2017 2 commits
    • Adam Barth's avatar
      Clean up TableBorder#paint API (#12226) · ebffe159
      Adam Barth authored
      Previously, the rows and columns arguments had different semantics. Now
      they have the same semantics. The new API also uses Iterable rather than
      List to give clients more flexiblity in how they construct these
      arguments. For example, RenderTable no longer needs to reify the
      reversed list of column positions.
      ebffe159
    • Adam Barth's avatar
      Add RTL support to Table (#12225) · 1a0bdb96
      Adam Barth authored
      Also, fix asserts in TableBorder#paint to match documentation.
      
      Fixes #12009
      1a0bdb96
  20. 21 Sep, 2017 1 commit
  21. 15 Sep, 2017 1 commit
    • Ian Hickson's avatar
      Split TableBorder from Border (#12104) · 9d59fb0c
      Ian Hickson authored
      This will enable both to be RTL'ed.
      
      Also, factor out common border painting code into paintBorder.
      Also, make Border paint uniform non-rounded borders using drawRect.
      Also, add some documentation about an issue that wasted an hour of my life.
      Also, factor out all the border painting code into TableBorder.paint.
      9d59fb0c
  22. 12 Sep, 2017 1 commit
  23. 03 Aug, 2017 1 commit
  24. 25 Jul, 2017 1 commit
  25. 05 Jun, 2017 1 commit
  26. 10 May, 2017 1 commit
  27. 06 May, 2017 1 commit
  28. 05 May, 2017 1 commit
  29. 19 Apr, 2017 2 commits
  30. 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
  31. 29 Mar, 2017 1 commit
  32. 10 Mar, 2017 1 commit
  33. 08 Mar, 2017 1 commit
  34. 04 Mar, 2017 1 commit
  35. 28 Jan, 2017 1 commit
  36. 09 Dec, 2016 1 commit
  37. 24 Oct, 2016 1 commit