- August 12, 2025
- Mins Read
One to two paragraph statement about your product and what it does.
platform :ios, ‘8.0’
use_frameworks!
pod ‘LFTimePicker’
To get the full benefits import LFTimePicker
wherever you import UIKit
import UIKit
import LFTimePicker
Create a Cartfile
that lists the framework and run carthage bootstrap
. Follow the instructions to add $(SRCROOT)/Carthage/Build/iOS/YourLibrary.framework
to an iOS project.
github “awesome-labs/LFTimePicker”
Add this project on your Package.swift
import PackageDescription
let package = Package(
name: “LFTimePicker”
)
LFTimePickerController.swift
in your project.
//1. Create a LFTimePickerController
let timePicker = LFTimePickerController()
//2. Present the timePicker
self.navigationController?.pushViewController(timePicker, animated: true)
//3. Implement the LFTimePickerControllerDelegate
extension ExampleViewController: LFTimePickerControllerDelegate {
func didPickTime(start: String, end: String) {
print(start)
print(end)
}
}
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...