Skip to content

Commit 17ffb5b

Browse files
authored
Merge pull request #586 from takagimeow/fix/add-padding-for-loading-wheel
Add padding between the loading wheel and the top of the screen
2 parents ac7f6cb + cc3f790 commit 17ffb5b

File tree

1 file changed

+3
-1
lines changed
  • feature/foryou/src/main/java/com/google/samples/apps/nowinandroid/feature/foryou

1 file changed

+3
-1
lines changed

feature/foryou/src/main/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouScreen.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ internal fun ForYouScreen(
203203
) {
204204
val loadingContentDescription = stringResource(id = R.string.for_you_loading)
205205
Box(
206-
modifier = Modifier.fillMaxWidth(),
206+
modifier = Modifier
207+
.fillMaxWidth()
208+
.padding(top = 8.dp),
207209
) {
208210
NiaOverlayLoadingWheel(
209211
modifier = Modifier

0 commit comments

Comments
 (0)