Reputation: 5
I have a simple app that I am making with Ionic and I can not figure out which route to take with the images. I have about 150 images that need to be ready and available quickly. They are small 200x200png files but I don't know if I should package them in my assets folder or put them online somewhere and use the url as src. These need to load quick as the images randomly spawn but I don't want my application to be heavy.
Upvotes: 1
Views: 46
Reputation: 854
Consider to use the Fresco
library it's good to situations like yours.
See here:
http://frescolib.org/docs/getting-started.html
Upvotes: 1