Known direct subclasses
NavEntryWrapper

Class that wraps a NavEntry within another NavEntry.


Entry maintains and stores the key and the content represented by that key. Entries should be created as part of a reference/androidx/navigation/NavDisplay.

Summary

Public constructors

<T : Any> NavEntry(
    key: T,
    metadata: Map<StringAny>,
    content: @Composable (T) -> Unit
)
Cmn

Public properties

open @Composable (T) -> Unit

content for this entry to be displayed when this entry is active

Cmn
open T

key for this entry

Cmn
open Map<StringAny>

provides information to the display

Cmn

Public constructors

<T : Any> NavEntry(
    key: T,
    metadata: Map<StringAny> = emptyMap(),
    content: @Composable (T) -> Unit
)
Parameters
key: T

key for this entry

metadata: Map<StringAny> = emptyMap()

provides information to the display

content: @Composable (T) -> Unit

content for this entry to be displayed when this entry is active

Public properties

content

open val content: @Composable (T) -> Unit

content for this entry to be displayed when this entry is active

key

open val key: T

key for this entry

metadata

open val metadataMap<StringAny>

provides information to the display