Progress bar with indicator and labels to track down the progress.
Use Swift Package Manager.
In your xib file or Storyboard, click on the UIView, go to the Identity Inspector and change the Custom Class to TZIndicatorProgressView. In your ViewController, set the config/theme of the collection view
var theme = TZIndicatorThemeConfig()
theme.lineWidth = 5
theme.indicatorRadius = 10
self.progressView.theme = theme
set the labels
self.progressView.labels = ["Hello", "How", "Are", "YOU"]
Use either of the methods to update the progress
self.progressView.move(to: 0)
// goes to next index
self.progressView.nextIndex()
Free to use