Skip to content

Commit

Permalink
[fix/#144] 공유하기 말풍선 위치 변경 및 리뷰 별 bottom padding 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokwanhee committed Aug 27, 2024
1 parent 2992d30 commit 9e6c1e0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ fun StadiumDetailScreen(
)
}
)
Spacer(modifier = Modifier.height(40.dp))
Spacer(modifier = Modifier.height(20.dp))
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,15 +295,16 @@ fun StadiumReviewContent(
contentScale = ContentScale.FillHeight
)
}
}
if (firstReview && isFirstShare) {
Box(
modifier = Modifier
.fillMaxWidth()
.padding(end = 16.dp),
contentAlignment = Alignment.CenterEnd
) {
ShareTooltip(bias = 0.875f, content = "카카오톡으로 같이가는 친구에게 공유하기")
if (firstReview && isFirstShare) {
Box(
modifier = Modifier
.offset(y = 45.dp)
.fillMaxWidth()
.padding(end = 16.dp),
contentAlignment = Alignment.CenterEnd
) {
ShareTooltip(bias = 0.875f, content = "카카오톡으로 같이가는 친구에게 공유하기")
}
}
}
}
Expand Down

0 comments on commit 9e6c1e0

Please sign in to comment.