Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

v72.2.0

Choose a tag to compare

@yarneo yarneo released this 11 Dec 21:03

In this minor release we added scrimColor support for MDCBottomSheetController and added a theming extension support for MDCAlertController. We also added TextFields snapshot testing along with various bug fixes.

New features

Bottom Sheet scrimColor API usage example

  MDCBottomSheetController *bottomSheet =
      [[MDCBottomSheetController alloc] initWithContentViewController:viewController];
  bottomSheet.scrimColor = UIColor.blueColor;
  [self presentViewController:bottomSheet animated:YES completion:nil];

Dialogs Theming Extension usage example

  var scheme: MDCContainerScheming {
    let scheme = MDCContainerScheme()
    scheme.colorScheme = colorScheme
    scheme.typographyScheme = typographyScheme
    return scheme
  }
  ...
  let alertController = MDCAlertController(title: "Title", message: "Message")
  alertController.applyTheme(withScheme: scheme)

Bug fixes

{Git-LFS} Exclude git-lfs from stable #5977

API changes

Component changes

Changes

ActionSheet

BottomSheet

Buttons

Chips

Dialogs

FlexibleHeader

NavigationDrawer

private/KeyboardWatcher

Textfields

Multi-component changes