StepIndicator
StepIndicator copied to clipboard
Unable to add Title below step Indicator
Expecting label below the step indicator so that any one can add title for specific step indicator. This is available in android but not in iOS swift.
First of all, big thanks to @chenyun122 for coming up with this amazing lightweight library. I've come up with a very basic solution (https://github.com/chenyun122/StepIndicator/pull/29) to achieve this. It does not allow for much customization, but you can always tweak the source code to achieve that.
Here's how you can use it..
// Initialize progressbar through code or storyboard
let progressBar = StepIndicatorView()
// Set the data attributes
progressBar.currentStep = 0
progressBar.numberOfSteps = 3
// Set the desired titles
progressBar.titles = ["One", "Two", "Three"]
And this is how it looks ...
