1. 07 Feb, 2017 7 commits
  2. 06 Feb, 2017 8 commits
  3. 05 Feb, 2017 1 commit
  4. 04 Feb, 2017 14 commits
  5. 03 Feb, 2017 10 commits
    • Jason Simmons's avatar
      Roll engine (#7862) · 883bae07
      Jason Simmons authored
      883bae07
    • Adam Barth's avatar
      Reparameterize Scrollable2 (#7853) · 072cce88
      Adam Barth authored
      This patch makes a number of changes to how you can configure a
      Scrollable2:
      
       - The ScrollPhysics is now responsible for creating the ScrollPosition.
         You can override the ScrollPhysics by supplying a `physics` argument
         to `Scrollable`, and the new physics you supply will be applied to
         the default physics inherited from the ScrollBehavior.
      
       - This patch removes the ScrollPosition/AbsoluteScrollPosition split as
         all clients were operating in pixels anyway and the split made the
         code very difficult to follow.
      
       - ScrollPosition no longer depends directly on Scrollable2State.
         Instead, it depends on an abstract interface that Scrollable2State
         implements. This change has two benefits:
      
          a) It removes the circular dependency between ScrollPosition and
             Scrollable2State, which lets us split the code for these classes
             (and several other classes that got wrapped up in that cycle) into
             separate libraries for easier maintenance.
      
          b) ScrollPosition is no longer bound to Scrollable2, which means you
             could use the behavior machinery to drive other sorts of widgets.
             For example, we could use it to drive Scrollabe1 if we wanted.
      072cce88
    • xster's avatar
      Optional general date predicate mechanism (#7858) · 475e7ce9
      xster authored
      475e7ce9
    • Ian Hickson's avatar
      Test service extensions (#7849) · be7be2b8
      Ian Hickson authored
      ...and fix bugs that the tests uncovered.
      
      WRITE TEST FIND BUG
      be7be2b8
    • Chris Bracken's avatar
      Improved error message for iOS device on a non-Mac host (#7859) · cce70d70
      Chris Bracken authored
      And fix some un-grammatical language below.
      cce70d70
    • Chris Bracken's avatar
      Improved detection of unsupported iOS devices (#7857) · fb72f21c
      Chris Bracken authored
      * Detects iPad 2 and iPad Retina as unsupported devices.
      * Simplifies blacklisting logic.
      * Minor improvements to error messages.
      * Added unit tests.
      fb72f21c
    • Chris Bracken's avatar
      Fix typos, quote consistency (#7856) · 104fcf8d
      Chris Bracken authored
      104fcf8d
    • Adam Barth's avatar
      Remove Scrollable2.initialScrollOffset (#7842) · 2ec02c33
      Adam Barth authored
      This property is wired up to anything and it isn't used. We'll need to find a
      better way for clients to control the scroll offset.
      2ec02c33
    • Chris Bracken's avatar
      Subclass FlutterAppDelegate in iOS examples (#7847) · acc7d110
      Chris Bracken authored
      Subclassing FlutterAppDelegate is not required for real-world apps, but
      it's what 'flutter create' generates, and applies the default behaviours
      that most real-world apps will want.
      acc7d110
    • Chris Bracken's avatar
      Use FlutterAppDelegate in iOS create template (#7845) · aaff608d
      Chris Bracken authored
      On iOS, generate a FlutterAppDelegate subclass for the application
      delegate. This avoids touchesBegan:withEvent boilerplate to handle
      status bar taps.
      aaff608d