Merge pull request #586 from takagimeow/fix/add-padding-for-loading-wheel

Add padding between the loading wheel and the top of the screen
pull/594/head
Caren 2 years ago committed by GitHub
commit 17ffb5bf3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -203,7 +203,9 @@ internal fun ForYouScreen(
) {
val loadingContentDescription = stringResource(id = R.string.for_you_loading)
Box(
modifier = Modifier.fillMaxWidth(),
modifier = Modifier
.fillMaxWidth()
.padding(top = 8.dp),
) {
NiaOverlayLoadingWheel(
modifier = Modifier

Loading…
Cancel
Save