material_icons 1.1.0 copy "material_icons: ^1.1.0" to clipboard
material_icons: ^1.1.0 copied to clipboard

Dart 1 only

Google Material icons - optimized for Dart + SASS

Dart Material SVG Icons #

Optimized for Dart + SASS #

Material Design Icons are the official open-source icons featured in the Google Material Design specification. This project provides this icon-set for Dart.

What's cool #

Googles original version comes "only" with black or white SVGs.
material_icons allows you to theme your icons!!!
Tested with Chrome, Safari, FF + IE.

Screenshot

Usage #

  • Clone the "purple" example
    • Your main.scss should look something like this:
    $icon-color: nth($palette-primary, 2);
    @import "packages/material_icons/sass/svg-utils";
    @import "material_icons";
    
  • Open [this] page
    • Use Chrome or Safari for this!
  • Click on icon that you want to include in your project
  • Copy the _material-icons.scss section
  • Paste it into your _material-icons.scss
@import 'packages/material_icons/sass/action/svg/production/ic_account_box_18px';

.bg-ic_account_box_18px {
    @include svg-background("18");
    
    /* you can exclude or delete this line */
    @include svg-fallback("action/svg/production/ic_account_box_18px.svg","action/2x_web/ic_account_box_black_18dp.png","action/2x_web/ic_account_box_white_18dp.png","action/2x_web/ic_account_box_grey600_18dp.png");
    
    background-image: svg-ic_account_box_18px($icon-color);
}
  • Copy the index.html section
  • Paste it into your index.html
    <div class="bg-ic_favorite_24px svg-size-24 svg-bg"></div>
  • In main.scss define your icon-color: $icon-color : #9B30FF;
  • In web/styles: sass main.scss main.css -r ../packages/material_icons/sassext/urlencode.rb
  • and: autoprefixer main.css

Note: You may ask what the hack???? does that mean:
-r ../packages/material_icons/sassext/urlencode.rb
You are adding a custom ruby-function to sass - here it is urlencode(...).
The inline SVG get urlencoded and makes IE happy.

That's it.
Your page should look like [this] page

###Play with your index.html###

<body class="no-svg fallback-white">
    <div class="bg-ic_favorite_24px svg-size-24 svg-bg"></div>
    <div class="bg-ic_account_balance_24px svg-size-24 svg-bg fallback-grey"></div>
    <div class="bg-ic_accessibility_48px svg-size-48 svg-bg"></div>
</body>

no-svg - turns off svg and uses png's instead
fallback-white | fallback-black | fallback-grey - PNG color to use
This option can also be specified per div (line 3).

You can see a reallife sample using this technique on wsk.mikemitterer.at

Features and bugs #

Please file feature requests and bugs at the issue tracker.

License #

Copyright 2016 Michael Mitterer (office@mikemitterer.at),
IT-Consulting and Development Limited, Austrian Branch

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.

If this plugin is helpful for you - please (Circle) me
or star this repo here on GitHub.

0
likes
0
pub points
77%
popularity

Publisher

unverified uploader

Google Material icons - optimized for Dart + SASS

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

browser

More

Packages that depend on material_icons