{"id":28716906,"url":"https://github.com/bluepixeltech/bpactivityindicator","last_synced_at":"2025-07-01T03:07:17.559Z","repository":{"id":56903116,"uuid":"266386420","full_name":"bluepixeltech/BPActivityIndicator","owner":"bluepixeltech","description":"BPActivityIndicator is a light-weight replacement for UIActivityIndicatorView based on Core Animation and Core Graphics. I can added to your project both programmatically and via Interface Builder.","archived":false,"fork":false,"pushed_at":"2020-05-27T00:17:35.000Z","size":73422,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T03:07:17.267Z","etag":null,"topics":["activity-indicator","coreanimation","coregraphics","swift","swift5","xcode","xcode11"],"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/bluepixeltech.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":"2020-05-23T17:30:19.000Z","updated_at":"2020-05-27T00:17:38.000Z","dependencies_parsed_at":"2022-08-21T02:50:08.346Z","dependency_job_id":null,"html_url":"https://github.com/bluepixeltech/BPActivityIndicator","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bluepixeltech/BPActivityIndicator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluepixeltech%2FBPActivityIndicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluepixeltech%2FBPActivityIndicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluepixeltech%2FBPActivityIndicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluepixeltech%2FBPActivityIndicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluepixeltech","download_url":"https://codeload.github.com/bluepixeltech/BPActivityIndicator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluepixeltech%2FBPActivityIndicator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262887193,"owners_count":23379768,"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":["activity-indicator","coreanimation","coregraphics","swift","swift5","xcode","xcode11"],"created_at":"2025-06-15T03:12:18.264Z","updated_at":"2025-07-01T03:07:17.532Z","avatar_url":"https://github.com/bluepixeltech.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](Example/GIFs/title.png)\n\n# BPActivityIndicator\n\n[![CI Status](https://img.shields.io/travis/bluepixeltech/BPActivityIndicator.svg?style=flat)](https://travis-ci.org/bluepixeltech/BPActivityIndicator)\n[![Version](https://img.shields.io/cocoapods/v/BPActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/BPActivityIndicator)\n[![License](https://img.shields.io/cocoapods/l/BPActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/BPActivityIndicator)\n[![Platform](https://img.shields.io/cocoapods/p/BPActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/BPActivityIndicator)\n\n## Introduction\n\nBPActivityIndicator is a light-weight customizable replacement for UIActivityIndicatorView based on Core Animation and Core Graphics. It can be added to your project both programmatically and via Interface Builder.\n\n 🎞 | 🎞  |  🎞\n------------ | ------------- | -------------\n![](Example/GIFs/g1.gif) |  ![](Example/GIFs/g2.gif) |  ![](Example/GIFs/g3.gif)\n\n\n## Features\n* Custom color\n* Custom size\n* Custom style\n* Custom backgound (none, compact and full)\n\n## Available styles\n\n   **STYLE** | **STYLE**  \n   ------------ | -------------\n   *standardSpinning* |  *standardPulsating*\n   *standardSpinningDashed* |  *standardTrailingContinuous*\n   *standardTrailingDashed* |  *standardEchoOutside*\n   *standardEchoInside* |  *standardRainbowFill*\n   *tripleDotDance* |  *iOSCircles*\n   *iOS* |  *ringFlare*\n   *linearBars* |  *linearBarWave*\n   *linearBarWaggle* |  *linearBarHop*\n          \n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\n*  Xcode 11, Swift 5\n\n## Installation\n\n* ### Via Cocoapods\nBPActivityIndicator is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'BPActivityIndicator'\n```\n\n* ### Via source file\nSimply drag \u0026 drop BPActivityIndicator.swift into your project.\n\n## Usage\n\n* ### Interface Builder\nIn Storyboard, drag \u0026 drop a UIView object into the view controller. In view's Identity Inspector, change the **Class** and **Module** to BPActivityIndicator.\n\n* ### Programmatically\nFirst, import the module:\n```swift\nimport BPActivityIndicator\n```\nThen, create an instance of BPActivityIndicator, and enjoy!\n```swift\nlet ai = BPActivityIndicator(frame: CGRect(x: 50.0, y: 50.0, width: 170.0, height: 200.0))\nai.translatesAutoresizingMaskIntoConstraints = false\nview.addSubview(ai)\nai.activityIndicatorStyle = .tripleDotDance\nai.backgroundMode = .none\nai.backgroundColorStyle = .dark\nai.titleColor = .lightGray\nai.titleFont = UIFont.systemFont(ofSize: 18.0, weight: .light)\nai.title = \"Please wait...\"\nai.color = .lightGray\nai.lineWidth = 3.0\nai.startAnimating()\n```\n\n## Author\n\nPouya Khansaryan, bluepixel.technologies@gmail.com\n\n## License\n\nBPActivityIndicator is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluepixeltech%2Fbpactivityindicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluepixeltech%2Fbpactivityindicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluepixeltech%2Fbpactivityindicator/lists"}