Navigation Route
Represents a Material UI-styled navigation route for transitioning between views.
Overview
Initializer
NavigationRoute(destination: @escaping () -> Destination, label: @escaping () -> Label)Parameters
Parameter
Description
Example
NavigationRoute {
Container {
Text("Profile View")
}
} label: {
NavigationRouteLabel(systemImage: "arrowshape.turn.up.right.fill", "Navigation Route")
}

Last updated