fluttercommunity / font_awesome_flutter

The Font Awesome Icon pack available as Flutter Icons
Other
838 stars 238 forks source link

Can not find the './icons.json' #138

Closed LiveLikeCounter closed 3 years ago

LiveLikeCounter commented 3 years ago

Hi!

I followed the steps in Apply the pro-icons. The problem I face it that the font_awesome_flutter.dart isn't updated with the pro-icons, e.g. the badge-check. None of the pro icons are there.

I checked this, because I would like to use a the pro-icons in Flutter like FaIcon(FontAwesomeIcons.badgeCheck).

image

On step I didn't execute wat the

Move icons.json from metadata to /path/to/your/font_awesome_flutter

because I couldn't find the metadata folder.

What did is miss?

Thanks!

michaelspiss commented 3 years ago

Hi, the icons.json step tells font_awesome_flutter about what icons are available - which means this is a crucial step. Running the tool without icons.json will replace your font files with the free ones, so you will have to repeat all steps when running the tool again! The metadata folder is on the top level of the font awesome zip you downloaded.

image

LiveLikeCounter commented 3 years ago

Hi, of course. Now I got it. Thanks for you help.