Hi, I've noticed that setting the selected page programmatically changes the indicator, but not the visible slide. **Example (Vue):** ~~~ <Carousel :selectedPage="slideIndex"> <CarouselItem></CarouselItem> <CarouselItem></CarouselItem> </Carousel> ~~~ ~~~ export default { data() { return { slideIndex: 0 } }, mounted() { this.slideIndex = 1; } } ~~~ This will make the indicator active at the seconds position, but the first slide is still visible. On Android it works as expected.