GoogleMaterialIconFont alternatives and similar libraries
Based on the "Fonts" category.
Alternatively, view GoogleMaterialIconFont alternatives based on common mentions on social networks and blogs.
-
SwiftIconFont
Icons fonts for iOS (Font Awesome 5, Iconic, Ionicon, Octicon, Themify, MapIcon, MaterialIcon, Foundation 3, Elegant Icon, Captain Icon) -
Swicon
Use 1600+ icons (and more!) from FontAwesome and Google Material Icons in your swift/iOS project in an easy and space-efficient way!
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of GoogleMaterialIconFont or a related project?
README
GoogleMaterialIconFont
Google Material Design Icons for Swift and ObjC project
This library is inspired by FontAwesome.swift
Both Swift and Objctive-C are supported
See example project or Material icons more detail
Usage
Swift
import GoogleMaterialIconFont
label.text = String.materialIcon(.Favorite)
label.font = UIFont.materialIconOfSize(32)
Objective-C
import #import <GoogleMaterialIconFont/GoogleMaterialIconFont-Swift.h>
label.text = [NSString materialIcon:MaterialIconFontFavoriteBorder];
label.font = [UIFont materialIconOfSize:32];
Requirements
iOS8+
Swift 2.3+
Xcode 8.0+
Installation
CocoaPods
GoogleMaterialIconFont is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "GoogleMaterialIconFont"
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3'
end
end
end
Then, run pod install
In case you haven't installed CocoaPods yet, run the following command
$ gem install cocoapods
Carthage
GoogleMaterialIconFont is available through Carthage.
To install GoogleMaterialIconFont into your Xcode project using Carthage, specify it in your Cartfile:
github "kitasuke/GoogleMaterialIconFont"
Then, run carthage update --toolchain com.apple.dt.toolchain.Swift_2_3
You can see Carthage/Build/iOS/GoogleMaterialIconFont.framework
now, so drag and drop it to Embedded Binaries
in General
menu tab with your project.
In case you haven't installed Carthage yet, download the latest pkg from Carthage
Manual
Copy all the files in Pod
directory into your project.
Make sure that GoogleMaterialIconFont.ttf
is specified into Fonts provided by application
in your project's info.plist
License
This library uses material-design-icons by Google to create icon font file which is GoogleMaterialIconFont.ttf
. Therefore, GoogleMaterialIconFont.ttf
is available under the Creative Common Attribution 4.0 International License (CC-BY 4.0)
GoogleMaterialIconFont is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the GoogleMaterialIconFont README section above
are relevant to that project's source code only.