1. 12 Sep, 2017 2 commits
  2. 11 Sep, 2017 8 commits
  3. 08 Sep, 2017 7 commits
  4. 07 Sep, 2017 9 commits
  5. 06 Sep, 2017 8 commits
  6. 05 Sep, 2017 6 commits
    • Chris Bracken's avatar
      Update minimum ios-deploy version to 1.9.2 (#11936) · de736f0d
      Chris Bracken authored
      ios-deploy 1.9.2 includes fixes for a common source of Xcode breakage
      (flutter/flutter#4326) with Xcode 8.3.3 + iOS 10.3.3, and is required to
      to support Xcode 9 (flutter/flutter#11875).
      de736f0d
    • Chris Bracken's avatar
      Update DevToolsSecurity doctor message (#11935) · 93438245
      Chris Bracken authored
      Opening Xcode is no longer sufficient to enable develop mode in Xcode 9.
      Update the message to run the command-line tool. Alternatively users can
      launch an app in the Xcode debugger to do this.
      93438245
    • 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
    • Adam Barth's avatar
      Add RTL support to GridView (#11921) · 8eb6ad27
      Adam Barth authored
      Fixes #11855
      8eb6ad27
    • Chris Bracken's avatar
      Invalidate snapshot when entrypoint changes (#11913) · c896fe2f
      Chris Bracken authored
      Adds the app entrypoint as a key in the checksum file.
      
      This change eliminates the assumption that checksummed files change when
      the main entrypoint changes. In the case where there are two
      entrypoints, a.dart and b.dart and a.dart imports b.dart and b.dart
      imports a.dart, building the app with entrypoint a.dart followed by a
      build of the app with entrypoint b.dart would result in the same
      files list and checksums, but should invalidate the build.
      c896fe2f
    • Alexander Aprelev's avatar
      Move host build check until it's actually used. (#11926) · 59bc0a0f
      Alexander Aprelev authored
      * Move host build check until it's actually used
      
      * Elaborate diagnostic message
      59bc0a0f