Scroll to page
glennposadas opened this issue · 2 comments
glennposadas commented
First off, thanks for this library. Is it possible to scroll to a specific page? Especially when presenting the Lightbox controller? Thanks!
alexandrgl commented
You can set start index:
LightboxController(images: images, startIndex: selectedIndex)
Or use this method of LightboxController:
func goTo(_ page: Int, animated: Bool = true)
glennposadas commented
Super cool! thanks! I DID NOT see these!