flutter_jap_icons 0.2.0
flutter_jap_icons: ^0.2.0 copied to clipboard
Just Another package of icons. This package contains medical, maps and geoglyphs icons. Enjoy it.
Just Another Package(JAP) of Icons #
This package includes 341 icons for maps, medical and GeoGlyphs from [Iconify] (https://iconify.design). The naming convention is the same as the CSS names, all dashes replaced with underscores.

Instalation #
Include flutter_jap_icons
in your pubspec.yaml
file:
dependencies:
flutter:
sdk: flutter
flutter_jap_icons: version
Usage #
To use this package, just import it into your file and enjoy it.
import 'package:flutter_jap_icons/geoglyphs_icons_icons.dart';
import 'package:flutter_jap_icons/map_icons_icons.dart';
import 'package:flutter_jap_icons/medical_icons_icons.dart';
...
Icon(GeoglyphsIcons.turf_merge, size: 48,),
Icon(MapIcons.campground, size: 48, color: Colors.blue,),
Icon(MedicalIcons.pharmacy, size: 48, color: Colors.redAccent,),
...