Local


What is it?

Navigation for a local content.

The structure is represented by the attributes below:

AttributeTypeRequiredDefinition
screenScreenScreen to be loaded

How to use it?

Button(
    onPress = listOf(
         Navigate.PushView(
            Route.Local(
                Screen(
                    child = Text("Hello Screen from Navigate")
                )
            )
     )),
    text = "Click me!"
)