Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 2.14 KB

File metadata and controls

49 lines (41 loc) · 2.14 KB

Swift Xcode SPM Platforms DocC License CI Release

Extensions ⚙️

A collection of useful Swift/SwiftUI extensions.

Integration

Xcode

Use Xcode's built-in support for SPM.

or...

Package.swift

In your Package.swift, add Extensions as a dependency:

dependencies: [
    .package(
        url: "https://github.com/thatfactory/extensions",
        from: "0.1.0"
    )
]

Associate the dependency with your target:

targets: [
    .target(
        name: "YourTarget",
        dependencies: [
            .product(
                name: "Extensions",
                package: "extensions"
            )
        ]
    )
]

Run: swift build