Hi, how would you go about detecting the current position that the carousel has snapped to, given that `setNumViewsToShowOnScreen` is set to 1? `void buildModels() { List<PhotoViewModel_> photoModels = new ArrayList(); for (photo in photos) { photoModels.add(new PhotoViewModel_() .id(photo.id()) .url(photo.url)) } new CarouselModel_() .id("carousel") .models(photoModels) .addTo(this); }`