Skip to content

Latest commit

 

History

History
124 lines (86 loc) · 3.27 KB

README.md

File metadata and controls

124 lines (86 loc) · 3.27 KB

UIKitTheme

Description + docs coming soon

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/Apppsaurus/UIKitTheme.

Swift Package Manager Projects

You can add UIKitTheme as a package dependency in your Package.swift file:

let package = Package(
    //...
    dependencies: [
        .package(
            name: "UIKitTheme",
            url: "https://github.com/Apppsaurus/UIKitTheme"
        ),
    ],
    //...
)

From there, refer to the UIKitTheme "product" delivered by the UIKitTheme "package" inside of any of your project's target dependencies:

targets: [
    .target(
        name: "UIKitTheme",
        dependencies: [
            .product(
                name: "UIKitTheme",
                package: "UIKitTheme"
            ),
        ],
        ...
    ),
    ...
]

Then simply import UIKitTheme wherever you’d like to use it.

Requirements

  • Xcode 13.0+

📜 Creating & Building Documentation

Documentation is built with Xcode's DocC. See Apple's guidance on how to build, run, and create DocC content.

🏷 License

UIKitTheme is available under the MIT license. See the LICENSE file for more info.