{"id":21174792,"url":"https://github.com/mindinventory/mistepbar","last_synced_at":"2025-12-12T06:15:38.978Z","repository":{"id":62979971,"uuid":"503213459","full_name":"Mindinventory/MIStepBar","owner":"Mindinventory","description":"Use this swift 5 supported library MIStepBar and track your food order, your purchase order or the booked appointment many more things..!!!","archived":false,"fork":false,"pushed_at":"2022-11-10T12:43:13.000Z","size":122,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-09T04:22:06.483Z","etag":null,"topics":["anim","animation","progress-bar","stepbar","stepper","stepprogressbar","swift","tracing","xcode"],"latest_commit_sha":null,"homepage":"https://www.mindinventory.com/iphone-application-development.php","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/Mindinventory.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-14T04:55:32.000Z","updated_at":"2025-05-29T18:57:49.000Z","dependencies_parsed_at":"2022-11-10T08:02:25.359Z","dependency_job_id":null,"html_url":"https://github.com/Mindinventory/MIStepBar","commit_stats":null,"previous_names":["piyushselarka/mistepbar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mindinventory/MIStepBar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2FMIStepBar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2FMIStepBar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2FMIStepBar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2FMIStepBar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mindinventory","download_url":"https://codeload.github.com/Mindinventory/MIStepBar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2FMIStepBar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264503949,"owners_count":23618762,"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":["anim","animation","progress-bar","stepbar","stepper","stepprogressbar","swift","tracing","xcode"],"created_at":"2024-11-20T16:56:14.345Z","updated_at":"2025-12-12T06:15:33.943Z","avatar_url":"https://github.com/Mindinventory.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# iOS-Step-Bar\n\n\u003ca href=\"https://docs.swift.org/swift-book/\" style=\"pointer-events: stroke;\" target=\"_blank\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/swift-5.0-brightgreen\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://developer.apple.com/ios/\" style=\"pointer-events: stroke;\" target=\"_blank\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/platform-iOS-red\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://www.codacy.com?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=nikunjprajapati95/Reading-Animation\u0026amp;utm_campaign=Badge_Grade\"\u003e\u003cimg src=\"https://app.codacy.com/project/badge/Grade/44b16d6ddb96446b875d38bf2ec89b11\"/\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/parthgohel2810/TopTabBarView-Framework/blob/main/LICENSE\" style=\"pointer-events: stroke;\" target=\"_blank\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/licence-MIT-orange\"\u003e\n\u003c/a\u003e\n\u003cp\u003e\u003c/p\u003e \n\nUse this swift 5 supported library MIStepBar and track your food order, your purchase order or the  booked appoinment many more things..!!!\n\nCheckout this super easy stepped bar integration and example.!!! \n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/42262083/195347081-177f39e7-e286-4a27-9867-c79347caeca9.gif\"\u003e\n\u003c/p\u003e\n\n## Installation\nTo install it, simply add the following line to your Podfile:\n\n```ruby\npod 'MIStepBar', git: 'https://github.com/Mindinventory/MIStepBar', branch: 'main'\n```\nThen run `pod install` from the Example directory.\n\n## Manually\nYou could directly copy and add the folder `MIStepBar` which contains 'StepBar.swift' file to your project.\n\n## Usage\n\nAnd then remember to `import MIStepBar` module before using it.\n\nChange the class of a view from `UIStackView` to StepBar\n```swift\n@IBOutlet weak var stepBar: StepBar!\n```\nProgrammatically:\n\n```swift\noverride func viewDidLoad() {\n  super.viewDidLoad()\n    \n  stepBar.stepTitles = [\"Book Appointment\", \"Payment\", \"Confirmed\"]\n  stepBar.stepSubTitles = [\"Dt 2020/11/02\", \"Dt 2020/11/04\", \"Dt 2020/11/06\"]\n  stepBar.stepSelectedImages = [\"calendar\",\"check\",\"credit-card\"]\n}\n```\nManually Update Step:\n```swift\nstepBar.currentStepValue = 2\n```\n\n## Customization Stroyboard and Xib (Optional)\nAfter adding a `UIStackView` to Stroyboard or Xib, change its class to `StepBar`. Then you are able to config it as this demonstration:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/42262083/173760338-3c3d4cce-d64f-4e9d-8eaa-509d10bee98c.png\"\u003e\n\u003c/p\u003e\n\n## Requirements\n- iOS 13.0+\n- Xcode 13.0+\n\n\n## 📱 Check out other lists of our Mobile UI libraries\n\n\u003ca href=\"https://github.com/Mindinventory?language=kotlin\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Kotlin-0095D5?\u0026style=for-the-badge\u0026logo=kotlin\u0026logoColor=white\"\u003e \u003c/a\u003e\n\n\u003ca href=\"https://github.com/Mindinventory?language=swift\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Swift-FA7343?style=for-the-badge\u0026logo=swift\u0026logoColor=white\"\u003e \u003c/a\u003e\n\n\u003ca href=\"https://github.com/Mindinventory?language=dart\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Flutter-02569B?style=for-the-badge\u0026logo=flutter\u0026logoColor=white\"\u003e \u003c/a\u003e\n\n\n\u003ca href=\"https://github.com/Mindinventory/react-native-tabbar-interaction\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/React_Native-20232A?style=for-the-badge\u0026logo=react\u0026logoColor=61DAFB\"\u003e \u003c/a\u003e\n\n\u003cbr\u003e\u003c/br\u003e\n\n## 💻 Check out other lists of Web libraries\n\n\u003ca href=\"hhttps://github.com/Mindinventory?language=javascript\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge\u0026logo=javascript\u0026logoColor=black\"\u003e\u003c/a\u003e\n\n\u003ca href=\"https://github.com/Mindinventory?language=go\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Go-00ADD8?style=for-the-badge\u0026logo=go\u0026logoColor=white\"\u003e\u003c/a\u003e\n\n\u003ca href=\"https://github.com/Mindinventory?language=python\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Python-3776AB?style=for-the-badge\u0026logo=python\u0026logoColor=white\"\u003e\u003c/a\u003e\n\n\u003cbr\u003e\u003c/br\u003e\n\n\u003ch4\u003e\u003ca href=\"https://www.mindinventory.com/whitepapers.php?utm_source=gthb\u0026utm_medium=special\u0026utm_campaign=folding-cell#demo\"\u003e\u003cu\u003e 📝 Get FREE Industry WhitePapers →\u003c/u\u003e\u003c/a\u003e\u003c/h4\u003e\n\n## Check out our Work\n\u003ca href=\"https://dribbble.com/mindinventory\"\u003e \n\u003cimg src=\"https://img.shields.io/badge/Dribbble-EA4C89?style=for-the-badge\u0026logo=dribbble\u0026logoColor=white\" /\u003e \u003c/a\u003e\n\u003cbr\u003e\u003c/br\u003e\n\n## 📄 License\niOS-MiStepBar is [MIT-licensed](/LICENSE).\n\n\nIf you use our open-source libraries in your project, please make sure to credit us and Give a star to www.mindinventory.com\n\n\u003ca href=\"https://www.mindinventory.com/contact-us.php?utm_source=gthb\u0026utm_medium=repo\u0026utm_campaign=swift-ui-libraries\"\u003e\n\u003cimg src=\"https://github.com/Sammindinventory/MindInventory/blob/main/hirebutton.png\" width=\"203\" height=\"43\"  alt=\"app development\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Fmistepbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindinventory%2Fmistepbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Fmistepbar/lists"}