{"id":2281,"url":"https://github.com/yonat/StepProgressView","last_synced_at":"2025-08-06T15:30:37.454Z","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-04-29T17:38:36.000Z","size":201,"stargazers_count":367,"open_issues_count":0,"forks_count":26,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-05-02T05:11:54.249Z","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},"funding":{"github":["yonat"]}},"created_at":"2015-02-15T16:34:26.000Z","updated_at":"2024-06-18T22:42:42.344Z","dependencies_parsed_at":"2024-06-18T22:55:51.622Z","dependency_job_id":null,"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":21,"template":false,"template_full_name":null,"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","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228915470,"owners_count":17991409,"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","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":"2024-01-05T20:16:09.721Z","updated_at":"2024-12-09T15:30:52.647Z","avatar_url":"https://github.com/yonat.png","language":"Swift","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","funding_links":["https://github.com/sponsors/yonat"],"categories":["UI","Libs","Progress","UI [🔝](#readme)"],"sub_categories":["Activity Indicator","UI","Other free courses"],"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"}