SaveableNavStack
class SaveableNavStack : NavStack<SaveableNavStack.Record> , Iterable<SaveableNavStack.Record> (source)
A NavStack that supports saving its state via rememberSaveable. See rememberSaveableNavStack.
This implementation supports forward navigation, removal in both directions, and moving through the stack without removing entries.
Types
Link copied to clipboard
data class SaveableNavStackList(val entries: List<SaveableNavStack.Record>, val currentIndex: Int) : NavStackList<SaveableNavStack.Record>