{"id":15288662,"url":"https://github.com/terlan98/circularreveal","last_synced_at":"2026-05-18T15:35:15.186Z","repository":{"id":215501533,"uuid":"726892893","full_name":"terlan98/CircularReveal","owner":"terlan98","description":"CircularReveal is a SwiftUI modifier that allows presenting views with a circular animation","archived":false,"fork":false,"pushed_at":"2024-01-05T18:19:55.000Z","size":793,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T09:18:16.419Z","etag":null,"topics":["animation","circular","ios","present","reveal","round","swift","swiftui","view"],"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/terlan98.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,"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,"lfx_crowdfunding":null,"custom":["https://www.buymeacoffee.com/terlan98"]}},"created_at":"2023-12-03T17:54:28.000Z","updated_at":"2024-01-22T15:12:51.000Z","dependencies_parsed_at":"2024-01-04T20:24:22.488Z","dependency_job_id":"5e8fa72a-0a20-432e-adae-ca7bf663971f","html_url":"https://github.com/terlan98/CircularReveal","commit_stats":null,"previous_names":["terlan98/circularreveal"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terlan98%2FCircularReveal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terlan98%2FCircularReveal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terlan98%2FCircularReveal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terlan98%2FCircularReveal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terlan98","download_url":"https://codeload.github.com/terlan98/CircularReveal/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245217791,"owners_count":20579297,"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","circular","ios","present","reveal","round","swift","swiftui","view"],"created_at":"2024-09-30T15:51:52.450Z","updated_at":"2026-05-18T15:35:15.131Z","avatar_url":"https://github.com/terlan98.png","language":"Swift","funding_links":["https://www.buymeacoffee.com/terlan98"],"categories":[],"sub_categories":[],"readme":"\n# CircularReveal\n![ios](https://img.shields.io/badge/Platforms-iOS_16+-lightgray?style=for-the-badge\u0026logo=apple)\n![swiftui](https://img.shields.io/badge/MADE_WITH-SWIFTUI-0097FE?style=for-the-badge)\n![spm](https://img.shields.io/badge/SwiftPM-compatible-brightgreen?style=for-the-badge\u0026logo=swift)\n![license](https://img.shields.io/github/license/terlan98/CircularSlider?style=for-the-badge)\n\nA SwiftUI package for presenting views with a circular animation.\n\n\u003cp align=\"center\"\u003e\n\u003cimg width=32% src=\"./Sources/Examples/demo.gif\"\u003e\n\u003c/p\u003e\n\n## 📦 Features\n- Trigger with a boolean or an arbitrary item\n- Set custom animation duration\n- Execute a closure when the presented view is dismissed\n\n## 🛠 Installation\nYou can install `CircularReveal` by going to your Project settings \u003e Swift Packages and add the repository by providing the GitHub URL. Alternatively, you can go to File \u003e Swift Packages \u003e Add Package Dependencies...\n\n## 🚀 Usage\n### Example\n\n```swift\nstruct FirstView: View {\n    @State private var isRevealed = false\n\n    var body: some View {\n        VStack {\n            Text(\"This is the first view\")\n\n            Button(\"Present Second View\") {\n                isRevealed = true\n            }\n        }\n        .circularReveal(isRevealed: $isRevealed) {\n            SecondView(isRevealed: $isRevealed)\n        }\n    }\n}\n```\n\n```swift\nstruct SecondView: View {\n    @Binding var isRevealed: Bool\n\n    var body: some View {\n        VStack {\n            Text(\"This is the second view\")\n  \n            Button(\"Dismiss Second View\") {\n                isRevealed = false\n            }\n        }\n    }\n}\n```\n\nFor more examples, check out the [Examples](https://github.com/terlan98/CircularReveal/tree/main/Sources/Examples) folder\n\n## 🤝 Contribution\nI highly appreciate and welcome any issue reports, feature requests, pull requests, or GitHub stars you may provide.\n\n# License\nCircularReveal is released under the MIT license. \n\n\u003ca href=\"https://www.buymeacoffee.com/terlan98\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" style=\"height: 2.5em !important;width: 9em !important;\" \u003e\u003c/a\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterlan98%2Fcircularreveal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterlan98%2Fcircularreveal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterlan98%2Fcircularreveal/lists"}