Skip to content

v103.1.0

Compare
Choose a tag to compare
@jverkoey jverkoey released this 27 Jan 20:51
· 1472 commits to stable since this release

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

AppBar

BottomNavigation

Dialogs

FeatureHighlight

FlexibleHeader

NavigationDrawer

Snackbar

TextControls

TextFields