Posts

Showing posts from October, 2020

how to send dynamic data in alertcontroller in ionic4

 public AppIds = [     {Id: "5", AppName: "YouTube", AppPath: "com.google.android.youtube", IosAppPath: null},     { Id: "5", AppName: "Netflix", AppPath: "com.google.android.youtube", IosAppPath: null } ]   let input={data:[]};     for (let i=0;i<this.AppIds.length;i++) {       input.data.push({name:this.AppIds[i].AppName,type: 'radio',label:this.AppIds[i].AppName,value: this.AppIds[i]})     }            console.log(input);       const alert = await this.alertController.create({         header: 'Select Application',         inputs: input.data,         buttons: [           {             text: 'Cancel',             role: 'cancel',             cssClass: 'secondary',           ...

ionic important links

 https://github.com/topics/ionic5 https://www.damirscorner.com/blog/posts/20200501-CustomizingPageTransitionsInIonic5.html https://github.com/mhartington/v5-animations/blob/4dbe2c81d8acdfe916f5ff13c14b90432edf85d1/src/app/home/home.module.ts play music like spotify https://enappd.com/blog/spotify-like-music-in-ionic-4-apps/48/