1. 02 Sep, 2015 17 commits
  2. 01 Sep, 2015 15 commits
  3. 31 Aug, 2015 8 commits
    • Ian Fischer's avatar
      Merge pull request #976 from domokit/iansf-update-readme-install · 99356d10
      Ian Fischer authored
      Update README.md to reflect removal of --install flag.
      99356d10
    • Ian Fischer's avatar
      2a831f54
    • Hans Muller's avatar
      Merge pull request #974 from HansMuller/dismissable-uses-gestures · 9d1bb04a
      Hans Muller authored
      Convert Dismissable to use gestures
      
      Convert Dismissable to use the ScrollStart, ScrollUpdate, and ScrollEnd gestures. Support for fling gestures is TBD.
      
      Included a basic unit test that checks that one item can be dismissed with a press-drag-release gesture.
      
      Fixed the scroll gesture recognizer: if the last pointer goes up and candidate recognizers still exist, then reject the gesture.
      9d1bb04a
    • Hans Muller's avatar
      Convert Dismissable to use gestures · 7a42fe34
      Hans Muller authored
      Convert Dismissable to use the ScrollStart, ScrollUpdate, and ScrollEnd gestures. Support for fling gestures is TBD.
      
      Included a basic unit test that checks that one item can be dismissed with a press-drag-release gesture.
      
      Fixed the scroll gesture recognizer: if the last pointer goes up and candidate recognizers still exist, then reject the gesture.
      7a42fe34
    • Adam Barth's avatar
      Merge pull request #972 from abarth/parent_data_madness · bd038cfc
      Adam Barth authored
      Positioned 'remembers' things it shouldn't
      bd038cfc
    • Adam Barth's avatar
      Positioned 'remembers' things it shouldn't · 64a78414
      Adam Barth authored
      This patch makes ParentDataNode less general purpose and instead teaches Flex
      and Stack how to program the parent data for their children. We used to have
      this general system because parent data used to carry CSS styling, but we don't
      need it anymore.
      
      Fixes #957
      64a78414
    • Ian Hickson's avatar
      Merge pull request #971 from Hixie/address · 17476a68
      Ian Hickson authored
      Remove the silly dialog.
      17476a68
    • Hixie's avatar
      Remove the inner SizeObserver from ScrollableWidgetList. · 820137b7
      Hixie authored
      Adds a HomogeneousViewport class that works like MixedViewport but
      handles only children that have all the same height.
      
      Converts ScrollableWidgetList to use that, so that we don't waste a
      frame looking at the size of the contents each time we change size.
      
      This allows a number of seemingly pointless double-pumps in the tests
      to be removed.
      
      Other changes that were necessary to support the above:
      
       - RenderBlock now supports minExtent (think 'min-height' in CSS)
       - RenderBlock now supports itemExtent (forces the height of each
         child to be the same, so that the itemExtent passed to the fixed-
         height scrollables are all authoritative instead of a source of
         bugs when they don't match)
       - RenderBlockViewport now supports horizontal scrolling
       - improved the style of the isInfinite assert in box.dart
       - fixed the position of a comment in mixed_viewport.dart
       - added a test
       - made the logic for how many items to show be more precise
      820137b7