Storyteller Row State
A state holder for Storyteller row components (e.g., StorytellerStoriesRow, StorytellerClipsRow). It encapsulates a LazyListState to manage the underlying list's scroll position and layout information. It also provides methods to interact with the row, such as reloading its data or scrolling to specific items. For more details on using Storyteller list components and their states, see the Storyteller Lists Documentation.
This state is typically created and remembered using rememberStorytellerRowState.
Parameters
The underlying LazyListState that this state object will manage, Defaults to a new state created by rememberLazyListState.
Properties
true if the row is currently being scrolled, false otherwise. Reflects the LazyListState.isScrollInProgress property of the underlying list state.
Provides information about the currently visible items and layout of the row. This is a direct accessor to LazyListState.layoutInfo.
Functions
Reloads the data for the Storyteller row. This function will first scroll the row to the beginning (index 0, offset 0). See the Storyteller Lists Documentation for more on list management.