Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.27 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.27 KB

NavigatorKit

A wrapper for NavigationView and NavigationLink that makes programmatic navigation a little friendlier.

SwiftPM compatible Swift Version License

NavigatorKit is an opinionated wrapper for NavigationView and NavigationLink that makes programmatic navigation a little friendlier.

Installation

Requirements

  • iOS 14.0+
  • Xcode 13+
  • Swift 5.4+

Swift Package Manager

In Xcode, select: File > Swift Packages > Add Package Dependency.

Paste the package github url in the search bar https://github.com/ggrell/NavigatorKit and press next and follow instructions given via Xcode to complete installation.

You can then add NavigatorKit to your file by adding import NavigatorKit.

Or

Add this project on your Package.swift

import PackageDescription

let package = Package(
    dependencies: [
        .Package(url: "https://github.com/ggrell/NavigatorKit.git", from: "1.0.0")
    ]
)