remember Storyteller Home State
fun rememberStorytellerHomeState(lazyListState: LazyListState = LazyListState()): StorytellerHomeState
Remembers a StorytellerHomeState instance across recompositions for use with the StorytellerHome Composable. This state holder manages the LazyListState for the main vertical list of the Home screen and provides a reloadData function to refresh all content.
Return
A remembered instance of StorytellerHomeState.
Parameters
lazy List State
The LazyListState to be used for the Home screen's main list. Defaults to a new state created by LazyListState(). Provide a custom state if you need to control scrolling or observe list state from outside the StorytellerHome composable itself.