{"id":13466467,"url":"https://github.com/stoneburner/ShowSomeProgress","last_synced_at":"2025-03-25T21:32:19.835Z","repository":{"id":49853743,"uuid":"200197264","full_name":"stoneburner/ShowSomeProgress","owner":"stoneburner","description":"Progress and Activity Indicators for iOS apps","archived":false,"fork":false,"pushed_at":"2019-08-07T07:38:31.000Z","size":6709,"stargazers_count":107,"open_issues_count":1,"forks_count":14,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-02T07:18:39.313Z","etag":null,"topics":["ios","ios-ui","progress-circle","progressbar","swift"],"latest_commit_sha":null,"homepage":null,"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/stoneburner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-02T08:30:31.000Z","updated_at":"2024-09-13T07:04:11.000Z","dependencies_parsed_at":"2022-09-01T13:10:21.801Z","dependency_job_id":null,"html_url":"https://github.com/stoneburner/ShowSomeProgress","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stoneburner%2FShowSomeProgress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stoneburner%2FShowSomeProgress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stoneburner%2FShowSomeProgress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stoneburner%2FShowSomeProgress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stoneburner","download_url":"https://codeload.github.com/stoneburner/ShowSomeProgress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245548360,"owners_count":20633566,"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":["ios","ios-ui","progress-circle","progressbar","swift"],"created_at":"2024-07-31T15:00:44.614Z","updated_at":"2025-03-25T21:32:18.363Z","avatar_url":"https://github.com/stoneburner.png","language":"Swift","readme":"\u003cp align=\"center\"\u003e\n   \u003cimg width=\"200\" src=\"graphics/Logo.gif\" alt=\"ShowSomeProgress Logo\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n   \u003ca href=\"https://developer.apple.com/swift/\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/Swift-5.0-orange.svg?style=flat\" alt=\"Swift 5.0\"\u003e\n   \u003c/a\u003e\n\u003c!--\u003ca href=\"http://cocoapods.org/pods/ShowSomeProgress\"\u003e\n      \u003cimg src=\"https://img.shields.io/cocoapods/v/ShowSomeProgress.svg?style=flat\" alt=\"Version\"\u003e\n   \u003c/a\u003e\n   \u003ca href=\"http://cocoapods.org/pods/ShowSomeProgress\"\u003e\n      \u003cimg src=\"https://img.shields.io/cocoapods/p/ShowSomeProgress.svg?style=flat\" alt=\"Platform\"\u003e\n   \u003c/a\u003e\n--\u003e\n   \u003ca href=\"https://github.com/Carthage/Carthage\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage Compatible\"\u003e\n   \u003c/a\u003e\n   \u003ca href=\"https://github.com/apple/swift-package-manager\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg\" alt=\"SPM\"\u003e\n   \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\nProgress Indicators and Activity Views for iOS Apps\n\u003c/p\u003e\n\n## Features\n\n- [x] Storyboard compatible, configure apprearance with the property inspector.\n- [x] fully animated, just set a new progress value and the view will update itself smoothly\n\n## Currenty Implemented Progress Indicators\n\n`CircleProgressView` - A circular indicator\n\n![CircleProgressView](graphics/ProgressCircleDisplay.gif)\n\n`BarProgressView` - A bar indicator\n\n![BarProgressView](graphics/ProgressBarDisplay.gif)\n\n### Configurable properties:\n* `progress` - progress value - 0.0 - 1.0\n* `progressColor` - UIColor of the progress indicator\n* `showTriangle` - Bool, selects visibility of the small triangle \n\n## Currently Implemented Activity Indicators\n\n`OrbitActivityIndicatorView` - Shows a simplifed planetary system during Activity \n\n![OrbitActivityIndicatorView](graphics/OrbitIndicator.gif)\n\n`OrbitActivityIndicatorView2` - Shows a planetary system during Activity \n\n![OrbitActivityIndicatorView](graphics/OrbitIndicator2.gif)\n\n`OrbitActivityIndicatorView3` - Shows chasing dots system during Activity \n\n![OrbitActivityIndicatorView](graphics/OrbitIndicator3.gif)\n\n`GearActivityIndicatorView` - Shows three gears during Activity \n\n![GearActivityIndicatorView](graphics/tripleGears.gif)\n\n### Configurable properties:\n* `tintColor` - color of the view\n\n## Usage\n\n![Storyboard](graphics/anotated_storyboard_screenshot.png)\n\nJust import the framework and use the views like you would use `UIProgressView`\n\n```swift\nimport UIKit\nimport ShowSomeProgress\n\nclass ViewController: UIViewController {\n\n  @IBOutlet weak var circleProgressView: CircleProgressView!\n\n  @IBAction func setRandomValueTapped(_ sender: Any) {\n    circleProgressView.progress = CGFloat(Double.random(in: 0...1))\n  }\n}  \n```\n\n## Example\n\nThe example application is the best way to see `ShowSomeProgress` in action. Simply open the `ShowSomeProgress.xcodeproj` and run the `Example` scheme.\n\n![Example app](graphics/example.gif)\n\n\n## Installation\n\u003c!--\n### CocoaPods\n\nShowSomeProgress is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```bash\npod 'ShowSomeProgress'\n```\n--\u003e\n\n### Carthage\n\n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.\n\nTo integrate ShowSomeProgress into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```ogdl\ngithub \"stoneburner/ShowSomeProgress\"\n```\n\nRun `carthage update` to build the framework and drag the built `ShowSomeProgress.framework` into your Xcode project. \n\nOn your application targets’ “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase” and add the Framework path as mentioned in [Carthage Getting started Step 4, 5 and 6](https://github.com/Carthage/Carthage/blob/master/README.md#if-youre-building-for-ios-tvos-or-watchos)\n\n### Swift Package Manager\n\nTo integrate using Apple's [Swift Package Manager](https://swift.org/package-manager/), add the following as a dependency to your `Package.swift`:\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/stoneburner/ShowSomeProgress.git\", from: \"1.0.0\")\n]\n```\n\n### Manually\n\nIf you prefer not to use any of the aforementioned dependency managers, you can integrate ShowSomeProgress into your project manually. Simply drag the `Sources` Folder into your Xcode project.\n\n## Contributing\nContributions are very welcome 🙌\n\n## License\n\n```\nShowSomeProgress\nCopyright (c) 2019 ShowSomeProgress alexander@kasimir.at\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n","funding_links":[],"categories":["Libs","UI [🔝](#readme)","Swift"],"sub_categories":["UI"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstoneburner%2FShowSomeProgress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstoneburner%2FShowSomeProgress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstoneburner%2FShowSomeProgress/lists"}