Skip to content

Instantly share code, notes, and snippets.

View kenkoro's full-sized avatar
🤍
always learning

kenkoro kenkoro

🤍
always learning
View GitHub Profile
@kenkoro
kenkoro / PullToRefreshLazyColumn.kt
Last active July 17, 2024 11:59
Pull-to-refresh gesture support
package com.kenkoro.ui.pull.to.refresh
import ...
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun <T> PullToRefreshLazyColumn(
modifier: Modifier = Modifier,
items: List<T>,
content: @Composable (T) -> Unit,