Right now, I'm able to implement a basic loading effect, but it appears as a small box.
presentCustomLoading() {
let loading = this.loadingCtrl.create({
content: 'Loading Please Wait...'
});
loading.present();
}
However, I have been tasked with creating a full-page loader like the one shown below:
https://i.sstatic.net/Zv8YQ.png
The loader should cover the entire page, with a black background and a transparent appearance similar to the image. It does not need to have the wave effect. Any suggestions on how to achieve this?