All Projects → zyra → ionic-material-icons

zyra / ionic-material-icons

Licence: MIT license
Over 900 Material lcons for Ionic 2+ Apps

Programming Languages

CSS
56736 projects
typescript
32286 projects

Projects that are alternatives of or similar to ionic-material-icons

ionic-hockeyapp
Need HockeyApp in your Ionic application, add this package!
Stars: ✭ 19 (-29.63%)
Mutual labels:  ionic2, ionic-plugin
ionic-parallax
Parallax Module for Ionic Framework 2+
Stars: ✭ 10 (-62.96%)
Mutual labels:  ionic2, ionic-plugin
Styled Icons
💅 Popular icon packs like Font Awesome, Material Design, and Octicons, available as React Styled Components
Stars: ✭ 1,878 (+6855.56%)
Mutual labels:  material-icons
Ionic2-NutritionSample
Ionic2 to show the use of http in an application - IonicFramework - angular2
Stars: ✭ 19 (-29.63%)
Mutual labels:  ionic2
ionic3
This repository contains complete source code for Ionic 3 tutorial from https://ampersandacademy.com/tutorials/ionic-framework-3. I will try many Ionic 3 specific scripts and will write them as separate tutorial. You can follow this repo to get more tested and working script for the Ionic 3.
Stars: ✭ 21 (-22.22%)
Mutual labels:  ionic2
ionic-dark-grey-theme
Dark Theme for ionic2 (ionic-conference-app as example)
Stars: ✭ 29 (+7.41%)
Mutual labels:  ionic2
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-51.85%)
Mutual labels:  ionic2
Polybar Themes
A huge collection of polybar themes with different styles, colors and variants.
Stars: ✭ 3,687 (+13555.56%)
Mutual labels:  material-icons
sm-coal-app
这是一个使用Ionic2开发的集数据展示,交易,交流于一体的APP
Stars: ✭ 21 (-22.22%)
Mutual labels:  ionic2
chihu
ionic2-example <吃乎>一款美食app 🍜 ☕️ 🍦 (This is a support android and apple ionic2 case, a food app)
Stars: ✭ 64 (+137.04%)
Mutual labels:  ionic2
ionic2-PreDB
Simple Ionic 2+ with pre-populated database starter project
Stars: ✭ 14 (-48.15%)
Mutual labels:  ionic2
ionic2 firebase shopping cart
Shopping cart built using Ionic2 and Firebase
Stars: ✭ 21 (-22.22%)
Mutual labels:  ionic2
material-design-icons
Latest icon fonts and optimized SVGs for material design icons.
Stars: ✭ 70 (+159.26%)
Mutual labels:  material-icons
Material Design Data
关于 Material Design 的一切资料都在这里
Stars: ✭ 1,857 (+6777.78%)
Mutual labels:  material-icons
ionic-socialsharing-with-deeplinking-example
Ionic Social Sharing and Deep Linking example app. Complete Ionic Tutorial with free example app! Built for Ionic 3.
Stars: ✭ 16 (-40.74%)
Mutual labels:  ionic2
Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: ✭ 4,916 (+18107.41%)
Mutual labels:  material-icons
MyDiary
A real-world mobile app implementation inspired by the movie "Your Name". 🌠
Stars: ✭ 23 (-14.81%)
Mutual labels:  ionic2
ngrx-store-ionic-storage
Simple syncing between @ngrx/store and Ionic Storage.
Stars: ✭ 66 (+144.44%)
Mutual labels:  ionic2
ionic-video-chat-support
Ionic 3 Video and Group Text Chat
Stars: ✭ 19 (-29.63%)
Mutual labels:  ionic2
ionic-login-component
Free sample of Premium Ionic Login Component
Stars: ✭ 17 (-37.04%)
Mutual labels:  ionic-plugin

npm npm npm

ionic2-material-icons

Material Icons for Ionic Apps

Usage

Use md-name instead of name when you want to use a material icon. Icon names can be found on this page: https://material.io/icons/. All names are a single lowercase words, example: alarm add would be alarm_add.

<ion-icon md-name="settings"></ion-icon>

Installation

You can download this repo, then copy the font files and the directive into your app. Or follow these steps:

Install module from NPM

npm i ionic2-material-icons

Import the module

Import MaterialIconsModule into your app's root and shared modules.

import { MaterialIconsModule } from 'ionic2-material-icons';

@NgModule({
  ...
  imports: [
    ...
    MaterialIconsModule 
  ]
})

Add copy command

Add this code to your package.json:

"config": {
  "ionic_copy": "./copy.config.js"
}

Create a new file named copy.config.js in your app's root directory, and add the following content to it:

module.exports = {
  copyMaterialIcons: {
    src: ['{{ROOT}}/node_modules/ionic2-material-icons/fonts/**/*'],
    dest: '{{WWW}}/assets/fonts'
  }
};
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].