1. 05 Apr, 2017 6 commits
  2. 04 Apr, 2017 21 commits
  3. 03 Apr, 2017 4 commits
    • Hans Muller's avatar
      bb5351b7
    • xster's avatar
      Make Cupertino page transitions match native behaviours (#9138) · 58ddde88
      xster authored
      * Moved stuff around yet
      
      * Fix depedencies
      
      * Add more dartdoc comments to packages
      
      * Remove Cupertino dependency on material
      
      * Removed mountain_view package and added page transition test
      
      * Fix analyze warnings
      
      * Remove commented code
      
      * Partial solution. Still need to stop the animation on the previous page for modal
      
      * Some review notes
      
      * Move the cupertino back gesture controller’s lifecycle management back to its parent
      
      * Reviews
      
      * Add background color
      
      * Directional curves, full screen transition
      
      * Don’t perform the exit animation if the incoming page is a dialog
      
      * It works!
      
      * Test structures
      
      * Add a bunch of more tests and fix the gallery
      
      * One more comment
      
      * Review notes
      
      * final controller
      
      * Use that sweet sweet `is!` keyword
      
      * Play golf, because I’m bitter that there’s no nullable `as` or something in dart
      
      * Remove a space
      
      * Review notes
      
      * Remove the last deprecated test
      58ddde88
    • xster's avatar
      Extract cupertino page transition out of material (#9059) · c7f98efb
      xster authored
      * Moved stuff around yet
      
      * Fix depedencies
      
      * Add more dartdoc comments to packages
      
      * Remove Cupertino dependency on material
      
      * Removed mountain_view package and added page transition test
      
      * Fix analyze warnings
      
      * Remove commented code
      
      * Some review notes
      
      * Move the cupertino back gesture controller’s lifecycle management back to its parent
      
      * Reviews
      
      * Add background color
      
      * final controller
      
      * Review notes
      c7f98efb
    • Collin Jackson's avatar
  4. 02 Apr, 2017 6 commits
  5. 31 Mar, 2017 3 commits
    • Jason Simmons's avatar
    • Chris Bracken's avatar
      iOS: fail build wth error if Python six missing (#9135) · a54979e1
      Chris Bracken authored
      Xcode builds depend on the Python 'six' module. If not present, exit
      immediately with a useful error message.
      
      The six module is included in the system default Python installation. We
      perform this check in case a custom Python install has higher priority
      on $PATH; e.g., due to a Homebrew or MacPorts installation.
      
      This extracts an existing doctor check to use it during the build step
      as well.
      a54979e1
    • Adam Barth's avatar
      Improve focus management (#9074) · 89aaaa9c
      Adam Barth authored
      We now have an explicit focus tree that we manage. Instead of using
      GlobalKeys to manage focus, we use FocusNode and FocusScopeNode objects.
      The FocusNode is Listenable and notifies when its focus state changes.
      
      Focus notifications trigger by tree mutations are now delayed by one
      frame, which is necessary to handle certain complex tree mutations. In
      the common case of focus changes being triggered by user input, the
      focus notificiation still arives in the same frame.
      89aaaa9c