├── .clang-format ├── .codecov.yml ├── .gitignore ├── .jazzy.yaml ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MDFRobotoFontLoader.podspec ├── README.md ├── RELEASING.md ├── examples ├── RobotoFontLoaderSimpleExampleViewController.h ├── RobotoFontLoaderSimpleExampleViewController.m ├── RobotoVsSystemExampleViewController.m ├── WebViewExample.html ├── WebViewExampleViewController.h ├── WebViewExampleViewController.m ├── apps │ └── RobotoFontLoaderExample │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── RobotoFontLoaderExample.xcodeproj │ │ └── project.pbxproj │ │ ├── RobotoFontLoaderExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ │ └── RobotoFontLoaderExampleTests │ │ └── Info.plist └── resources │ └── RobotoVsSystem.storyboard ├── src ├── MDCTypographyAdditions │ ├── MDFRobotoFontLoader+MDCTypographyAdditions.h │ └── MDFRobotoFontLoader+MDCTypographyAdditions.m ├── MDFRobotoFontLoader.h ├── MDFRobotoFontLoader.m ├── MaterialRobotoFontLoader.bundle │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── Roboto-ThinItalic.ttf └── MaterialRobotoFontLoader.h └── tests └── unit └── RobotoFontLoaderTests.m /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /MDFRobotoFontLoader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/MDFRobotoFontLoader.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/RELEASING.md -------------------------------------------------------------------------------- /examples/RobotoFontLoaderSimpleExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/RobotoFontLoaderSimpleExampleViewController.h -------------------------------------------------------------------------------- /examples/RobotoFontLoaderSimpleExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/RobotoFontLoaderSimpleExampleViewController.m -------------------------------------------------------------------------------- /examples/RobotoVsSystemExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/RobotoVsSystemExampleViewController.m -------------------------------------------------------------------------------- /examples/WebViewExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/WebViewExample.html -------------------------------------------------------------------------------- /examples/WebViewExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/WebViewExampleViewController.h -------------------------------------------------------------------------------- /examples/WebViewExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/WebViewExampleViewController.m -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/Podfile -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/Podfile.lock -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/AppDelegate.h -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/AppDelegate.m -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/Info.plist -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExample/main.m -------------------------------------------------------------------------------- /examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/apps/RobotoFontLoaderExample/RobotoFontLoaderExampleTests/Info.plist -------------------------------------------------------------------------------- /examples/resources/RobotoVsSystem.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/examples/resources/RobotoVsSystem.storyboard -------------------------------------------------------------------------------- /src/MDCTypographyAdditions/MDFRobotoFontLoader+MDCTypographyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MDCTypographyAdditions/MDFRobotoFontLoader+MDCTypographyAdditions.h -------------------------------------------------------------------------------- /src/MDCTypographyAdditions/MDFRobotoFontLoader+MDCTypographyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MDCTypographyAdditions/MDFRobotoFontLoader+MDCTypographyAdditions.m -------------------------------------------------------------------------------- /src/MDFRobotoFontLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MDFRobotoFontLoader.h -------------------------------------------------------------------------------- /src/MDFRobotoFontLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MDFRobotoFontLoader.m -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.bundle/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.bundle/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /src/MaterialRobotoFontLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/src/MaterialRobotoFontLoader.h -------------------------------------------------------------------------------- /tests/unit/RobotoFontLoaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/material-roboto-font-loader-ios/HEAD/tests/unit/RobotoFontLoaderTests.m --------------------------------------------------------------------------------