fluttercommunity / font_awesome_flutter

The Font Awesome Icon pack available as Flutter Icons
Other
842 stars 241 forks source link

WhatsApp icon not supporting in Flutter version 3.3.10 #232

Closed Rafi404 closed 1 year ago

Rafi404 commented 1 year ago

WhatsApp icon not supporting in Flutter version 3.3.10

It Shows the message, The getter 'whatsapp' isn't defined for the type 'Icons'.

michaelspiss commented 1 year ago

Type Icons refers to the material icons shipped with flutter. For font awesome icons, use FontAwesomeIcons.

Example for the whatsapp icon:

FaIcon(FontAwesomeIcons.whatsapp)
razfazz commented 1 year ago

FaIcon(FontAwesomeIcons.whatsapp) this also stopped working and showing a blank icon

zogol commented 1 year ago

same here. whatsapp icon is gone in the fontawesome package

michaelspiss commented 1 year ago

I could not reproduce, but the new version was just released and I made sure it has the whatsapp icon. Please try if updating the package fixes your issues.