{"id":15038092,"url":"https://github.com/malkouz/mkmagneticprogress","last_synced_at":"2025-04-06T02:08:56.314Z","repository":{"id":37933420,"uuid":"102574876","full_name":"malkouz/MKMagneticProgress","owner":"malkouz","description":"A circular progress bar for iOS written in Swift","archived":false,"fork":false,"pushed_at":"2024-02-15T11:56:20.000Z","size":36466,"stargazers_count":274,"open_issues_count":9,"forks_count":49,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-03-15T13:41:12.535Z","etag":null,"topics":["circular","cocoapods","interface-builder-designable","magentic","progress","progressbar","swift","swift-library","swift4"],"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/malkouz.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-06T07:06:40.000Z","updated_at":"2024-06-19T05:29:00.649Z","dependencies_parsed_at":"2024-02-15T12:52:55.066Z","dependency_job_id":null,"html_url":"https://github.com/malkouz/MKMagneticProgress","commit_stats":{"total_commits":16,"total_committers":4,"mean_commits":4.0,"dds":0.375,"last_synced_commit":"e5a335e3d1d8d75671d799db5acec790646e2ae9"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malkouz%2FMKMagneticProgress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malkouz%2FMKMagneticProgress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malkouz%2FMKMagneticProgress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malkouz%2FMKMagneticProgress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/malkouz","download_url":"https://codeload.github.com/malkouz/MKMagneticProgress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247423515,"owners_count":20936626,"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":["circular","cocoapods","interface-builder-designable","magentic","progress","progressbar","swift","swift-library","swift4"],"created_at":"2024-09-24T20:37:02.959Z","updated_at":"2025-04-06T02:08:56.282Z","avatar_url":"https://github.com/malkouz.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MKMagneticProgress\n\n[![Version](https://img.shields.io/cocoapods/v/MKMagneticProgress.svg?style=flat)](http://cocoapods.org/pods/MKMagneticProgress)\n[![License](https://img.shields.io/cocoapods/l/MKMagneticProgress.svg?style=flat)](http://cocoapods.org/pods/MKMagneticProgress)\n[![Platform](https://img.shields.io/cocoapods/p/MKMagneticProgress.svg?style=flat)](http://cocoapods.org/pods/MKMagneticProgress)\n\n\n\u003ch1 align=\"center\"\u003eMKMagneticProgress\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003eA circular progress bar for iOS written in Swift\u003c/h3\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/malkouz/MKMagneticProgress/raw/master/demo.gif\"/\u003e  \n\u003c/p\u003e\n\n## Features\n\n* Interface builder designable\n* Highly customizable and flexible\n* Easy to use\n* Written in Swift\n\n## Installation \n\n### CocoaPods (Recommended)\n\n1. Install [CocoaPods](https://cocoapods.org)\n2. Add this repo to your `Podfile`\n\n```ruby\ntarget 'Example' do\n# IMPORTANT: Make sure use_frameworks! is included at the top of the file\nuse_frameworks!\nplatform :ios, '8.0'\npod 'MKMagneticProgress'\nend\n```\n3. Run `pod install`\n4. Open up the `.xcworkspace` that CocoaPods created\n5. Done!\n\n### Manually\n\nSimply download the `MKMagneticProgress.swift` file from [here](https://github.com/malkouz/MKMagneticProgress/blob/master/MKMagneticProgress/Classes/MKMagneticProgress.swift) into your project, make sure you point to your projects target\n\n## Usage\n\n### Interface Builder\n\nSimply drag a `UIView` into your storyboard. Make sure to subclass `MKMagneticProgress` and that the module points `MKMagneticProgress`. \n\nDesign your heart out\n\n![ib-demo.gif](https://github.com/malkouz/MKMagneticProgress/raw/master/IB.gif)\n\n### Usage\n\n```swift\nimport MKMagneticProgress\n\n\n@IBOutlet weak var magProgress:MKMagneticProgress!\n\noverride func viewDidLoad() {\n    magProgress.setProgress(progress: 0.5, animated: true)\n    magProgress.progressShapeColor = UIColor.blue\n    magProgress.backgroundShapeColor = UIColor.yellow\n    magProgress.titleColor = UIColor.red\n    magProgress.percentColor = UIColor.black\n\n    magProgress.lineWidth = 10\n    magProgress.orientation = .top\n    magProgress.lineCap = .round\n\n    magProgress.title = \"Title\"\n    magProgress.percentLabelFormat = \"%.2f%%\"\n\n}\n```\n\n## Example project\n\nTake a look at the example project over [here](Example/)\n\n1. Download it\n2. Open the `Example.xcworkspace` in Xcode\n3. Enjoy!\n\n\n\n## Author\n\nMoayad Al kouz, moayad_kouz9@hotmail.com\n\u003c/p\u003e\nTwitter : @malkouz\n\n## License\n\nMKMagneticProgress is available under the MIT license. See the LICENSE file for more info.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalkouz%2Fmkmagneticprogress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmalkouz%2Fmkmagneticprogress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalkouz%2Fmkmagneticprogress/lists"}