Cover Flow Scope
interface CoverFlowScope
Receiver scope to add elements to the CoverFlow list.
Functions
Link copied to clipboard
abstract fun items(count: Int, onSelectHandler: (index: Int) -> Unit = {}, key: (index: Int) -> Any? = null, contentType: (index: Int) -> Any? = { null }, itemContent: @Composable (index: Int) -> Unit)
abstract fun <T> items(items: List<T>, onSelectHandler: (item: T, index: Int) -> Unit = { _: T, _: Int -> }, key: (index: Int) -> Any? = null, contentType: (index: Int) -> Any? = { null }, itemContent: @Composable (item: T) -> Unit)
Add typed items. See LazyListScope.items