{"id":18550874,"url":"https://github.com/pedrommcarrasco/fluky","last_synced_at":"2025-04-09T22:31:23.562Z","repository":{"id":56911517,"uuid":"154136582","full_name":"pedrommcarrasco/Fluky","owner":"pedrommcarrasco","description":"🎲 Loading based on random icons","archived":false,"fork":false,"pushed_at":"2019-10-05T14:34:29.000Z","size":3658,"stargazers_count":136,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T12:47:31.755Z","etag":null,"topics":["animation","cocoapods","icons","loading","random-generation"],"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/pedrommcarrasco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"pedrommcarrasco","custom":["https://www.buymeacoffee.com/pedrommcarrasco","https://www.paypal.me/pedrommcarrasco"]}},"created_at":"2018-10-22T12:05:24.000Z","updated_at":"2025-03-23T00:45:08.000Z","dependencies_parsed_at":"2022-08-20T20:20:51.691Z","dependency_job_id":null,"html_url":"https://github.com/pedrommcarrasco/Fluky","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/pedrommcarrasco%2FFluky","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedrommcarrasco%2FFluky/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedrommcarrasco%2FFluky/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedrommcarrasco%2FFluky/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pedrommcarrasco","download_url":"https://codeload.github.com/pedrommcarrasco/Fluky/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248123516,"owners_count":21051485,"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":["animation","cocoapods","icons","loading","random-generation"],"created_at":"2024-11-06T21:05:58.324Z","updated_at":"2025-04-09T22:31:21.523Z","avatar_url":"https://github.com/pedrommcarrasco.png","language":"Swift","funding_links":["https://github.com/sponsors/pedrommcarrasco","https://www.buymeacoffee.com/pedrommcarrasco","https://www.paypal.me/pedrommcarrasco"],"categories":[],"sub_categories":[],"readme":"![](https://github.com/pedrommcarrasco/Fluky/blob/master/Design/cover.png?raw=true)\n\n\u003e **Fluky** *(/ˈfluːki/)*, *adjective*\n\u003e\n\u003e \"obtained or achieved more by chance than skill\"\n\nMake every loading screen different with Fluky, your random loading screen inspired by PlayStation.\n\n[![CocoaPods](https://img.shields.io/cocoapods/v/Fluky.svg)](https://cocoapods.org/pods/Fluky)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![apm](https://img.shields.io/apm/l/vim-mode.svg)](https://github.com/pedrommcarrasco/Fluky/blob/master/LICENSE)\n\n## Installation 📦\n\n### Cocoapods\n\nFluky is available through [CocoaPods](https://cocoapods.org/pods/Fluky). To do so, add the following line to your PodFile:\n\n```swift\npod 'Fluky'\n```\nAnd then run the following command in terminal:\n\n```swift\npod install\n```\n\n### Carthage\nAdd this to your Cartfile:\n\n```swift\ngithub \"pedrommcarrasco/Fluky\"\n```\n\nAnd then run the following command in terminal:\n\n```swift\ncarthage update\n```\n\n### Swift Package Manager\nIn  your app target click `+` in `Frameworks, Libraries, and Embedded Content`, then `Add Other...`, `Add Package Dependency...`, put repository url `https://github.com/pedrommcarrasco/Fluky.git`\n\n##  Styles 💅\n\n| Single                                                       | Linear                                                       | Box                                                          |\n| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |\n| ![](https://github.com/pedrommcarrasco/Fluky/blob/master/Design/single.gif?raw=true) | ![](https://github.com/pedrommcarrasco/Fluky/blob/master/Design/linear.gif?raw=true) | ![](https://github.com/pedrommcarrasco/Fluky/blob/master/Design/box.gif?raw=true) |\n\n* ☝️ *This background is not part of Fluky*\n\n## Usage Example ⌨️\n\nAfter installing Fluky, you should start by importing the framework:\n\n```swift\nimport Fluky\n```\n\nOnce imported, you can start using Fluky to create randomized icon based loading sceens. Bellow, you'll be able to see a working example. First, we start by creating a `FlukyView`:\n\n```swift\nlet flukyView = Fluky.view(as: .single, with: images) // images -\u003e array of icons you want to display\n// size has a default parameter of 30.0\n```\n\nOnce you apply your constraints, to start animating you just need to do:\n\n```swift\nflukyView.start()\n```\n\nIn order to stop you just do:\n\n```swift\nflukyView.stop()\n```\n\nWith the goal of being as customizable as possible, Fluky only creates a `FlukyView` responsible for managing the icons and its animations. With this in mind, it should be added to your view hierarchy where you can customize `backgroundColor`, add a `UILabel` \u0026 others.\n\n## Sample Project  📲\n\nThere's a sample project in this repository called [Example](https://github.com/pedrommcarrasco/Fluky/tree/master/Example) with some examples.\n\n## Support Fluky ❤️\n\nHello there 👋\n\nI’m Pedro, a Portuguese iOS Engineer since February 2017. I’m an avid OSS enthusiast and contributor - help by sharing, learn by what’s shared.\n\nI've built and open-sourced multiple frameworks and applications, including **[Brooklyn](https://github.com/pedrommcarrasco/Brooklyn)** and **[CocoaHub](https://cocoahub.app)**.\n\nI'm also a conference and meetup organizer, being part of **[SwiftAveiro](https://swiftaveiro.xyz)** and **[CocoaHeads Porto](https://www.meetup.com/CocoaHeads-Porto/)**.\n\nIf you enjoy my work and would like to help me continue it, please consider:\n* https://github.com/users/pedrommcarrasco/sponsorship\n* https://www.buymeacoffee.com/pedrommcarrasco\n* https://www.paypal.me/pedrommcarrasco\n\n## Contributing  🙌 \n\nFeel free to contribute to this project by providing [ideas](https://github.com/pedrommcarrasco/Fluky/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) or opening [pull requests](https://github.com/pedrommcarrasco/Fluky/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc).\n\n## License ⛔\n\nFluky's available under the MIT license. See the [LICENSE](https://github.com/pedrommcarrasco/Fluky/blob/master/LICENSE) file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedrommcarrasco%2Ffluky","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpedrommcarrasco%2Ffluky","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedrommcarrasco%2Ffluky/lists"}