Skip to content

0.2.1

Compare
Choose a tag to compare
@insub4067 insub4067 released this 14 Oct 21:36
· 15 commits to main since this release

What has changed?

New Feature: You can pop with SwiftUI View name

func pop(to identifier: String, animated: Bool = true),
func pop(toOneOf controllers: AnyClass..., animated: Bool = true)

Example

navigator?.pop(to: "RootView")
navigator?.pop(toOneOf: "RootView", "HomeView", "MainView)