{"id":29263084,"url":"https://github.com/thanhdevelop/progressui","last_synced_at":"2026-03-01T13:35:04.269Z","repository":{"id":292680361,"uuid":"981566808","full_name":"ThanhDevelop/ProgressUI","owner":"ThanhDevelop","description":"A highly customizable and animated circular progress indicator for SwiftUI. Supports dynamic coloring, spinner mode, multiple sizes, and easy appearance customization.","archived":false,"fork":false,"pushed_at":"2025-06-30T04:59:19.000Z","size":3628,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T05:32:03.237Z","etag":null,"topics":["bar","chart","circle","flask","flask-sqlalchemy","jobsearch","pie","productivity-booster","progress","spinner","spm","swiftui","xcode"],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":false,"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/ThanhDevelop.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,"zenodo":null}},"created_at":"2025-05-11T12:02:51.000Z","updated_at":"2025-06-30T04:59:22.000Z","dependencies_parsed_at":"2025-06-08T19:25:44.987Z","dependency_job_id":"98c9c8a3-d806-41c0-a0c5-d65a76105860","html_url":"https://github.com/ThanhDevelop/ProgressUI","commit_stats":null,"previous_names":["thanhdevelop/progressui"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ThanhDevelop/ProgressUI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThanhDevelop%2FProgressUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThanhDevelop%2FProgressUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThanhDevelop%2FProgressUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThanhDevelop%2FProgressUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThanhDevelop","download_url":"https://codeload.github.com/ThanhDevelop/ProgressUI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThanhDevelop%2FProgressUI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263499193,"owners_count":23476021,"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":["bar","chart","circle","flask","flask-sqlalchemy","jobsearch","pie","productivity-booster","progress","spinner","spm","swiftui","xcode"],"created_at":"2025-07-04T11:05:59.111Z","updated_at":"2026-03-01T13:35:04.224Z","avatar_url":"https://github.com/ThanhDevelop.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ProgressUI 🌟\n\n![ProgressUI](https://img.shields.io/badge/ProgressUI-v1.0.0-blue.svg)\n![SwiftUI](https://img.shields.io/badge/SwiftUI-2.0-orange.svg)\n![SPM](https://img.shields.io/badge/SPM-Supported-brightgreen.svg)\n\nWelcome to the **ProgressUI** repository! This project features a highly customizable and animated circular progress indicator designed specifically for SwiftUI. Whether you need a simple spinner or a more complex progress display, ProgressUI provides the flexibility and functionality you need.\n\n## Table of Contents\n\n1. [Features](#features)\n2. [Installation](#installation)\n3. [Usage](#usage)\n4. [Customization](#customization)\n5. [Examples](#examples)\n6. [Contributing](#contributing)\n7. [License](#license)\n8. [Releases](#releases)\n\n## Features\n\n- **Customizable Appearance**: Change colors, sizes, and styles easily.\n- **Dynamic Coloring**: Adjust colors based on progress values.\n- **Spinner Mode**: Use a spinner for loading indicators.\n- **Multiple Sizes**: Choose from various sizes to fit your design.\n- **Easy Integration**: Simple to add to your SwiftUI project.\n\n## Installation\n\nYou can add ProgressUI to your project using Swift Package Manager. Follow these steps:\n\n1. Open your project in Xcode.\n2. Navigate to **File \u003e Swift Packages \u003e Add Package Dependency**.\n3. Enter the repository URL: `https://github.com/ThanhDevelop/ProgressUI`.\n4. Choose the version you want to install.\n\nFor detailed installation instructions, visit the [Releases](https://github.com/ThanhDevelop/ProgressUI/releases) section.\n\n## Usage\n\nUsing ProgressUI is straightforward. Here's a simple example:\n\n```swift\nimport SwiftUI\nimport ProgressUI\n\nstruct ContentView: View {\n    @State private var progress: CGFloat = 0.5\n\n    var body: some View {\n        VStack {\n            CircularProgressView(progress: progress)\n                .frame(width: 100, height: 100)\n                .padding()\n            \n            Slider(value: $progress, in: 0...1)\n                .padding()\n        }\n    }\n}\n```\n\nThis example shows a circular progress view with a slider to control the progress. Adjust the `progress` variable to see the indicator change in real-time.\n\n## Customization\n\nProgressUI offers various customization options. Here are some key properties you can modify:\n\n- **Color**: Set the color of the progress indicator.\n- **Line Width**: Adjust the thickness of the circular line.\n- **Animation Duration**: Change how fast the progress updates.\n- **Size**: Modify the overall size of the progress view.\n\n### Example of Customization\n\n```swift\nCircularProgressView(progress: progress)\n    .stroke(Color.blue, lineWidth: 8)\n    .animation(.easeInOut(duration: 1.0))\n```\n\n## Examples\n\nHere are some examples of how to use ProgressUI in different scenarios:\n\n### Basic Circular Progress\n\n```swift\nCircularProgressView(progress: 0.75)\n    .frame(width: 100, height: 100)\n```\n\n### Spinner Mode\n\n```swift\nSpinnerView()\n    .frame(width: 50, height: 50)\n```\n\n### Dynamic Color Change\n\n```swift\nCircularProgressView(progress: progress)\n    .foregroundColor(progress \u003c 0.5 ? .red : .green)\n```\n\n## Contributing\n\nWe welcome contributions to ProgressUI! If you'd like to help, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Make your changes.\n4. Commit your changes (`git commit -m 'Add new feature'`).\n5. Push to the branch (`git push origin feature-branch`).\n6. Create a new Pull Request.\n\nPlease ensure your code adheres to the existing style and includes tests where applicable.\n\n## License\n\nProgressUI is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n## Releases\n\nTo download the latest version of ProgressUI, visit the [Releases](https://github.com/ThanhDevelop/ProgressUI/releases) section. Here, you can find the necessary files to download and execute.\n\nFeel free to explore the repository, report issues, or suggest features. Your feedback is valuable to us!\n\n## Contact\n\nFor any questions or suggestions, please open an issue in the repository or contact the maintainer directly.\n\n---\n\nThank you for checking out ProgressUI! We hope it meets your needs for creating beautiful and functional progress indicators in your SwiftUI applications.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanhdevelop%2Fprogressui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthanhdevelop%2Fprogressui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanhdevelop%2Fprogressui/lists"}