1. 11 Dec, 2015 7 commits
  2. 10 Dec, 2015 27 commits
  3. 09 Dec, 2015 6 commits
    • krisgiesing's avatar
      Merge pull request #843 from krisgiesing/activity_service · 37f685b4
      krisgiesing authored
      Use explicit service name for activity service
      37f685b4
    • Adam Barth's avatar
      Merge pull request #846 from abarth/text_decoration · ac0aed5a
      Adam Barth authored
      Update to the new TextDecoration API
      ac0aed5a
    • Adam Barth's avatar
      Update to the new TextDecoration API · ab89d2e4
      Adam Barth authored
      Now with fewer lists.
      ab89d2e4
    • Adam Barth's avatar
      Merge pull request #848 from abarth/active_color · dbf6149a
      Adam Barth authored
      Let clients of Checkbox, Radio, Slider, and Switch customize the activeColor
      dbf6149a
    • Adam Barth's avatar
      Let clients of Checkbox, Radio, Slider, and Switch customize the activeColor · 5f29d950
      Adam Barth authored
      We might want to let folks customize the inactive color too, but customizing
      the active color is a good place to start.
      5f29d950
    • Hans Muller's avatar
      Merge pull request #820 from HansMuller/pageable_list · 3b3d5983
      Hans Muller authored
      Revised PageableList et al
      
      An itemExtent-computing SizeObserver is no longer needed to use PageableList. The PageableList just uses its own size as the itemExtent.
      
      Added the itemsSnapAlignment property to PageableList which enables snapping scrolls to an adjacent item (the default), or any item boundary no not at all.
      
      PageableList scrollOffsets now vary from 0.0 to itemCount instead of 0.0 to itemExtent * itemCount. Using logical coordinates instead of pixel coordinates means that the scroll position is insensitive to changes in the PageablList's size.
      
      Added HomogenousPageViewport which is used by PageableList. HomogenousPageViewport scrollOffsets are defined as for PageableList.
      
      Factored the (substantial) common parts of HomogenousViewport HomogenousPageViewport into a file private _ViewportBase class.
      
      Removed PageableWidgetList. PageableList now just extends Scrollable. Moved PageableList into its own file.
      
      Removed the pixel dependencies from ScrollBehavior. ScrollBehavior.createFlingSimulation() no longer sets the simulation's tolerance. The caller must do this instead.
      
      Scrollable now uses pixelToScrollOffset() to convert from input gesture positions and velocities to scrollOffsets.
      
      Fixes #710
      3b3d5983