1. 27 Jun, 2018 3 commits
  2. 25 Jun, 2018 4 commits
  3. 22 Jun, 2018 5 commits
  4. 21 Jun, 2018 7 commits
    • liyuqian's avatar
      Reland: Skip painting hidden children of a sliver list (#18539) · e581435d
      liyuqian authored
      * Revert "manual rollback of of 18530 (#18531)"
      
      This reverts commit 3f79f8cb.
      
      * Fix the offset calculation
      
      * Add a unit test
      e581435d
    • Hans Muller's avatar
      bec91216
    • Yegor's avatar
      fix build scope messages and docs (#18637) · a57aff05
      Yegor authored
      a57aff05
    • amirh's avatar
      Move the notch computation from the FAB to the BAB. (#18372) · c39f2f26
      amirh authored
      Move the notch computation from the FAB to the BAB.
      
      The notch in the BAB (bottom action bar) for the FAB (floating action button) was previously kept as part of the FAB's implementation. This was done to keep the shape of the FAB and the shape of the notch coupled.
      That approach resulted in a somewhat complex and 'non Fluttery' mechanism for propagating the notch computation from the FAB to the BAB.
      
      This CL uncouples the FAB and the notch computation.
      With the new API the BAB computes its overall shape including the notch using a NotchedShape delegate.
      
      This includes multiple breaking changes:
        * Scaffold.setFloatingActionButtonNotchFor is deleted.
        * The ComputeNotch type is deleted.
        * The hasNotch property of BottomAppBar is deleted.
        * The notchMargin property of FloatingActionButton is deleted.
      
      Quick migration guide from the previous API:
      
      | Previous API | New API |
      | ------------------|-------------|
      | BottomAppBar(hasNotch: false) | BottomAppBar() |
      | Using a FloatingActionButton with: BottomAppBar() / BottomAppBar(hasNotch: true) | BottomAppBar(shape: CircularNotchedRectangle()) |
      | Scaffold.setFloatingActionButtonNotchFor(..) | No longer supported |
      c39f2f26
    • liyuqian's avatar
      Remove saveLayer after clip from dart (#18616) · 65069ed4
      liyuqian authored
      This is a follow up on https://github.com/flutter/engine/pull/5420
      and https://github.com/flutter/flutter/issues/18057
      
      As you can see from the diff, we also mistakenly saveLayer before
      the clip at some places previously.
      65069ed4
    • matthew-carroll's avatar
      Use RenderAnimatedOpacity within AnimatedOpacity widget (#15466) (#18121) · d916806a
      matthew-carroll authored
      * Use RenderAnimatedOpacity within AnimatedOpacity widget (#15466)
      
      * Fixed minor bug in RenderAnimatedOpacity
      
      * Updated protected API for ImplicitlyAnimatedWidget
      d916806a
    • Dan Field's avatar
      Expose Text foreground from engine (#18347) · a18f5e84
      Dan Field authored
      * update tests for TextStyle changes in engine
      
      * roll engine, support Foreground on TextStyle
      
      * roll to TextStyle.foreground
      
      * add tests, update docs, fixes from tests
      
      * add golden tests
      
      * stroke + gradient
      
      * update goldens hash
      
      * Use centered widget
      
      * fix typo
      
      * Disable golden tests until Linux generated files are available
      
      * update goldens
      a18f5e84
  5. 20 Jun, 2018 5 commits
  6. 19 Jun, 2018 3 commits
  7. 16 Jun, 2018 3 commits
  8. 15 Jun, 2018 7 commits
  9. 14 Jun, 2018 1 commit
  10. 13 Jun, 2018 2 commits
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
    • xster's avatar
      Fix ListView dartdoc where a paragraph doesn't flow with the section heading... · 210e2fa3
      xster authored
      Fix ListView dartdoc where a paragraph doesn't flow with the section heading and the other paragraphs in the section (#18430)
      
      210e2fa3