{"id":23815222,"url":"https://github.com/yonat/stepprogressview","last_synced_at":"2025-10-09T16:46:25.834Z","repository":{"id":27358002,"uuid":"30833334","full_name":"yonat/StepProgressView","owner":"yonat","description":"Step-by-step progress view with labels and shapes. A good replacement for UIActivityIndicatorView and UIProgressView.","archived":false,"fork":false,"pushed_at":"2024-11-01T14:21:02.000Z","size":206,"stargazers_count":382,"open_issues_count":0,"forks_count":31,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-08-29T22:49:48.683Z","etag":null,"topics":["progress","swift","timeline","uiactivityindicatorview","uiprogressview"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yonat.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["yonat"]}},"created_at":"2015-02-15T16:34:26.000Z","updated_at":"2025-08-13T04:17:49.000Z","dependencies_parsed_at":"2025-05-18T14:05:47.303Z","dependency_job_id":"f8a89d1c-879f-4049-a42e-5ed2e060e441","html_url":"https://github.com/yonat/StepProgressView","commit_stats":{"total_commits":67,"total_committers":1,"mean_commits":67.0,"dds":0.0,"last_synced_commit":"27c3b79c01beb63e0d74dd25dda9e60bc23a3bb1"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/yonat/StepProgressView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonat%2FStepProgressView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonat%2FStepProgressView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonat%2FStepProgressView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonat%2FStepProgressView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yonat","download_url":"https://codeload.github.com/yonat/StepProgressView/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonat%2FStepProgressView/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001782,"owners_count":26083173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["progress","swift","timeline","uiactivityindicatorview","uiprogressview"],"created_at":"2025-01-02T04:15:25.243Z","updated_at":"2025-10-09T16:46:25.806Z","avatar_url":"https://github.com/yonat.png","language":"Swift","funding_links":["https://github.com/sponsors/yonat"],"categories":[],"sub_categories":[],"readme":"# StepProgressView\nStep-by-step progress view with labels and shapes. A good replacement for UIActivityIndicatorView and UIProgressView.\n\n[![Swift Version][swift-image]][swift-url]\n[![Build Status][travis-image]][travis-url]\n[![License][license-image]][license-url]\n[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/StepProgressView.svg)](https://img.shields.io/cocoapods/v/StepProgressView.svg)  \n[![Platform](https://img.shields.io/cocoapods/p/StepProgressView.svg?style=flat)](http://cocoapods.org/pods/StepProgressView)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"screenshots/blue.gif\"\u003e\n\u003cimg src=\"screenshots/red.gif\"\u003e\n\u003c/p\u003e\n\n## Usage\n\n```swift\nlet progressView   = StepProgressView(frame: view.bounds)\nprogressView.steps = [\"First\", \"Second\", \"Third\", \"Last\"]\nprogressView.details = [0: \"The beginning\", 3: \"The end\"] // appears below step title\n\nprogressView.currentStep = 0 // started first step\n...\nprogressView.currentStep = 4 // all done\n```\n\n## SwiftUI Usage\n\n```swift\nStepsView(currentStep: $step, steps: [\"First\", \"Second\", \"Third\", \"Done\"])\n    .stepShape(.rhombus)\n```\n\n## Changing Appearance\n\nThe properties below can be set in Interface Builder, in code, or through a UIAppearance proxy (e.g., `StepProgressView.appearance().stepShape = .circle`).\nWhen using SwiftUI you can set them in the `StepsView` initializer or using SwiftUI view modifiers.\n\n**Shape of the step icons:**\n\n```swift\nprogressView.stepShape = .circle\nprogressView.firstStepShape = .rhombus\nprogressView.lastStepShape = .square\n// also available: .triangle, .downTriangle\n```\n\n**Text fonts and sizes:**\n\n```swift\nprogressView.textFont = myFont\nprogressView.detailFont = anotherFont\n```\n\n**Line size spacing:**\n\n```swift\nprogressView.lineWidth = 2.5\nprogressView.verticalPadding = 8 // between steps (0 =\u003e default based on textFont)\nprogressView.horizontalPadding: 8 // between shape and text (0 =\u003e default based on textFont)\n```\n\n**Colors:**\n\n\n```swift\nprogressView.tintColor = myGeneralTintColor\n\n// alternatively:\n\nprogressView.currentStepColor = .red\nprogressView.pastStepColor = .gray\nprogressView.futureStepColor = .gray\n\nprogressView.currentStepFillColor = .yellow\nprogressView.pastStepFillColor = .gray\nprogressView.futureStepFillColor = .lightGray\n\nprogressView.currentTextColor = .blue\nprogressView.pastTextColor = .gray\nprogressView.futureTextColor = .lightGray\nprogressView.currentDetailColor = .cyan // nil =\u003e use currentStepColor\n```\n\n## Installation\n\n### CocoaPods:\n\n```ruby\npod 'StepProgressView'\n```\n\nLegacy versions:\n\n| Swift version | StepProgressView version |\n| :---: | :--- |\n| 4.0 (Xcode 9.4) | `pod 'MiniLayout', '~\u003e 1.2.1'`\u003cbr\u003e`pod 'StepProgressView', '~\u003e 1.4.1'` |\n| 3 | `pod 'MiniLayout', '~\u003e 1.1.0'`\u003cbr\u003e`pod 'StepProgressView', '~\u003e 1.3.0'` |\n| 2.3 | `pod 'MiniLayout', '~\u003e 1.0.1'`\u003cbr\u003e`pod 'StepProgressView', '~\u003e 1.2.1'` |\n\n### Swift Package Manager:\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/yonat/StepProgressView\", from: \"1.6.6\")\n]\n```\n\n## Meta\n\n[@yonatsharon](https://twitter.com/yonatsharon)\n\n[https://github.com/yonat/StepProgressView](https://github.com/yonat/StepProgressView)\n\n[swift-image]:https://img.shields.io/badge/swift-5.0-orange.svg\n[swift-url]: https://swift.org/\n[license-image]: https://img.shields.io/badge/License-MIT-blue.svg\n[license-url]: LICENSE.txt\n[travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square\n[travis-url]: https://travis-ci.org/dbader/node-datadog-metrics\n[codebeat-image]: https://codebeat.co/badges/c19b47ea-2f9d-45df-8458-b2d952fe9dad\n[codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonat%2Fstepprogressview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyonat%2Fstepprogressview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonat%2Fstepprogressview/lists"}