Skip to content

Commit 3460f1a

Browse files
committed
FLW-3208 Send. The loader is not spinning
1 parent c27b184 commit 3460f1a

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

common/src/main/java/jp/co/soramitsu/common/compose/component/FullScreenLoading.kt

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,14 @@ fun FullScreenLoading(
6363
.border(4.dp, white08, shape = CircleShape)
6464
.background(transparent, shape = CircleShape)
6565
)
66-
Box(
66+
CircularProgressIndicator(
6767
modifier = Modifier
6868
.fillMaxSize()
69-
.blur(1.dp)
7069
.padding(8.dp)
71-
) {
72-
CircularProgressIndicator(
73-
modifier = Modifier
74-
.fillMaxSize()
75-
.align(Alignment.Center),
76-
color = colorAccentDark,
77-
strokeWidth = 4.dp
78-
)
79-
}
70+
.align(Alignment.Center),
71+
color = colorAccentDark,
72+
strokeWidth = 4.dp
73+
)
8074
Image(
8175
res = R.drawable.ic_fearless_logo,
8276
tint = colorAccentDark,

0 commit comments

Comments
 (0)