Awesome
<br> <p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://github.com/Mijick/Assets/blob/main/NavigationView/Logotype/On%20Dark.svg"> <source media="(prefers-color-scheme: light)" srcset="https://github.com/Mijick/Assets/blob/main/NavigationView/Logotype/On%20Light.svg"> <img alt="NavigationView Logo" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Logotype/On%20Dark.svg" width="76%""> </picture> </p> <h3 style="font-size: 5em" align="center"> Navigation made simple </h3> <p align="center"> Improve the navigation in your project in no time. Keep your code clean </p> <p align="center"> <a href="https://github.com/Mijick/NavigationView-Demo" rel="nofollow">Try demo we prepared</a> | <a href="https://mijick.notion.site/1308512b2a6c483fb9a7e6804530ef87?v=6b992a9f361047348dfd9cc94c954b67&pvs=74" rel="nofollow">Roadmap</a> | <a href="https://github.com/Mijick/NavigationView/issues/new" rel="nofollow">Propose a new feature</a> </p> <br> <p align="center"> <img alt="Designed for SwiftUI" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Language.svg"/> <img alt="Platforms: iOS" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Platforms.svg"/> <img alt="Current Version" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Version.svg"/> <img alt="License: MIT" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/License.svg"/> </p> <p align="center"> <img alt="Made in Kraków" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Origin.svg"/> <a href="https://twitter.com/MijickTeam"> <img alt="Follow us on X" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/X.svg"/> </a> <a href=mailto:team@mijick.com?subject=Hello> <img alt="Let's work together" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Work%20with%20us.svg"/> </a> <a href="https://github.com/Mijick/NavigationView/stargazers"> <img alt="Stargazers" src="https://github.com/Mijick/Assets/blob/main/NavigationView/Labels/Stars.svg"/> </a> </p> <p align="center"> <img alt="NavigationView Examples" src="https://github.com/Mijick/Assets/blob/main/NavigationView/GIFs/NavigationView-1.gif" width="24.5%"/> <img alt="NavigationView Examples" src="https://github.com/Mijick/Assets/blob/main/NavigationView/GIFs/NavigationView-2.gif" width="24.5%"/> <img alt="NavigationView Examples" src="https://github.com/Mijick/Assets/blob/main/NavigationView/GIFs/NavigationView-3.gif" width="24.5%"/> <img alt="NavigationView Examples" src="https://github.com/Mijick/Assets/blob/main/NavigationView/GIFs/NavigationView-4.gif" width="24.5%"/> </p> <br>NavigationView by Mijick is a powerful, open-source library dedicated for SwiftUI that makes navigation process super easy and much cleaner.
- Custom animations. Our library provides full support for any animation.
- Gesture support. You can easily enable navigation gestures for a selected screen.
- Remembers the current scroll view offset. Library automatically saves the current scroll view offset when you leave the view.
- Improves code quality. Navigate through your screens with just one line of code. Focus on what’s important to you and your project, not on Swift's intricacies.
- Stability at last! At Mijick, we are aware of the problems that were (and still are) with the native NavigationView and how many problems it caused to developers. Therefore, during the development process we put the greatest emphasis on the reliability and performance of the library.
- Designed for SwiftUI. While developing the library, we have used the power of SwiftUI to give you powerful tool to speed up your implementation process.
Getting Started
✋ Requirements
Platforms | Minimum Swift Version |
---|---|
iOS 15+ | 5.0 |
⏳ Installation
Swift package manager
Swift package manager is a tool for automating the distribution of Swift code and is integrated into the Swift compiler.
Once you have your Swift package set up, adding NavigationView as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/Mijick/NavigationView", branch(“main”))
]
Cocoapods
Cocoapods is a dependency manager for Swift and Objective-C Cocoa projects that helps to scale them elegantly.
Installation steps:
- Install CocoaPods 1.10.0 (or later)
- Generate CocoaPods for your project
pod init
- Add CocoaPods dependency into your
Podfile
pod 'MijickNavigationView'
- Install dependency and generate
.xcworkspace
file
pod install
-
Use new XCode project file
<br>.xcworkspace
Usage
1. Setup library
Inside your @main
structure, call the implementNavigationView
method with the view that is to be the root of the navigation stack. The view must be of type NavigatableView
. The method takes an optional argument - config
, which can be used to configure certain attributes of all the views that will be placed in the navigation stack.
@main struct NavigationView_Main: App {
var body: some Scene {
WindowGroup {
ContentView()
.implementNavigationView(config: nil)
}
}
}
2. Declare a view to be pushed to the navigation stack
NavigationView by Mijick provides the ability to push any view conforming to the NavigatableView
protocol to the navigation stack.
struct ExampleView: NavigatableView {
...
}
3. Implement body
Fill your view with content
struct ExampleView: NavigatableView {
var body: some View {
VStack(spacing: 0) {
Text("Witaj okrutny świecie")
Spacer()
Button(action: pop) { Text("Pop") }
}
}
...
}
4. Implement configure(view: NavigationConfig) -> NavigationConfig
method
This step is optional - if you wish, you can skip this step and leave the configuration as default.<br/> Each view has its own set of methods that can be used to create a unique look for each view in the stack.
struct ExampleView: NavigatableView {
func configure(view: NavigationConfig) -> NavigationConfig { view.backgroundColour(.red) }
var body: some View {
VStack(spacing: 0) {
Text("Witaj okrutny świecie")
Spacer()
Button(action: pop) { Text("Pop") }
}
}
...
}
5. Present your view - from any place in your code!
Just call ExampleView().push(with:)
from the selected place. As simple as that!
struct SettingsViewModel {
...
func openSettings() {
...
ExampleView().push(with: .verticalSlide)
...
}
...
}
6. Close your view - it's even simpler!
There are two ways to do this:
- By calling one of the methods
pop
,pop(to type:)
,popToRoot
inside any view
struct ExampleView: NavigatableView {
...
func createButton() -> some View {
Button(action: popToRoot) { Text("Tap to return to root") }
}
...
}
- By calling one of the static
NavigationManager
methods:NavigationManager.pop()
NavigationManager.pop(to type:)
where type is the type of view you want to return toNavigationManager.popToRoot()
7. Wait, there's even more!
We're almost done, but we'd like to describe three additional methods that you might like:
- With the
setAsNewRoot
method you can change the root of your navigation stack:
ExampleView()
.push(with: .verticalSlide)
.setAsNewRoot()
EnvironmentObject
can be passed, but remember to do this BEFORE pushing the view to the stack:
ExampleView()
.environmentObject(object)
.push(with: .verticalSlide)
- Use
onFocus
, notonAppear
<br> If you want to be notified every time a view is visible (is on top of the stack), useonFocus
method:
struct ExampleView: NavigatableView {
var body: some View {
VStack(spacing: 0) {
Text("Witaj okrutny świecie")
Spacer()
Button(action: pop) { Text("Pop") }
}
.onFocus(self) {
// Do something
}
}
...
}
<br>
Try our demo
See for yourself how does it work by cloning project we created
License
NavigationView is released under the MIT license. See LICENSE for details.
<br><br>
Our other open source SwiftUI libraries
PopupView - The most powerful popup library that allows you to present any popup <br> CalendarView - Create your own calendar object in no time <br> GridView - Lay out your data with no effort <br> CameraView - The most powerful CameraController. Designed for SwiftUI <br> Timer - Modern API for Timer