Skip to content

Commit

Permalink
[YDS-#259] TextField에 onErrorChange 기본값 추가 (#264)
Browse files Browse the repository at this point in the history
* add : onErrorChange 기본값 추가

* chore : versionName 업데이트
  • Loading branch information
leeeyubin committed Mar 20, 2024
1 parent dac24b8 commit 63bfd93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fun SimpleTextField(
placeHolder: String = "",
hintText: String = "",
keyboardOptions: KeyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text),
onErrorChange: (Boolean) -> Unit,
onErrorChange: (Boolean) -> Unit = {},
) {
Column(modifier = modifier) {
OutlinedTextField(
Expand Down Expand Up @@ -88,7 +88,7 @@ fun SimpleTextField(
Row(modifier = Modifier.padding(top = 8.dp)) {
Spacer(
modifier = Modifier
.width(16.dp)
.width(16.dp),
)
YdsText(
text = hintText,
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=2.5.7
versionName=2.5.8
#자동 배포를 위해서 버전은 여기 한 군데에서 관리하면 된다

0 comments on commit 63bfd93

Please sign in to comment.