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/1837/head
Caren 3 years ago committed by GitHub
commit 5a34ac7156

@ -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