Need help with async image loading

I am trying to creating dynamic images along with three dynamic lables so i am using image utilities to load image as async but it is not happening app is lagging due to it

Please help with this

Use other component…for showing images

Component and URL

Your app is lagging because you are usingImage Editor component to round your image corner in real time.

Reason: Your app is fetching all the image data and loading it asynchronously with the help of Load Image Async, but you are giving its path as Image Editor which will round the corner of every image you will load and this rounding corner procedure does not occurs asynchronously and cause lags.

You can round your layout in which you are showing image to make your app lag free. :slight_smile:

2 Likes

No i have removed it and tried it’s not working