v103.1.0
This minor release introduces iOS 13 support for BottomNavigation, divider customization for ActionSheet actions, and several bug fixes.
New features
ActionSheet
MDCActionSheetAction has two new APIs, dividerColor
and showsDivider
. These APIs can be used to show a divider above the action.
action.showsDivider = YES;
action.dividerColor = UIColor.greenColor;
MDCActionSheetController now has a delegate, MDCActionSheetControllerDelegate
, that can be used to react to action sheet dismissal.
actionSheet.delegate = self;
- (void)actionSheetControllerDidDismiss:(MDCActionSheetController *)actionSheetController {
NSLog(@"Did dismiss");
}
BottomNavigation
MDCBottomNavigationBar now supports iOS 13's large content viewer functionality.
Component changes
ActionSheet
- Action sheet divider (#9449) (Cody Weaver)
- Add delegate to support dismissal notification (#9475) (Bryan Oltman)
AppBar
BottomNavigation
- Adds large content viewer support (#9451) (Eric Lee)
- Fix bug in delegate method call (#9489) (Robert Moore)
Dialogs
FeatureHighlight
FlexibleHeader
- Annotate to-be-deprecated APIs accordingly. (#9492) (featherless)
NavigationDrawer
Snackbar
- Add example to show snackbar with keyboard (#9479) (Bryan Oltman)
- Update dismiss animation duration (#9472) (Yarden Eitan)
TextControls
- Update README (#9466) (Andrew Overton)
TextFields
- Add identity check in -setTextColor: in MDCTextField (#9480) (Andrew Overton)
- MDCTextInputControllerOutlinedTextArea border width fix (#9454) (Andrew Overton)