Cordate is a small library which makes working with dates much smoother by adding commonly-used extensions, custom UI components, and more.
Swift Package Manager:
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "CordateTestProject",
dependencies: [
.package(url: "https://github.com/DuetHealth/Cordate.git", from: "3.0.3")
],
targets: [
.target(name: "CordateTestProject", dependencies: ["Cordate"])
]
)
Cocoapods: pod 'Cordate', '~> 3.0'. See Cordate.podspec for more information.
Carthage: github "DuetHealth/Cordate" ~> 3.0 && carthage update
- Refactor calendar into a
CalendarViewclass to enable greater reusability - Add light-weight
DateFormatterwrapper - Rebuild
ManualDateFieldusing custom text logic
Bedrock is MIT-licensed. The MIT license is included in the root of the repository.