{"id":15029620,"url":"https://github.com/endoumari/tabpageviewcontroller","last_synced_at":"2025-04-08T04:14:51.772Z","repository":{"id":41384193,"uuid":"54252093","full_name":"EndouMari/TabPageViewController","owner":"EndouMari","description":"Paging view controller and scroll tab view","archived":false,"fork":false,"pushed_at":"2022-01-13T18:00:07.000Z","size":197,"stargazers_count":1390,"open_issues_count":44,"forks_count":222,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-08T04:14:46.980Z","etag":null,"topics":["infinity-mode","ios","tab","ui","uipageviewcontroller"],"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/EndouMari.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2016-03-19T06:55:16.000Z","updated_at":"2025-03-11T09:33:35.000Z","dependencies_parsed_at":"2022-07-19T02:17:08.085Z","dependency_job_id":null,"html_url":"https://github.com/EndouMari/TabPageViewController","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndouMari%2FTabPageViewController","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndouMari%2FTabPageViewController/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndouMari%2FTabPageViewController/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndouMari%2FTabPageViewController/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndouMari","download_url":"https://codeload.github.com/EndouMari/TabPageViewController/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247773719,"owners_count":20993639,"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":["infinity-mode","ios","tab","ui","uipageviewcontroller"],"created_at":"2024-09-24T20:11:12.583Z","updated_at":"2025-04-08T04:14:51.747Z","avatar_url":"https://github.com/EndouMari.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TabPageViewController\n\n[![License](https://img.shields.io/cocoapods/l/TabPageViewController.svg?style=flat)](http://cocoapods.org/pods/TabPageViewController)\n[![Language](https://img.shields.io/badge/language-swift-orange.svg?style=flat)](https://developer.apple.com/swift)\n[![Version](https://img.shields.io/cocoapods/v/TabPageViewController.svg?style=flat)](http://cocoapods.org/pods/TabPageViewController)\n[![Platform](https://img.shields.io/cocoapods/p/TabPageViewController.svg?style=flat)](http://cocoapods.org/pods/TabPageViewController)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![CocoaPods](https://img.shields.io/cocoapods/dt/TabPageViewController.svg)]()\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/matteocrippa/awesome-swift#utility)\n\n\n\n## Description\n\n\u003cimg src=\"https://raw.githubusercontent.com/wiki/EndouMari/TabPageViewController/images/demo2.gif\" width=\"300\" align=\"right\" hspace=\"20\"\u003e\n\n\nTabPageViewController is paging view controller and scroll tab view.\n\n**Screenshot**\n\nInfinity Mode\n\n\u003cimg src=\"https://raw.githubusercontent.com/wiki/EndouMari/TabPageViewController/images/ScreenShot2.png\" height=\"300\"\u003e\n\n\nLimited Mode\n\n\u003cimg src=\"https://raw.githubusercontent.com/wiki/EndouMari/TabPageViewController/images/ScreenShot1.png\" height=\"300\"\u003e\n\n\n\n\u003cbr clear=\"right\"\u003e\n\n## Customization\n\nUse TabPageOption\n\n* fontSize for tab item\n\n`fontSize: CGFloat`\n\n* currentColor for current tab item\n\n`currentColor: UIColor`\n\n* defaultColor for tab item\n \n`defaultColor: UIColor`\n\n* tabHeight for tab view\n\n`tabHeight: CGFloat`\n\n* tabMargin for tab item\n\n`tabMargin: CGFloat`\n\n* tabBackgroundColor for tab view\n\n`tabBackgroundColor: UIColor`\n\n* currentBarHeight for current bar view\n\n`currentBarHeight: CGFloat`\n\n* pageBackgoundColor for tab page viewcontroller \n\n`pageBackgoundColor: UIColor`\n\n* isTranslucent for tab view and navigation bar \n\n`isTranslucent: Bool`\n\n* hides tabbar on swipe\n\n`hidesTabBarOnSwipe: Bool`\n\n## Usage\n\n`import TabPageViewController` to use TabPageViewController in your file.\n\n\n### Example \n\n```swift\nlet tabPageViewController = TabPageViewController.create()\nlet vc1 = UIViewController()\nlet vc2 = UIViewController()\n\ntabPageViewController.tabItems = [(vc1, \"First\"), (vc2, \"Second\")]\n\nTabPageOption.currentColor = UIColor.redColor()\n\n```\n\nInfinity Mode \n\n```swift\nlet tabPageViewController = TabPageViewController.create()\ntabPageViewController.isInfinity = true\n```\n\n\n## Requirements\n\niOS13+\n\n## Installation\n\n### Using CocoaPods\n\n```ruby\nuse_frameworks!\npod \"TabPageViewController\"\n```\n\n### Using Carthage\n\n```ruby\ngithub \"EndouMari/TabPageViewController\"\n\n```\n### Manually\nCopy all the files in `Pod/Classes` directory into your project.\n\n\n\n## Author\n\nEndouMari\n\n## License\n\nTabPageViewController 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%2Fendoumari%2Ftabpageviewcontroller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fendoumari%2Ftabpageviewcontroller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendoumari%2Ftabpageviewcontroller/lists"}