DEV Community

Discussion on: Using Lottie Animations inside Angular or Ionic 4

Collapse
 
hamzahalvanaa profile image
Lordrauf • Edited

could this lottie-player using inside loading controller on Ionic 4/5?

i have trying but the animations doesn't play.

const loading = await this.loadingCtrl.create({
  spinner: null,
  translucent: true,
  backdropDismiss: false,
  message: `<lottie-player slot="end" autoplay loop src="https://assets3.lottiefiles.com/packages/lf20_uwR49r.json">
  </lottie-player>`
});
await loading.present();
Enter fullscreen mode Exit fullscreen mode