{"id":20664729,"url":"https://github.com/jasudev/axistabview","last_synced_at":"2025-07-27T18:10:37.165Z","repository":{"id":45787499,"uuid":"469114705","full_name":"jasudev/AxisTabView","owner":"jasudev","description":"A library that allows you to easily create various styles of tab views. Supports iOS and macOS.","archived":false,"fork":false,"pushed_at":"2022-05-24T08:40:32.000Z","size":1250,"stargazers_count":231,"open_issues_count":1,"forks_count":25,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-11T08:31:27.115Z","etag":null,"topics":["ios","macos","swift","swiftui","swiftui-components","swiftui-library","swiftui-tabbar","swiftui-tabview","tabbar","tabview","tabview-swiftui"],"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/jasudev.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":"2022-03-12T15:01:25.000Z","updated_at":"2025-04-15T06:11:04.000Z","dependencies_parsed_at":"2022-07-16T15:17:23.090Z","dependency_job_id":null,"html_url":"https://github.com/jasudev/AxisTabView","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/jasudev/AxisTabView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasudev%2FAxisTabView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasudev%2FAxisTabView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasudev%2FAxisTabView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasudev%2FAxisTabView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jasudev","download_url":"https://codeload.github.com/jasudev/AxisTabView/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasudev%2FAxisTabView/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267400485,"owners_count":24081183,"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","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["ios","macos","swift","swiftui","swiftui-components","swiftui-library","swiftui-tabbar","swiftui-tabview","tabbar","tabview","tabview-swiftui"],"created_at":"2024-11-16T19:25:56.892Z","updated_at":"2025-07-27T18:10:37.105Z","avatar_url":"https://github.com/jasudev.png","language":"Swift","readme":"# **AxisTabView for SwiftUI**\nA library that allows you to easily create various styles of tab views. Supports iOS and macOS.\n\n[![Platforms](https://img.shields.io/badge/Platforms-iOS%20%7C%20macOS-blue?style=flat-square)](https://developer.apple.com/macOS)\n[![iOS](https://img.shields.io/badge/iOS-14.0-blue.svg)](https://developer.apple.com/iOS)\n[![macOS](https://img.shields.io/badge/macOS-11.0-blue.svg)](https://developer.apple.com/macOS)\n[![instagram](https://img.shields.io/badge/instagram-@dev.fabula-orange.svg?style=flat-square)](https://www.instagram.com/dev.fabula)\n[![SPM](https://img.shields.io/badge/SPM-compatible-red?style=flat-square)](https://developer.apple.com/documentation/swift_packages/package/)\n[![MIT](https://img.shields.io/badge/licenses-MIT-red.svg)](https://opensource.org/licenses/MIT)  \n\n## Screenshot\n|Style|Style|Style|\n|:---:|:---:|:---:|\n|\u003cimg src=\"Markdown/AxisTabView1.png\"\u003e|\u003cimg src=\"Markdown/AxisTabView2.png\"\u003e|\u003cimg src=\"Markdown/AxisTabView4.png\"\u003e|\n|\u003cimg src=\"Markdown/AxisTabView3.png\"\u003e|\u003cimg src=\"Markdown/AxisTabView6.png\"\u003e|\u003cimg src=\"Markdown/AxisTabView5.png\"\u003e|\n\nhttps://user-images.githubusercontent.com/1617304/158022934-d50b44be-a18f-4dbe-a079-09256823bba0.mov\n\nhttps://user-images.githubusercontent.com/1617304/158058477-eed42ea0-3b2d-496f-b978-f2f6628a3801.mov\n\n## Example\n[https://fabulaapp.page.link/233](https://fabulaapp.page.link/233)\n\n## Usages\n```swift\nAxisTabView(selection: $selection, constant: ATConstant(axisMode: .bottom)) { state in\n    ATBasicStyle(state, color: .blue)\n} content: {\n    Text(\"Tab 1\")\n        .tabItem(tag: 0, normal: {\n            Text(\"Tab 1\")\n        }, select: {\n            Text(\"Tab 1\")\n                .bold()\n                .foregroundColor(Color.yellow)\n        })\n    Text(\"Tab 2\")\n        .tabItem(tag: 1, normal: {\n            Text(\"Tab 2\")\n        }, select: {\n            Text(\"Tab 2\")\n                .bold()\n                .foregroundColor(Color.yellow)\n        })\n    Text(\"Tab 3\")\n        .tabItem(tag: 2, normal: {\n            Text(\"Tab 3\")\n        }, select: {\n            Text(\"Tab 3\")\n                .bold()\n                .foregroundColor(Color.yellow)\n        })\n} onTapReceive: { selectionTap in\n    /// Imperative syntax\n    print(\"---------------------\")\n    print(\"Selection : \", selectionTap)\n    print(\"Already selected : \", self.selection == selectionTap)\n}\n```\n  \n## Swift Package Manager\nThe Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. Once you have your Swift package set up, adding AxisTabView as a dependency is as easy as adding it to the dependencies value of your Package.swift.\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/jasudev/AxisTabView.git\", .branch(\"main\"))\n]\n```\n\n## Contact\ninstagram : [@dev.fabula](https://www.instagram.com/dev.fabula)  \nemail : [dev.fabula@gmail.com](mailto:dev.fabula@gmail.com)\n\n## License\nAxisTabView is available under the MIT license. See the [LICENSE](LICENSE) file for more info.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasudev%2Faxistabview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjasudev%2Faxistabview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasudev%2Faxistabview/lists"}