PinCodeInputView
PinCodeInputView copied to clipboard
Swift Package Manager support
@shima11 Can you add it from our fork ? -> https://github.com/geneva/PinCodeInputView/blob/master/Package.swift
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "PinCodeInputView",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "PinCodeInputView",
targets: ["PinCodeInputView"]
)
],
targets: [
.target(
name: "PinCodeInputView",
path: "PinCodeInputView",
exclude: [
"PinCodeInputView/Info.plist",
"PinCodeInputView/PinCodeInputView.h"
]
)
]
)