This repository was archived by the owner on Dec 11, 2025. It is now read-only.
v109.8.0
In this minor release we added indeterminate mode to MDCProgressView. As well as various bug fixes to ActionSheet, Banner, Dialog, and TextFields components.
New features
MDCProgressView now supports indeterminate mode.
MDCProgressView *progressView = [[MDCProgressView alloc] init];
progressView.mode = MDCProgressViewModeIndeterminate;
[progressView startAnimating];API changes
Buttons
new property: defaultContentEdgeInsets in MDCButton
ProgressView
new enum: MDCProgressViewMode
new property: mode in MDCProgressView
new property: animating in MDCProgressView
new method: setMode:animated:completion: in MDCProgressView
new method: startAnimating in MDCProgressView
new method: stopAnimating in MDCProgressView
Component changes
ActionSheet
- Mark title as accessibility
.header(Rob Moore)
Banner
- Support two buttons on a single row style banner. (Wenyu Zhang)
Buttons
Dialogs
- Voice over reads the message twice (Nobody)
ProgressView
Tabs
- Add explicit cast in MDCTabBarViewTests. (Wenyu Zhang)
- Internal change (Jeff Verkoeyen)
TextFields
private/TextControlsPrivate
- Rename + small refactor of horizontal positioning stuff (Andrew Overton)