Skip to content

Commit 12d92ba

Browse files
committed
fix: Offcenter loading indicator in AppSelector
1 parent ffd08c7 commit 12d92ba

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/src/main/java/app/revanced/manager/ui/screen/AppSelectorScreen.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,13 @@ fun AppSelectorScreen(
234234

235235
}
236236
} else {
237-
item { LoadingIndicator() }
237+
item {
238+
Box(
239+
modifier = Modifier.fillParentMaxSize(), contentAlignment = Alignment.Center
240+
) {
241+
LoadingIndicator()
242+
}
243+
}
238244
}
239245
}
240246
}

0 commit comments

Comments
 (0)