I am trying to dynamically from my TS code update the “initialSlide” value (the initial slide of the slider), but it doesn’t dynamically update. It works fine upon load with some initially set “initialSlide” value. Any advice will be highly appreciated!
<ion-slides class="slides" pager="true" [initialSlide]="initialSlide">
<ion-slide class="slider" *ngFor="let i of photosArray">
<img (click)="removePhoto(i.id)" class="sliderPhoto" [src]="i.imageURI">
</ion-slide>
</ion-slides>