Skip to content

An auto-generated Material Design Icon package for Flutter.

License

Notifications You must be signed in to change notification settings

guenth39/mdi-dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material Design Icons for Flutter

Material Design Icons generated using mdi/fonts SVG font provided by materialdesignicons.com.

Install

mdi: 0.1.0

Usage

import 'package:mdi/mdi.dart';

class AccessPointButton extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      icon: Icon(Mdi.accessPoint),
     );
  }
}

Naming

The icon names provided via Mdi are camelCased variants of the original name.

Exceptions:
  1. null -> nullIcon
  2. switch -> switchIcon
  3. sync -> syncIcon
  4. factory -> factoryIcon

Want to help?

If you find the icons are outdated or there are bugs to be fixed, just submit a PR.

Also, to generate icon glue-code locally you will be required to install Rust & Cargo. If you already have Rust, run the following on terminal:

$ cargo run

About

An auto-generated Material Design Icon package for Flutter.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 98.3%
  • Rust 1.1%
  • Other 0.6%