{"id":24404046,"url":"https://github.com/jaydeep-godhani/circleprogresskit","last_synced_at":"2026-04-27T09:02:21.595Z","repository":{"id":272898236,"uuid":"918065069","full_name":"jaydeep-godhani/CircleProgressKit","owner":"jaydeep-godhani","description":"CircleProgressKit: A customizable circular progress view for iOS with smooth animations, dynamic segments, and profile image support, built using UIKit.","archived":false,"fork":false,"pushed_at":"2025-01-17T10:12:32.000Z","size":68,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-17T10:19:32.116Z","etag":null,"topics":["cashapelayer","circleprogressview","circularprogress","customui","customuiview","ios","iosdevelopment","opensource","progressbar","progresscircle","progressindicator","story","swift","uikit","whatsapp","xcode"],"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/jaydeep-godhani.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":"2025-01-17T07:20:54.000Z","updated_at":"2025-01-17T10:12:33.000Z","dependencies_parsed_at":"2025-01-17T10:19:40.376Z","dependency_job_id":"937d0992-51fd-4100-976b-5294c1ef90b4","html_url":"https://github.com/jaydeep-godhani/CircleProgressKit","commit_stats":null,"previous_names":["jaydeep-godhani/circleprogresskit"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydeep-godhani%2FCircleProgressKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydeep-godhani%2FCircleProgressKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydeep-godhani%2FCircleProgressKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydeep-godhani%2FCircleProgressKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaydeep-godhani","download_url":"https://codeload.github.com/jaydeep-godhani/CircleProgressKit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243364784,"owners_count":20279211,"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":["cashapelayer","circleprogressview","circularprogress","customui","customuiview","ios","iosdevelopment","opensource","progressbar","progresscircle","progressindicator","story","swift","uikit","whatsapp","xcode"],"created_at":"2025-01-20T03:58:23.096Z","updated_at":"2025-12-26T09:32:13.255Z","avatar_url":"https://github.com/jaydeep-godhani.png","language":"Swift","readme":"# CircleProgressKit\n\n![GitHub repo size](https://img.shields.io/github/repo-size/jaydeep-godhani/CircleProgressKit)\n![GitHub stars](https://img.shields.io/github/stars/jaydeep-godhani/CircleProgressKit?style=social)\n![GitHub forks](https://img.shields.io/github/forks/jaydeep-godhani/CircleProgressKit?style=social)\n\n`CircleProgressKit` is a customizable circular progress view for iOS, allowing easy visualization of progress with an optional central image. This library is implemented as a Swift file, ready to integrate directly into your project.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 1.png\" width=270\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 2.png\" width=270\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 3.png\" width=270\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n \n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 4.png\" width=270\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 5.png\" width=270\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\"Images/Screenshot - 6.png\" width=270\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Features\n\n- Circular progress visualization with adjustable colors and line width.\n- Supports both clockwise and counterclockwise progress animation.\n- Central image support with customizable insets and content mode.\n- Lightweight and easy to use.\n- Fully customizable properties via code or Interface Builder.\n\n## Installation\n\n### Manual Integration\n\n1. Download or clone this repository.\n2. Copy the `CircleProgressView.swift` file into your project.\n3. Ensure the file is added to the correct target in your project.\n\n## Usage\n\n### Programmatically\n\n```swift\nimport UIKit\n\n// Create and configure a CircleProgressView instance\nlet circleProgressView = CircleProgressView(frame: CGRect(x: 50, y: 50, width: 100, height: 100))\ncircleProgressView.image = UIImage(named: \"profile\")\ncircleProgressView.seenProgressColor = .blue\ncircleProgressView.unseenProgressColor = .lightGray\ncircleProgressView.lineWidth = 4.0\ncircleProgressView.total = 5\ncircleProgressView.setProgress(progress: 3, animated: true)\n\n// Add to your view\nview.addSubview(circleProgressView)\n```\n\n### Using Interface Builder\n\n1. Drag a `UIView` into your storyboard or XIB file.\n2. Set the class to `CircleProgressView` in the Identity Inspector.\n3. Customize the available properties in the Attributes Inspector:\n- `image`\n- `seenProgressColor`\n- `unseenProgressColor`\n- `lineWidth`\n- `imageInset`\n- `clockwise`\n  \n## Customization\n\n- `image`: Set a central image for the progress view.\n- `seenProgressColor`: The color of the completed portion of the progress.\n- `unseenProgressColor`: The color of the remaining progress.\n- `lineWidth`: The width of the circular progress stroke.\n- `total`: The total segments of the progress.\n- `progress`: The current progress value, which can be set using the `setProgress(progress:animated:)` method.\n- `clockwise`: Set to `true` for clockwise progress or `false` for counterclockwise.\n\n## Example\n\nTo see a fully working example: \n1. set up a `CircleProgressView` instance in a simple project\n2. Alternatively, use Interface Builder to add one to your storyboard and customize its properties.\n\n## Contributions\n\nContributions are welcome! If you find any issues or want to enhance this project, feel free to submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaydeep-godhani%2Fcircleprogresskit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaydeep-godhani%2Fcircleprogresskit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaydeep-godhani%2Fcircleprogresskit/lists"}