Closed monalisasaha79 closed 7 years ago
Hello, thanks for using Ionic! You can read this part of the RC5 changelog to see why options
is not supported anymore and to see the new way to handle them.
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
Hi,
I am using ionic 2 version - 2.2.1
In the view, I used ionic slides like, <ion-slides [options]="slideOptions" > In the controller, constructor(public params: NavParams) { this.images = this.params.get('images'); this.index = this.params.get('index'); this.slideOptions = { pager: false, initialSlide: this.index, loop: true, zoom: true }; }
None of the options are considered. Then I changed the view like, <ion-slides [initialSlide]="index" [pager]="false" [loop]="true" [effect]="coverflow">
except zoom and effect, other options are taken in effect.
Please let me know if I am missing anything or it is a defect.
Thanks,