1. 27 Jun, 2018 4 commits
  2. 26 Jun, 2018 7 commits
  3. 25 Jun, 2018 11 commits
  4. 22 Jun, 2018 13 commits
  5. 21 Jun, 2018 5 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
    • Sam Rawlins's avatar
      Bump mockito to 3.0.0-beta (#18462) · 9f8a70be
      Sam Rawlins authored
      * Bump mockito to 3.0.0-beta
      
      * Few fixes
      
      * fix test
      
      * Bump image
      
      * Fix
      
      * New packages update
      
      * With matcher pinned
      
      * No more typed
      9f8a70be
    • 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