StepIndicator icon indicating copy to clipboard operation
StepIndicator copied to clipboard

Unable to add Title below step Indicator

Open GandhiJee opened this issue 5 years ago • 1 comments

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.

GandhiJee avatar Jan 18 '21 15:01 GandhiJee

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 ...

Screenshot 2021-07-19 at 2 46 41 PM

india2sarthak avatar Jul 19 '21 09:07 india2sarthak