| Index: ios/showcase/core/app_delegate.mm
|
| diff --git a/ios/showcase/core/app_delegate.mm b/ios/showcase/core/app_delegate.mm
|
| index 788d4a773a083501095d7eb237f081da7aada7e1..fda5403304f46f7c728ab057675a3296453a1808 100644
|
| --- a/ios/showcase/core/app_delegate.mm
|
| +++ b/ios/showcase/core/app_delegate.mm
|
| @@ -6,6 +6,9 @@
|
|
|
| #import "ios/showcase/core/showcase_model.h"
|
| #import "ios/showcase/core/showcase_view_controller.h"
|
| +#import "ios/third_party/material_components_ios/src/components/Typography/src/MaterialTypography.h"
|
| +#import "ios/third_party/material_roboto_font_loader_ios/src/src/MDCTypographyAdditions/MDFRobotoFontLoader+MDCTypographyAdditions.h"
|
| +#import "ios/third_party/material_roboto_font_loader_ios/src/src/MaterialRobotoFontLoader.h"
|
|
|
| #if !defined(__has_feature) || !__has_feature(objc_arc)
|
| #error "This file requires ARC support."
|
| @@ -16,7 +19,7 @@
|
|
|
| - (BOOL)application:(UIApplication*)application
|
| didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
|
| - // Override point for customization after application launch.
|
| + [MDCTypography setFontLoader:[MDFRobotoFontLoader sharedInstance]];
|
| self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
| ShowcaseViewController* viewController =
|
| [[ShowcaseViewController alloc] initWithRows:[self rowsToDisplay]];
|
|
|