Last updated:
0 purchases
material icons named
Table of Contents
material_icons_named
Table of Contents
Live Example
Introduction
Usage
material_icons_named #
Table of Contents #
Live Example
Introduction
Usage
Live Example #
Web
Introduction #
Library that builds and provides auto-generated string to icon mapping for all Material based from the stable branch for Flutter.
Please note, if you include this library then Flutter will give you errors stating that it cannot tree shake icons when building for Android and iOS. You must add the --no-tree-shake-icons flag to your builds. For example:
flutter build apk --release --no-tree-shake-icons
copied to clipboard
Due to Flutter not being able to tree shake the icons, the Material Icons alone can add up to 350k to your final app build. That will be in addition to any other icons you may be using that will no longer be able to be shaken out.
Usage #
import 'package:material_icons_named/material_icons_named.dart';
...
Icon(materialIcons['wifi_tethering_outlined']),
...
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.