Package-level declarations
Functions
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>