Is it possible to Increase the size of the indicator in UIPageViewController?
UIPageViewController
I have this:
And my requirement is this:
Add an extension to the page controller
extension UIPageControl { func customPageControl(dotWidth: CGFloat) { for (pageIndex, dotView) in self.subviews.enumerated() { dotView.frame.size = CGSize.init(width: dotWidth, height: dotWidth) } } }