I am figuring out which one is more storage friendly when it comes to getting some icons which are not available in the flutter icons module.
So, there are two ways to do it
- Get your icons as
assets
, store in the app, and then use it wherever you want - Get a package, in my case, font_awesome_flutter, which practically has the required icons. And then use the icon via this package after importing it.
I am wondering which one should I prefer, first one or second?
Note: I am not bothered about the process, but I care about the space it takes in the app, which eventually affects the app's size.