1. 03 Feb, 2022 1 commit
  2. 08 Oct, 2021 3 commits
  3. 07 Oct, 2021 1 commit
  4. 15 Jul, 2021 1 commit
  5. 23 Apr, 2021 1 commit
  6. 27 Jan, 2021 1 commit
  7. 07 Oct, 2020 1 commit
  8. 11 Jun, 2020 1 commit
  9. 07 Jan, 2020 1 commit
  10. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  11. 27 Sep, 2019 1 commit
  12. 24 Jul, 2019 1 commit
  13. 14 May, 2019 1 commit
  14. 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
  15. 12 Sep, 2018 1 commit
  16. 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
  17. 12 Dec, 2017 1 commit
  18. 23 Sep, 2017 1 commit
  19. 12 Sep, 2017 1 commit
  20. 25 Jul, 2017 1 commit
  21. 30 Jun, 2017 1 commit
  22. 27 Jun, 2017 1 commit
  23. 04 Mar, 2017 1 commit
  24. 09 Dec, 2016 1 commit
  25. 03 Jun, 2016 1 commit
  26. 15 Apr, 2016 1 commit
    • Ian Hickson's avatar
      Material Data Tables (#3337) · a91bc0ba
      Ian Hickson authored
      + Add new demo to gallery to show data tables. (This currently doesn't
      use a Card; I'll create a Card version in a subsequent patch.)
      
      + Fix checkbox alignment. It now centers in its box regardless.
      
      + Add Colors.black54.
      
      + Some minor fixes to dartdocs.
      
      + DataTable, DataColumn, DataRow, DataCell
      
      + RowInkWell
      
      + Augment dartdocs of materia/debug.dart.
      
      + DropDownButtonHideUnderline to hide the underline in a drop-down when
        used in a DataTable.
      
      + Add new capabilities to InkResponse to support RowInkWell.
      
      + Augment dartdocs of materia/material.dart.
      
      + Add an assert to catch nested Blocks.
      
      + Fix a crash in RenderBox when you remove an object and an ancestor
        used its baseline. (https://github.com/flutter/flutter/issues/2874)
      
      + Fix (and redocument) RenderBaseline/Baseline.
      
      + Add flex support to IntrinsicColumnWidth.
      
      + Document more stuff on the RenderTable side.
      
      + Fix a bug with parentData handling on RenderTable children.
      
      + Completely rewrite the column width computations. The old logic made
        no sense at all.
      
      + Add dartdocs to widgets/debug.dart.
      
      + Add a toString for TableRow.
      a91bc0ba
  27. 29 Mar, 2016 2 commits
    • Hixie's avatar
      More table fixes · bdfeaaa4
      Hixie authored
      bdfeaaa4
    • Hixie's avatar
      Table widget · baf06515
      Hixie authored
      - Add x and y to the parent data, in case it's useful. In point of fact,
        I ended up not needing it.
      
      - Make columnWidths settable rather than having a setter so that the
        code in the widgets layer is more idiomatic.
      
      - Teach setFlatChildren about avoiding unnecessary drop/adopt loops.
      
      - Assert that the child list length is correct more aggressively so that
        we catch the dumb bug I had more quickly next time.
      
      - Improve the toString() to handle empty tables better.
      
      - Resort the imports in framework.dart.
      
      - Introduce a LocalKey for cases where you don't want to allow use of
        GlobalKey.
      
      - Make inflateWidget and deactivateChild public for subclass use.
      
      - Table widget.
      
      - Cell widget.
      
      - TableRow fake widget.
      baf06515
  28. 26 Mar, 2016 1 commit