A comprehensive collection of Material Design-inspired icons for Flutter applications, offering a wide range of icons for various use cases.
- Extensive Icon Collection: Includes a vast library of icons following Material Design guidelines.
- Regular & Light Versions: Provides both regular and light versions of icons for different design needs.
- Customizable Usage: Easily integrate icons into your Flutter apps with simple
Icon
widgets. - Regular Updates: Regularly updated with new icons and improvements.
Add the following line to your pubspec.yaml
file:
Note, icons are accessible only throught github
dependencies:
mdl_icons: any
import 'package:mdl_icons/mdl_icons.dart';
// some where in your code
Icon(MDIL.iconName);
// or
Icon(MDILight.iconName);
// or
Icon(MaterialDesignIconsLight.iconName);
and thats it.