Skip to content

Commit

Permalink
♻️ 불필요한 Column 처리 되돌리기
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonK1 committed Sep 22, 2024
1 parent de68fc6 commit 4c41b51
Showing 1 changed file with 23 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,27 +201,29 @@ private fun PhotoCard(
keywordType = keyword,
frameResId = PicPhotoFrame.getTypeByKeyword(keyword.name).frameResId,
)
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Text(
modifier = Modifier
.padding(top = 30.dp),
text = date,
color = Gray80,
style = PicTypography.bodyMedium16,
)
PicFourPhotoGrid(
modifier = Modifier
.padding(top = 28.dp, bottom = 23.dp, start = 30.dp, end = 30.dp),
backgroundColor = keyword.frontCardBackgroundColor,
images = images,
)
Text(
modifier = Modifier.padding(bottom = 48.dp),
text = title,
color = Gray80,
style = PicTypography.headBold20,
)
}
Text(
modifier = Modifier
.align(Alignment.TopCenter)
.padding(top = 25.dp),
text = date,
color = Gray80,
style = PicTypography.bodyMedium16,
)
PicFourPhotoGrid(
modifier = Modifier
.padding(top = 85.dp, bottom = 85.dp, start = 30.dp, end = 30.dp)
.align(Alignment.Center),
backgroundColor = keyword.frontCardBackgroundColor,
images = images,
)
Text(
modifier = Modifier
.align(Alignment.BottomCenter)
.padding(bottom = 31.dp),
text = title,
color = Gray80,
style = PicTypography.headBold20,
)
}
}

Expand Down

0 comments on commit 4c41b51

Please sign in to comment.