1. 28 Aug, 2019 21 commits
  2. 27 Aug, 2019 17 commits
  3. 26 Aug, 2019 2 commits
    • stuartmorgan's avatar
      Add profile support on macOS (#39264) · 74076958
      stuartmorgan authored
      Fix some places where Debug/Release was treated as a binary switch.
      
      Makes similar changes to Windows and Linux to simplify adding profile
      support to those platforms in the future. This means `--profile` builds
      will fail on Linux and Windows for now, but that's fine since they
      aren't actually supported, and unlike `--release` don't provide useful
      functionality at the native code level.
      
      Also fixes 'stopApp' always using Debug on macOS, to avoid showing an
      error when running Profile (or Release).
      
      Fixes #33203
      74076958
    • Tom Robinson's avatar
      Change SliverGeometry.maxScrollObstructionExtent for... · 6204eb64
      Tom Robinson authored
      Change SliverGeometry.maxScrollObstructionExtent for RenderSliverFloatingPersistentHeader to match docs (#39263)
      
      
      RenderSliverFloatingPersistentHeader does not pin to the leading edge of the viewport so the value of maxScrollObstructionExtent in it's SliverGeometry should be 0 per the docs at https://api.flutter.dev/flutter/rendering/SliverGeometry/maxScrollObstructionExtent.html.
      6204eb64