Skip to content

Commit

Permalink
refactor: 포매팅 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
s9hn committed Oct 5, 2024
1 parent bbd163a commit fdf1b30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ internal fun PokeMessageBottomSheetScreen(
Column(
modifier = modifier.fillMaxWidth()
.padding(horizontal = 20.dp)
.padding(top = 24.dp, bottom = 12.dp),
.padding(
top = 24.dp,
bottom = 12.dp,
),
) {
Row(
verticalAlignment = Alignment.CenterVertically,
Expand All @@ -66,9 +69,7 @@ internal fun PokeMessageBottomSheetScreen(
)
}
Spacer(modifier = Modifier.height(height = 12.dp))
LazyColumn(
contentPadding = PaddingValues(vertical = 4.dp),
) {
LazyColumn(contentPadding = PaddingValues(vertical = 4.dp)) {
val messages = immutableListOf(
"안녕하세요? I AM 35기에요",
"친해지고 싶어서 DM 드려요 ^^~",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ internal fun PokeMessageItem(
text = message,
style = SoptTheme.typography.body16M,
color = Gray10,
modifier = Modifier.padding(vertical = 12.dp, horizontal = 8.dp),
modifier = Modifier.padding(
vertical = 14.dp,
horizontal = 8.dp,
),
)
}
}
Expand Down

0 comments on commit fdf1b30

Please sign in to comment.