{"id":18060181,"url":"https://github.com/androfone/pixel","last_synced_at":"2025-08-07T01:24:54.627Z","repository":{"id":259713861,"uuid":"879264264","full_name":"androfone/Pixel","owner":"androfone","description":"Pixel é um pacote para estilizar seu refreshable em swift","archived":false,"fork":false,"pushed_at":"2024-10-27T14:08:04.000Z","size":2201,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T12:09:38.832Z","etag":null,"topics":["programming","style","swift","swiftui","swiftui-example"],"latest_commit_sha":null,"homepage":"https://github.com/androfone/Pixel","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/androfone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://tippin.me/@cypher_poet","https://zbd.gg/Cypherpoet"]}},"created_at":"2024-10-27T13:01:50.000Z","updated_at":"2024-10-27T14:08:07.000Z","dependencies_parsed_at":"2024-10-28T08:20:15.405Z","dependency_job_id":null,"html_url":"https://github.com/androfone/Pixel","commit_stats":null,"previous_names":["androfone/pixel"],"tags_count":1,"template":false,"template_full_name":"CypherPoet/swift-package-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androfone%2FPixel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androfone%2FPixel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androfone%2FPixel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androfone%2FPixel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/androfone","download_url":"https://codeload.github.com/androfone/Pixel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332611,"owners_count":20921853,"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":["programming","style","swift","swiftui","swiftui-example"],"created_at":"2024-10-31T04:06:20.837Z","updated_at":"2025-04-05T12:09:42.650Z","avatar_url":"https://github.com/androfone.png","language":"Swift","readme":"# Pixel\n\n\u003c!-- Header Logo --\u003e\n\n\u003c!--\n\u003cdiv align=\"center\"\u003e\n   \u003cimg width=\"600px\" src=\"./Sources/MyLibraryName/MyLibraryName.docc/Resources/Images/banner-logo.png\" alt=\"Banner Logo\"\u003e\n\u003c/div\u003e\n\n --\u003e\n\n\n\u003c!-- Badges --\u003e\n\n\u003cp\u003e\n\n  [![Swift Version Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FCypherPoet%2FMyLibraryName%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/CypherPoet/MyLibraryName)\n\n  [![Swift Platform Compatibility](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FCypherPoet%2FMyLibraryName%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/CypherPoet/MyLibraryName)\n\n\u003c/p\u003e\n\n\n\u003cp\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\" /\u003e\n    \u003cimg src=\"https://github.com/androfone/Pixel\" /\u003e\n    \u003ca href=\"https://github.com/apple/swift-package-manager\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/spm-compatible-brightgreen.svg?style=flat\" /\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\n\u003cp align=\"center\"\u003e\n\n_[ A brief synopsis of this library ]._\n\n\u003c/p\u003e\n\n\n## Installation\n\n### Xcode Projects\n\nSelect `File` -\u003e `Swift Packages` -\u003e `Add Package Dependency` and enter `https://github.com/androfone/Pixel`.\n\n### Example\n\n\n\n```swift\nimport SwiftUI\nimport Pixel\n\nstruct ContentView: View {\n    @State private var isRefreshing: Bool = false\n\n    var body: some View {\n        VStack {\n            Text(\"Bem-vindo ao PixelKit!\")\n                .font(.largeTitle)\n                .padding()\n                .background(Color.white)\n                .cornerRadius(10)\n                .shadow(radius: 5) \n\n            Button(action: {\n                \n                isRefreshing.toggle()\n                PixelKit.stylishRefreshable(isRefreshing: \u0026isRefreshing, color: .blue, size: 30)\n            }) {\n                Text(\"Refresh\")\n                    .padding()\n                    .background(Color.blue)\n                    .foregroundColor(.white)\n                    .cornerRadius(10)\n                    .border(Color.gray, width: 2)\n            }\n            .padding()\n        }\n        .padding()\n        .stylishRefreshable(isRefreshing: $isRefreshing, color: .blue, size: 30)\n    }\n}\n```\n\n\n\n## Steps \n\n- [ ] Add in your Swift Editor\n","funding_links":["https://tippin.me/@cypher_poet","https://zbd.gg/Cypherpoet"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrofone%2Fpixel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrofone%2Fpixel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrofone%2Fpixel/lists"}