Skip to content

Commit

Permalink
[CHORE] #125 : 처음 가입 페이지 완료 버튼 최하단으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 17, 2024
1 parent e92cf4d commit 4ffab84
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,7 @@ internal fun SignUpScreen(
onClickLeftButton = { navigateToSignIn() },
)

Column(
modifier = Modifier.padding(horizontal = 20.dp),
) {
Column(modifier = Modifier.padding(top = 40.dp, start = 20.dp, end = 20.dp)) {
Spacer(modifier = Modifier.height(16.dp))

Text(
Expand All @@ -112,6 +110,7 @@ internal fun SignUpScreen(
fontSize = 22.sp,
color = WappTheme.colors.white,
)

Text(
text = stringResource(id = string.sign_up_content),
style = WappTheme.typography.contentMedium,
Expand All @@ -122,6 +121,7 @@ internal fun SignUpScreen(

Column(
verticalArrangement = Arrangement.spacedBy(32.dp),
modifier = Modifier.padding(bottom = 20.dp),
) {
SignUpTextField(
iconDescription = stringResource(id = string.sign_up_name_description),
Expand Down Expand Up @@ -186,6 +186,8 @@ internal fun SignUpScreen(
)
}

Spacer(modifier = Modifier.weight(1f))

Button(
onClick = { viewModel.postUserProfile() },
modifier = Modifier
Expand Down

0 comments on commit 4ffab84

Please sign in to comment.