1. 20 Mar, 2018 1 commit
  2. 06 Feb, 2018 1 commit
  3. 09 Jan, 2018 1 commit
  4. 03 Nov, 2017 1 commit
  5. 18 Oct, 2017 1 commit
    • 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
  6. 27 Sep, 2017 1 commit
  7. 21 Sep, 2017 1 commit
  8. 15 Sep, 2017 1 commit
  9. 13 Sep, 2017 2 commits
  10. 05 Sep, 2017 1 commit
    • Michael Goderbauer's avatar
      getOffsetToReveal deals with pinned slivers (#11878) · 30fd06f7
      Michael Goderbauer authored
      * getOffsetToReveal deals with pinned slivers
      
      If a Sliver can potentially be pinned at the edge of a viewport, getOffsetToReveal will take that into account and scroll further up/down to ensure that the object to reveal doesn't end up covered by a pinned sliver.
      
      This is important for accessibility scrolling with app bars.
      
      Since how much a pinned sliver is covering is dynamic (it can change with scroll offset, etc), getOffsetToReveal deals with the worst case and tries to ensure that the object to uncover is visible when the pinned slivers are at their max pinned extent.
      
      * name fixes
      
      * review feedback
      
      * typos
      
      * renaming
      
      * fix analyzer
      
      * fix test
      
      * analyzer fixes
      30fd06f7
  11. 26 Aug, 2017 1 commit
    • Michael Goderbauer's avatar
      Doc updates for Semantics; always reset SemanticsNode (#11770) · f2653015
      Michael Goderbauer authored
      * refactor to ensureAction + some related doc fixes
      
      * Update docs for markNeedsSemanticsUpdate
      
      * rewording
      
      * rewording
      
      * ensureAction test
      
      * ensureAction test
      
      * ensureAction test
      
      * more tests
      
      * refactor to allways reset node
      
      * tiny fixes
      
      * more test
      
      * doc fixes
      
      * one more test
      
      * review comments
      f2653015
  12. 23 Aug, 2017 1 commit
    • Michael Goderbauer's avatar
      a11y and scrolling with slivers (#11711) · f969b777
      Michael Goderbauer authored
      * refactor to assembleSemanticNode
      
      * ++
      
      * cleanup
      
      * fix test
      
      * add note
      
      * review comments
      
      * review feedback
      
      * import fix
      
      * another import fix
      
      * refactor to ensure tag
      
      * tests, tests, tests
      
      * analyzer fixes
      
      * review comments
      f969b777
  13. 03 Aug, 2017 1 commit
  14. 25 Jul, 2017 1 commit
  15. 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
  16. 27 Jun, 2017 1 commit
  17. 06 Jun, 2017 1 commit
  18. 05 Jun, 2017 1 commit
  19. 12 Apr, 2017 1 commit
  20. 29 Mar, 2017 1 commit
  21. 02 Mar, 2017 1 commit
  22. 24 Feb, 2017 1 commit
    • Adam Barth's avatar
      Overscrolls should appear below pinned headers (#8383) · eb839755
      Adam Barth authored
      With slivers, the app bar is part of the scroll view. Naively, the overscroll
      appears at the beginning of the scroll view, but that's not the desired
      behavior. Instead, the app bar should remained pinned to the top of the scroll
      view and the overscroll should appear below the app bar, which is what this
      patch does.
      
      Fixes #8228
      eb839755
  23. 23 Feb, 2017 2 commits
  24. 21 Feb, 2017 1 commit
  25. 17 Feb, 2017 1 commit
  26. 09 Feb, 2017 1 commit
    • Ian Hickson's avatar
      Port AppBar to Scrollable2 (#7996) · 83a4cf26
      Ian Hickson authored
      Move the back button and drawer opening logic into the app bar.
      
      Move the tap-status-bar-to-scroll-to-top logic to using
      ScrollControllers. Provide a PrimaryScrollController and a `primary`
      flag on scroll views.
      
      Make it possible to track when a route becomes or stops being poppable.
      83a4cf26
  27. 06 Feb, 2017 1 commit
  28. 03 Feb, 2017 1 commit
  29. 01 Feb, 2017 2 commits
  30. 31 Jan, 2017 1 commit
    • Adam Barth's avatar
      Add SliverGrid and ScrollGrid (#7745) · 9119969a
      Adam Barth authored
      This patch adds grid supports to slivers and introduces a ScrollGrid
      convenience class for making the common types of scrollable grids.
      
      This patch also deploys ScrollGrid in an example in the Flutter Gallery.
      9119969a
  31. 25 Jan, 2017 2 commits