How to Setup Default Loading Image before real product image loads in Ionic applications?

Introduction:

This article applies to those fellow iOS10 app developers who are using Ionic/Cordova framework. I am going to explain the problem of setup loading image. which I faced during the development of an ionic app using Microsoft visual studio and Mac OS. Hope this will help to mobile app development community or individual Ionic app developer.

Problem:

I am working in Ionic (using visual studio tools for Apache Cordova) In My Ionic application. Suppose, I need to display a default loading image before actual product image loads. Because my page was not looking good until my actual product images are not loaded fully in the Ionic mobile app.

program processing image gif in ios mobile appScreenshot of default loading image

Example:

  1. When My view calls by default all the product Images are set with default loading images.
  2. Call Web services for actual data.
  3. Remain to load the image path as the default path until the new image loads fully.
  4. Fully load the product image will be replaced with the default loading image.

Solution:

Let’s, understand, how to program for the setting up the default loading image or GIF file. We have to use a directive to load the actual product image when it will fully load.

Here I describe the step-by-step solution for the iOS app program.

  1. First of all, I have to set the default.gif processing image in src and set the actual product Image using the keyword new-image which is my directive.
    setup default loading image in ios app

<div class=”image-box”>
<img class=”item-thumbnail” data-rel=”external” src=”img/default.gif” new-image=”{{products [$index].ImageURL}}” />
</div> 
  1. Now, I have to create a directive for loading image under /www/js/directive.js and Name the directive as newImage because I am using it as “new-image” in Html.
    how to program for setup processing image before product image loads in ios appYou can directly copy the code for the directive.js file. Click Here

I hope this tiny help for the setup of the default processing GIF image before the product image loads will work for you. You can share this blog with your friends who are working in Ionic hybrid app development. Thanks.

Article by

Chintan Prajapati

Chintan Prajapati, a seasoned computer engineer with over 20 years in the software industry, is the Founder and CEO of Satva Solutions. His expertise lies in Accounting & ERP Integrations, RPA, and developing technology solutions around leading ERP and accounting software, focusing on using Responsible AI and ML in fintech solutions. Chintan holds a BE in Computer Engineering and is a Microsoft Certified Professional, Microsoft Certified Technology Specialist, Certified Azure Solution Developer, Certified Intuit Developer, and Xero Developer.Throughout his career, Chintan has significantly impacted the accounting industry by consulting and delivering integrations and automation solutions that have saved thousands of man-hours. He aims to provide readers with insightful, practical advice on leveraging technology for business efficiency.Outside of his professional work, Chintan enjoys trekking and bird-watching. Guided by the philosophy, "Deliver the highest value to clients". Chintan continues to drive innovation and excellence in digital transformation strategies from his base in Ahmedabad, India.