diff --git a/catalog/MDCCatalog/Base.lproj/LaunchScreen.storyboard b/catalog/MDCCatalog/Base.lproj/LaunchScreen.storyboard index 323bd431771..6bc0d3f5264 100644 --- a/catalog/MDCCatalog/Base.lproj/LaunchScreen.storyboard +++ b/catalog/MDCCatalog/Base.lproj/LaunchScreen.storyboard @@ -1,8 +1,7 @@ - + - - + diff --git a/components/AppBar/examples/AppBarImageryExample.m b/components/AppBar/examples/AppBarImageryExample.m index 04796413449..5b30281843f 100644 --- a/components/AppBar/examples/AppBarImageryExample.m +++ b/components/AppBar/examples/AppBarImageryExample.m @@ -65,7 +65,7 @@ - (UIStatusBarStyle)preferredStatusBarStyle { // Typical image loading. - (UIImage *)headerBackgroundImage { NSBundle *bundle = [NSBundle bundleForClass:[self class]]; - NSString *imagePath = [bundle pathForResource:@"dinosaur" ofType:@"jpg"]; + NSString *imagePath = [bundle pathForResource:@"mdc_theme" ofType:@"png"]; return [UIImage imageWithContentsOfFile:imagePath]; } diff --git a/components/AppBar/examples/AppBarImageryExample.swift b/components/AppBar/examples/AppBarImageryExample.swift index 9393631769e..761747487ee 100644 --- a/components/AppBar/examples/AppBarImageryExample.swift +++ b/components/AppBar/examples/AppBarImageryExample.swift @@ -75,7 +75,7 @@ class AppBarImagerySwiftExample: UITableViewController { func headerBackgroundImage() -> UIImage { let bundle = NSBundle(forClass: AppBarImagerySwiftExample.self) - let imagePath = bundle.pathForResource("dinosaur", ofType: "jpg")! + let imagePath = bundle.pathForResource("mdc_theme", ofType: "png")! return UIImage(contentsOfFile: imagePath)! } } diff --git a/components/AppBar/examples/resources/dinosaur.jpg b/components/AppBar/examples/resources/dinosaur.jpg deleted file mode 100644 index e5a8ebc2171..00000000000 Binary files a/components/AppBar/examples/resources/dinosaur.jpg and /dev/null differ diff --git a/components/AppBar/examples/resources/mdc_theme.png b/components/AppBar/examples/resources/mdc_theme.png new file mode 100644 index 00000000000..2aa056b38eb Binary files /dev/null and b/components/AppBar/examples/resources/mdc_theme.png differ