Skip to content

v109.3.0

Compare
Choose a tag to compare
@galiak11 galiak11 released this 12 May 21:17
· 837 commits to stable since this release

This minor release includes API improvements to ProgressView, SnackBars and TextFields, as well as tests and bug fixes for ActionSheet, AppBar, BottomAppBar, BottomSheet, Collections, Dialogs, FlexibleHeader and Tabs.

New features

ProgressView supports a gradient progress bar:

self.progressView.progressTintColors = @[
  (id)UIColor.greenColor.CGColor, (id)UIColor.blueColor.CGColor, (id)UIColor.redColor.CGColor
];

Snackbars support setting presentation host view on a specific message:

MDCSnackbarMessage *message = [MDCSnackbarMessage messageWithText:@"message"];
message.presentationHostViewOverride = self.collectionView;

Snackbars enable dismissal when the user taps anywhere on the snackbar.

MDCSnackbarMessage *message = [MDCSnackbarMessage messageWithText:@"message"];
message.shouldDismissOnOverlayTap = YES;

TextFields support setting the border radius:

textField.borderRadius = 4.0f;

API changes

Component changes

ActionSheet

AppBar

BottomAppBar

BottomSheet

Collections

Dialogs

FlexibleHeader

ProgressView

Snackbar

Tabs

TextFields

Multi-component changes