ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Material3 PullToRefresh for Jetpack Compose

Stefano Natali
ProAndroidDev
Published in
4 min readAug 3, 2024

Material implementation

val pullRefreshState =
rememberPullRefreshState(
refreshing = loaderVisible,
onRefresh= { items.refresh() }
)

Box(
modifier = Modifier
.fillMaxSize()
.pullRefresh(pullRefreshState),
) {
//your list
//...
PullRefreshIndicator(
refreshing = loaderVisible,
state = pullRefreshState,
modifier = Modifier.align(Alignment.TopCenter),
scale = true,
)
}

Problematic migration to Material 3

New component

[versions]
material3 = "1.3.0-beta05"
...
[libraries]
androidx-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
...
...
implementation(libs.androidx.material3)
...
 PullToRefreshBox(
modifier = modifier
.fillMaxSize(),
isRefreshing = loaderVisible,
onRefresh = { lazyBooksItems.refresh() }) {

//your list
//...
}

Conclusions

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Responses (1)

Write a response

Thank you for your article,

I have used the PullToRefreshBox but the issue is that it only works with scrollable content, so for example if you want to refresh the content of a card or something this won't work.

--