Created
April 21, 2025 15:59
-
-
Save CostaFot/77857778ecac23f498951cd7e0cc6e3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
private fun MainScreen( | |
viewModel: PullToRefreshViewModel = hiltViewModel() | |
) { | |
Box( | |
modifier = Modifier | |
.fillMaxWidth() | |
.background(Color.Blue) | |
) { | |
val isRefreshing: Boolean by viewModel.isRefreshingState.collectAsStateWithLifecycle() | |
PullToRefreshBox( | |
isRefreshing = isRefreshing, | |
onRefresh = { | |
viewModel.onRefresh() | |
}, | |
) { | |
// .... | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment