Skip to content

Commit

Permalink
[TNT-110] fix: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonJeongk committed Jan 16, 2025
1 parent 42b2a5e commit 9fc4334
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,11 @@ fun RoleSelectionScreen(
style = TnTTheme.typography.body1Medium,
)
}
Spacer(modifier = Modifier.weight(1f))
Image(
painter = roleImage,
contentDescription = null,
modifier = Modifier.align(Alignment.CenterHorizontally),
)
Spacer(modifier = Modifier.weight(1.1f))
// TODO 선택한 버튼 정보 저장
Row(
horizontalArrangement = Arrangement.spacedBy(8.dp),
Expand All @@ -88,7 +86,6 @@ fun RoleSelectionScreen(
onClick = { selectedRole = RoleState.Trainee },
)
}
Spacer(modifier = Modifier.weight(1.2f))
// TODO 클릭 시 이름 입력 화면으로 이동
TnTBottomButton(
text = stringResource(R.string.next),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ fun TrainerProfileCompleteScreen(
TnTBottomButton(
text = stringResource(R.string.start),
onClick = { },
modifier = Modifier
.align(Alignment.BottomCenter)
.padding(top = 20.dp),
modifier = Modifier.align(Alignment.BottomCenter),
)
}
}
Expand Down

0 comments on commit 9fc4334

Please sign in to comment.