{"id":1066,"url":"https://github.com/awesome-labs/LFTimePicker","last_synced_at":"2025-07-30T20:31:10.590Z","repository":{"id":56918439,"uuid":"60247743","full_name":"awesome-labs/LFTimePicker","owner":"awesome-labs","description":"Custom Time Picker ViewController with Selection of start and end times in Swift :large_orange_diamond:","archived":false,"fork":false,"pushed_at":"2017-07-31T02:56:00.000Z","size":535,"stargazers_count":67,"open_issues_count":3,"forks_count":7,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-05-19T22:36:56.569Z","etag":null,"topics":["awesome","cocoapods","dribbble","ios","swift","time-picker"],"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/awesome-labs.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":"2016-06-02T08:47:47.000Z","updated_at":"2024-02-22T18:39:13.000Z","dependencies_parsed_at":"2022-08-21T03:50:57.223Z","dependency_job_id":null,"html_url":"https://github.com/awesome-labs/LFTimePicker","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/awesome-labs%2FLFTimePicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesome-labs%2FLFTimePicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesome-labs%2FLFTimePicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awesome-labs%2FLFTimePicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awesome-labs","download_url":"https://codeload.github.com/awesome-labs/LFTimePicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227849809,"owners_count":17828936,"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":["awesome","cocoapods","dribbble","ios","swift","time-picker"],"created_at":"2024-01-05T20:15:38.180Z","updated_at":"2024-12-04T19:32:46.812Z","avatar_url":"https://github.com/awesome-labs.png","language":"Swift","funding_links":[],"categories":["Date \u0026 Time","UI","Swift"],"sub_categories":["Getting Started","Other free courses","Linter"],"readme":"# LFTimePicker\n\u003e Custom Time Picker ViewController with Selection of start and end times in Swift :large_orange_diamond:. Based on Adey Salyard's [design @ Dribbble](https://dribbble.com/shots/1780596-Time-Picker)\n\n[![Swift Version][swift-image]][swift-url]\n[![Build Status][travis-image]][travis-url]\n[![License][license-image]][license-url]\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/LFTimePicker.svg)](https://img.shields.io/cocoapods/v/LFTimePicker.svg)  \n[![Platform](https://img.shields.io/cocoapods/p/LFTimePicker.svg?style=flat)](http://cocoapods.org/pods/LFTimePicker)\n\nOne to two paragraph statement about your product and what it does.\n\n![ezgif com-resize](https://cloud.githubusercontent.com/assets/6511079/15739765/6f8cd774-2866-11e6-9913-2bdd9f9176c4.gif)\n\n## Features\n\n- [x] 12h and 24h formats\n\n## Requirements\n\n- iOS 8.0+\n- Xcode 7.3\n\n## Installation\n\n#### CocoaPods\nYou can use [CocoaPods](http://cocoapods.org/) to install `YourLibrary` by adding it to your `Podfile`:\n\n```ruby\nplatform :ios, '8.0'\nuse_frameworks!\npod 'LFTimePicker'\n```\n\nTo get the full benefits import `LFTimePicker` wherever you import UIKit\n\n``` swift\nimport UIKit\nimport LFTimePicker\n```\n\n#### Carthage\nCreate a `Cartfile` that lists the framework and run `carthage bootstrap`. Follow the [instructions](https://github.com/Carthage/Carthage#if-youre-building-for-ios) to add `$(SRCROOT)/Carthage/Build/iOS/YourLibrary.framework` to an iOS project.\n\n```\ngithub \"awesome-labs/LFTimePicker\"\n```\n\n#### Swift Package Manager\nAdd this project on your `Package.swift`\n\n```swift\nimport PackageDescription\n\nlet package = Package(\n  name: \"LFTimePicker\"\n)\n```\n\n#### Manually\n1. Download and drop ```LFTimePickerController.swift``` in your project.  \n2. Congratulations!  \n\n## Usage example\n\n```swift\n\n//1. Create a LFTimePickerController\nlet timePicker = LFTimePickerController()\n\n//2. Present the timePicker\nself.navigationController?.pushViewController(timePicker, animated: true)\n\n//3. Implement the LFTimePickerControllerDelegate\nextension ExampleViewController: LFTimePickerControllerDelegate {\n\n\tfunc didPickTime(start: String, end: String) {\n\n\t\tprint(start)\n\t\tprint(end)\n\t}\n}\n```\n\n## Contribute\n\nWe would love for you to contribute to **LFTimePicker**, check the ``LICENSE`` file for more info.\n\n## Meta\n\nLucas Farah – [@7farah7](https://twitter.com/7farah7) – contact@lucasfarah.me\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n[https://github.com/awesome-labs](https://github.com/awesome-labs/)\n\n[swift-image]:https://img.shields.io/badge/swift-3.0-orange.svg\n[swift-url]: https://swift.org/\n[license-image]: https://img.shields.io/badge/License-MIT-blue.svg\n[license-url]: LICENSE\n[travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square\n[travis-url]: https://travis-ci.org/dbader/node-datadog-metrics\n[codebeat-image]: https://codebeat.co/badges/c19b47ea-2f9d-45df-8458-b2d952fe9dad\n[codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawesome-labs%2FLFTimePicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawesome-labs%2FLFTimePicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawesome-labs%2FLFTimePicker/lists"}