Package-level declarations
Types
Receiver scope which is used by LazyColumn and LazyRow.
A state object that can be hoisted to control and observe scrolling.
A loading strategy that preloads items above and below the visible range.
Functions
Adds an array of items where the content of an item is aware of its index.
Adds a list of items where the content of an item is aware of its index.
The vertically scrolling list that only composes and lays out the currently visible items. The content block defines a DSL which allows you to emit items of different types. For example you can use LazyListScope.item to add a single item and LazyListScope.items to add a list of items.
The horizontally scrolling list that only composes and lays out the currently visible items. The content block defines a DSL which allows you to emit items of different types. For example you can use LazyListScope.item to add a single item and LazyListScope.items to add a list of items.
Creates a LazyListState that is remembered across compositions.