All Projects → adamgolczak → GoogleMD-Icons

adamgolczak / GoogleMD-Icons

Licence: MIT license
Google Material Design Icons Library

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to GoogleMD-Icons

Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+12850%)
Mutual labels:  font, icons, icons-pack
Simple Line Icons
Simple and Minimal Line Icons
Stars: ✭ 1,815 (+12864.29%)
Mutual labels:  font, icons, icons-pack
ngx-bootstrap-icons
This Angular module allows you to use the Bootstrap Icons in your angular application without additional dependencies.
Stars: ✭ 26 (+85.71%)
Mutual labels:  icons, icons-pack
Yii2 Fontawesome
Asset Bundle for Yii2 with Font Awesome http://fortawesome.github.io/Font-Awesome/
Stars: ✭ 149 (+964.29%)
Mutual labels:  font, icons
Svgtofont
Read a set of SVG icons and ouput a TTF/EOT/WOFF/WOFF2/SVG font.
Stars: ✭ 149 (+964.29%)
Mutual labels:  font, icons
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (+357.14%)
Mutual labels:  font, icons
Font Awesome Stylus
Stylus port for font-awesome 4.7.0
Stars: ✭ 77 (+450%)
Mutual labels:  font, icons
Unicons
1000+ Pixel-perfect vector icons and Iconfont for your next project.
Stars: ✭ 911 (+6407.14%)
Mutual labels:  font, icons
Micon
Micon, The iconic windows 10 font and CSS toolkit.
Stars: ✭ 182 (+1200%)
Mutual labels:  font, icons
Svelte Awesome
Awesome SVG icon component for Svelte JS, built with Font Awesome icons. Based on Justineo/vue-awesome
Stars: ✭ 193 (+1278.57%)
Mutual labels:  font, icons
Font Awesome
The iconic SVG, font, and CSS toolkit
Stars: ✭ 66,937 (+478021.43%)
Mutual labels:  font, icons
Govicons
🇺🇸 US Government themed icons and CSS toolkit
Stars: ✭ 60 (+328.57%)
Mutual labels:  font, icons
Swifticonfont
Icons fonts for iOS (Font Awesome 5, Iconic, Ionicon, Octicon, Themify, MapIcon, MaterialIcon, Foundation 3, Elegant Icon, Captain Icon)
Stars: ✭ 1,094 (+7714.29%)
Mutual labels:  font, icons
Awesome Stock Resources
🌇 A collection of links for free stock photography, video and Illustration websites
Stars: ✭ 10,162 (+72485.71%)
Mutual labels:  font, icons
Font Awesome Php
A PHP library for Font Awesome 4.7.
Stars: ✭ 47 (+235.71%)
Mutual labels:  font, icons
rofi-fontawesome
fontawesome icon list for rofi dmenu
Stars: ✭ 58 (+314.29%)
Mutual labels:  font, icons
Craft3 Iconpicker
Craft plugin that provides a new field type that offers end users an easy way to pick an icon from a .woff or .ttf font file. You can easily use ionicons or font awesome icons or any other compatible font file.
Stars: ✭ 15 (+7.14%)
Mutual labels:  font, icons
Get Social Social Media Font
Font Based Social Media Icon Set
Stars: ✭ 15 (+7.14%)
Mutual labels:  font, icons
Webfont
Awesome generator of webfont
Stars: ✭ 170 (+1114.29%)
Mutual labels:  font, icons
cryptofont
Cryptocurrency icon webfont and SVG
Stars: ✭ 149 (+964.29%)
Mutual labels:  font, icons

GoogleMD-Icons

CI Status Version License Platform

An easy way to use Google Material Design Icons in your app.

Requirements

  • iOS 9.0+
  • Xcode 8

Installation

CocoaPods

Make sure you have the latest version of CocoaPods by running:

$ gem install cocoapods

Update your local specs repo by running:

$ pod repo update

Add the following lines to your Podfile:

target 'YourProject' do
use_frameworks!
pod 'GoogleMD-Icons'
end

Then run the following command

$ pod install

You can start using the library by importing it wherever you want

import GoogleMD_Icons

Usage

UIImage

import GoogleMD_Icons

// Set icon
imageView.image = UIImage.googleMDIcon(icon: .accountBalance, size: CGSize(width: 150.0, height: 150.0))

// Set icon with color
imageView.image = UIImage.googleMDIcon(icon: .accountBalance, size: CGSize(width: 150.0, height: 150.0), color: .orange)

// Set icon with color and icon code
imageView.image = UIImage.googleMDIcon(icon: GoogleMDIconType(name: "account_balance")!, size: CGSize(width: 150.0, height: 150.0), color: .orange)

UIImageView

import GoogleMD_Icons

// Set icon
imageView = UIImageView.googleMDIcon(icon: .accountBalance, size: CGSize(width: 150.0, height: 150.0))

// Set icon with color
imageView = UIImageView.googleMDIcon(icon: .accountBalance, size: CGSize(width: 150.0, height: 150.0), color: .orange)

// Set icon with color and icon code
imageView = UIImageView.googleMDIcon(icon: GoogleMDIconType(name: "account_balance")!, size: CGSize(width: 150.0, height: 150.0), color: .orange)

Author

Adam Golczak ([email protected])

License

GoogleMD-Icons is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].