diff --git a/app/src/main/java/com/spoony/spoony/presentation/auth/onboarding/OnboardingEndScreen.kt b/app/src/main/java/com/spoony/spoony/presentation/auth/onboarding/OnboardingEndScreen.kt index 4c083e5c1..0486b2461 100644 --- a/app/src/main/java/com/spoony/spoony/presentation/auth/onboarding/OnboardingEndScreen.kt +++ b/app/src/main/java/com/spoony/spoony/presentation/auth/onboarding/OnboardingEndScreen.kt @@ -7,12 +7,14 @@ import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.getValue import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip import androidx.compose.ui.text.SpanStyle import androidx.compose.ui.text.buildAnnotatedString import androidx.compose.ui.text.withStyle @@ -83,14 +85,16 @@ private fun OnboardingEndScreen( .padding(top = 2.dp) ) - Spacer(modifier = Modifier.height(30.dp)) + Spacer(modifier = Modifier.weight(66f)) LottieAnimation( composition = rememberLottieComposition(LottieCompositionSpec.RawRes(R.raw.spoony_onboarding)).value, - iterations = LottieConstants.IterateForever + iterations = LottieConstants.IterateForever, + modifier = Modifier + .clip(RoundedCornerShape(8.dp)) ) - Spacer(modifier = Modifier.weight(1f)) + Spacer(modifier = Modifier.weight(79f)) Text( text = "내 프로필 정보는 마이페이지에서 변경할 수 있어요", diff --git a/app/src/main/res/raw/spoony_onboarding.lottie b/app/src/main/res/raw/spoony_onboarding.lottie index 39cbc29c5..4f4c7c668 100644 Binary files a/app/src/main/res/raw/spoony_onboarding.lottie and b/app/src/main/res/raw/spoony_onboarding.lottie differ