Here is a simple asynchronous image loader extension to load image asynchronously in a image component from image path.
This is a simple and light weight extension since it does not uses any external library to load image. Created for personal use but sharing in case this may help someone.
You can load image from various sources like assets, local file from ASD or online.
Now you can load image in an arrangement like vertical, horizontal or scroll arrangement.
Added event onError in case failed to load image.
Yes, I created this extension for Kodular, as the Kodular inbuilt async image loader block from image utilities component doesn't work due to permission error in higher Android versions.
This extension overcomes that problem as this does not uses any permission.
Specially using with Dynamic component extension when loading large list data that includes images, the app lags until all the images getting loaded synchronously, by using async image loader this problem can be fixed.
As I said, large list data that includes images either small size or large size images, it takes time for loading as it loads synchronously until all images getting loaded, and sometimes the app crashes due to this.