Package-level declarations

Types

Link copied to clipboard
sealed interface LazyPagingColumn
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun <T : Any> LazyPagingItems<T>.indexOf(op: (T?) -> Boolean): Int
Link copied to clipboard
fun <T : Any> LazyPagingColumn(lazyPagingItems: LazyPagingItems<T>, type: LazyPagingColumn, modifier: Modifier = Modifier, state: LazyGridState = rememberLazyGridState(), contentPadding: PaddingValues = PaddingValues(), fillWidth: Boolean = type is LazyPagingColumn.List, key: (index: Int) -> Any? = null, contentType: (index: Int) -> Any? = { type }, itemContent: @Composable LazyGridItemScope.(index: Int, item: T) -> Unit)
Link copied to clipboard
fun <T : Any> rememberPagingItems(viewModel: PagingViewModel = viewModel { PagingViewModel() }, block: @DisallowComposableCalls () -> Flow<PagingData<T>>): LazyPagingItems<T>