I need to put a loader every time my iframe navigate for another url. I think it may be possible, with a logic like:
onLoad(Iframe: ElementRef) {
this.Hide();
}
onNavigate(Iframe: ElementRef) { // this event does not exist
this.show();
}
Do anyone has a idea of how to make it?