Skip to content

Commit 82d575c

Browse files
authored
[Fix/#97] placeholder 두 줄 이상일 시 필드 커서 초기 위치 이슈 해결
1 parent be1a973 commit 82d575c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/java/com/poti/android/core/designsystem/component/field/PotiBasicField.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ internal fun PotiBasicField(
9696
Box(
9797
modifier = Modifier
9898
.weight(1f),
99-
contentAlignment = Alignment.CenterStart,
99+
contentAlignment = Alignment.TopStart,
100100
) {
101101
innerTextField()
102102

app/src/main/java/com/poti/android/core/designsystem/component/field/PotiLongTextField.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private fun PotiLongTextFieldWithLabelPreview() {
115115
PotiLongTextField(
116116
value = text,
117117
onValueChanged = { text = it },
118-
placeholder = "플레이스홀더",
118+
placeholder = "플레이스홀더\n플레이스",
119119
label = "라벨",
120120
)
121121
}

0 commit comments

Comments
 (0)