Skip to content

Commit

Permalink
[fix/#158] text 잘림 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnseo committed Feb 16, 2024
1 parent 83197ae commit 2209447
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ fun MoimDateColumn(viewModel: MoimViewModel) {
OutlinedTextField(
value = monthText,
modifier = Modifier
.width(60.dp)
.width(70.dp)
.wrapContentHeight(),
keyboardOptions = KeyboardOptions(
keyboardType = KeyboardType.Number
Expand All @@ -156,7 +156,7 @@ fun MoimDateColumn(viewModel: MoimViewModel) {
OutlinedTextField(
value = dayText,
modifier = Modifier
.width(60.dp)
.width(70.dp)
.wrapContentHeight(),
keyboardOptions = KeyboardOptions(
keyboardType = KeyboardType.Number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@ fun MyPageScreen(
if (state.progress.to == CardFace.Front) {
// 앞면 카드 컨텐츠 표시
MyPageFrontCard(frontCard = frontCardState)
Image(
painter = painterResource(id = R.drawable.ic_floating_edit),
contentDescription = "Character Image",
modifier = Modifier
.align(Alignment.BottomEnd)
.offset(x = (-24).dp, y = (-22).dp)
.clickable { navController.navigate(R.id.fragment_edit_card) }
)
} else {
MyPageBackCard(backCard = backCard, viewModel = myPageViewModel)
Image(
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_get_mbti.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

<TextView
android:id="@+id/et_status"
android:layout_width="89dp"
android:layout_width="wrap_content"
android:layout_height="21dp"
android:layout_marginStart="16dp"
android:gravity="center_vertical"
Expand Down

0 comments on commit 2209447

Please sign in to comment.