darwinMain.dev.programadorthi.routing.darwin.UIKitUINavigationController.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uikit Show documentation
Show all versions of uikit Show documentation
An extensible and multiplatform routing system powered by Ktor
The newest version!
package dev.programadorthi.routing.darwin
import platform.Foundation.NSCoder
public expect class UIKitUINavigationController(coder: NSCoder) {
public fun viewControllers(): List
public fun popViewControllerAnimated(animated: Boolean): UIKitUIViewController?
public fun popToViewController(
viewController: UIKitUIViewController,
animated: Boolean,
): List?
public fun pushViewController(
viewController: UIKitUIViewController,
animated: Boolean,
)
public fun setViewControllers(
viewControllers: List,
animated: Boolean,
)
}