I want to use my custom loader in my project
this is my major pain
please help me
I want to use my custom loader in my project
this is my major pain
please help me
I want to add a custom image to the loader
Now my problem gets resolved by simply doing this
let loading = this.loadingCtrl.create({
spinner:'hide',
content: '<img src="assets/icon/loader.gif">'
});
loading.present();
setTimeout(() =>
{
loading.dismiss();
}, 5000);