{"id":15293634,"url":"https://github.com/barankaraoguzzz/fastonboarding","last_synced_at":"2025-08-02T18:05:03.630Z","repository":{"id":56910651,"uuid":"88264671","full_name":"barankaraoguzzz/FastOnBoarding","owner":"barankaraoguzzz","description":"very easy onboarding page","archived":false,"fork":false,"pushed_at":"2018-05-16T14:29:29.000Z","size":863,"stargazers_count":19,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-13T14:07:51.189Z","etag":null,"topics":["animation","cocoapods","cube","ios","onboarding","swift","swift-3"],"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/barankaraoguzzz.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":"2017-04-14T12:10:33.000Z","updated_at":"2024-10-20T00:29:37.000Z","dependencies_parsed_at":"2022-08-20T20:20:35.983Z","dependency_job_id":null,"html_url":"https://github.com/barankaraoguzzz/FastOnBoarding","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barankaraoguzzz%2FFastOnBoarding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barankaraoguzzz%2FFastOnBoarding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barankaraoguzzz%2FFastOnBoarding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barankaraoguzzz%2FFastOnBoarding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/barankaraoguzzz","download_url":"https://codeload.github.com/barankaraoguzzz/FastOnBoarding/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248724634,"owners_count":21151561,"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","cube","ios","onboarding","swift","swift-3"],"created_at":"2024-09-30T16:50:18.255Z","updated_at":"2025-04-13T14:07:56.564Z","avatar_url":"https://github.com/barankaraoguzzz.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastOnBoarding\n\n[![CI Status](https://img.shields.io/badge/build-online-green.svg?longCache=true\u0026style=flat)](https://travis-ci.org/baran.karaoguz@ogr.sakarya.edu.tr/FastOnBoarding)\n[![Version](https://img.shields.io/badge/pod-v0.2.0-orange.svg?longCache=true\u0026style=flat)](http://cocoapods.org/pods/FastOnBoarding)\n[![License](https://img.shields.io/cocoapods/l/FastOnBoarding.svg?style=flat)](http://cocoapods.org/pods/FastOnBoarding)\n[![Platform](https://img.shields.io/badge/platform-ios-blue.svg?longCache=true\u0026style=flat)](http://cocoapods.org/pods/FastOnBoarding)\n[![Language](https://img.shields.io/badge/language-swift-green.svg?longCache=true\u0026style=flat)](http://cocoapods.org/pods/FastOnBoarding)\n\n\n\n\n**FastOnBoarding framework helps you make your onboard page.You write just a line code  and finished onboard page. It has 11 different animation**\n\n**these :**\n- cube\n- alignedCube\n- flip\n- alignedFlip\n- oglFlip\n- rotate\n- pageCurl\n- pageUnCurl\n- rippleEffect\n- suckEffect\n\n\n\n![](https://media.giphy.com/media/l4FGysXyvvZsR9f68/giphy.gif) ,    ![](https://media.giphy.com/media/3oKIP8pPkC8BG88qKQ/giphy.gif) ,    ![](https://media.giphy.com/media/l4FGwALpCwhtiscZG/giphy.gif)\n\n\n\n\n\n\n\n## Example\n\n```swift\nimport UIKit\nimport FOView\n\nclass ViewController: UIViewController {\n\n  @IBOutlet weak var onboardingView: FOView!\n\n  override func viewDidLoad() {\n    super.viewDidLoad()\n    onboardingView.foImages = imageViewArray\n    onboardingView.animateType = .oglFlip\n    onboardingView.foDiriction = .horizantal\n    onboardingView.delegate = self //For Delegate\n    onboardingView.startOnboarding()\n  }\n\n  let imageViewArray : [UIImage]? = [#imageLiteral(resourceName: \"image1\"),#imageLiteral(resourceName: \"image2\"),#imageLiteral(resourceName: \"image3\")]\n}\n\n\n```\n\n## Implement FODelegate\n###### If you want to detect onboarding index, you should use FODelegate. :)\n\n```swift\nextension ViewController: FODelegate {\n    func FOnboarding(_ foView: FOView, getCountPageControl: Int) {\n        print(getCountPageControl)\n    }\n}\n```\n\n## Optionally Method\n#### isPageControl\n###### If you want to make a custom page control. you should hide FOView's page control.\n```swift\nonboardingView.isPageControl = false // this is optional method. default = true\n```\n\n## Install via CocoaPods\n\nFastOnBoarding is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n```ruby\nplatform :ios, '8.0'\nuse_frameworks!\n\npod \"FOView\"\n```\n\n####Then on the top of files where you are going to use this:\n```swift\nimport FOView\n```\n\n\n## Author\n\nBaran Batuhan Karaoğuz([@Baran](https://github.com/barankaraoguzzz))\n\n## License\n\nFastOnBoarding is available under the MIT license. See the LICENSE file for more info.\n\n##Keywords swift, swift3, Animating, Pagecurl, Cube, Onboarding, Onboard, xcode, ios\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarankaraoguzzz%2Ffastonboarding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbarankaraoguzzz%2Ffastonboarding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarankaraoguzzz%2Ffastonboarding/lists"}