Material Components v60.3.0 Release Notes

  • ๐Ÿš€ This minor release introduces a new behavioral flag for changing the title font size on MDCNavigationBar.

    ๐Ÿ†• New features

    MDCNavigationBar has a new flag that, once enabled, allows you to set a font with any size.

    MDCNavigationBar *navigationBar = [[MDCNavigationBar alloc] init];
    navigationBar.allowAnyTitleFontSize = YES;
    UIFont *font = [UIFont systemFontOfSize:24];
    navigationBar.titleFont = font; // Font size will actually be 24
    

    API changes

    NavigationBar

    MDCNavigationBar

    ๐Ÿ†• new property: allowAnyTitleFontSize in MDCNavigationBar

    Component changes

    NavigationBar

    ๐Ÿ”„ Changes