StorytellerStoriesRow

fun StorytellerStoriesRow(modifier: Modifier = Modifier, state: StorytellerRowState = rememberStorytellerRowState(), dataModel: StorytellerStoriesDataModel, delegate: StorytellerListViewDelegate, searchInput: SearchInput? = null, isEnabled: Boolean = true)

A Composable function that displays a horizontal row of Storyteller Stories. This component is used to render Stories, typically from one or more categories, in a row/carousel layout. For more details on using Storyteller list components, see the Storyteller Lists Documentation.

Parameters

modifier

The Modifier to be applied to this layout.

state

The StorytellerRowState for managing the state of this row, such as scroll position, defaults to a new state remembered by rememberStorytellerRowState.

dataModel

The StorytellerStoriesDataModel which defines the categories of Stories to be displayed and configures aspects like cell type, display limit.

delegate

A StorytellerListViewDelegate to handle user interactions and other events within the row, such as item data loading states.