flutter_icons_helper

Last updated:

0 purchases

flutter_icons_helper Image
flutter_icons_helper Images
Add to Cart

Description:

flutter icons helper

flutter_icons_helper #

An helper implementing utility methods for package flutter_icons: https://github.com/flutter-studio/flutter-icons
Features #

IconHelper - helper class:

getIconByName() - retrieves icons by their name by inputting ICON_PACK_.NAME.



Getting started #
Add flutter_icons_helper to your pubspec.yaml
Usage #
import 'package:flutter_icons_helper/flutter_icons_helper.dart';


final helper = IconHelpelper();

// Name with hyphens
IconData? icon = helper.getIconByName('AntDesign.medium-wordmark');

// Name with underscores
IconData? icon2 = helper.getIconByName('FontAwesome5.american_sign_language_interpreting');

IconData? icon3 = helper.getIconByName('AntDesign.medium-wordmark');

IconData? icon4 = helper.getIconByName('WeatherIcons.alien');

IconData? icon5 = helper.getIconByName('SimpleLineIcons.basket-loaded');

IconData? icon6 = helper.getIconByName('Octicons.triangle_down');

IconData? icon7 = helper.getIconByName('MaterialIcons.13mp');
copied to clipboard
Contribute #
You can contribute by opening issues or making pull requests on the Github repo.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.