Skip to content

Commit

Permalink
chore: TextAlign 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu committed Dec 31, 2023
1 parent 7579697 commit ca369a3
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fun SusuTextFieldFillMaxButton(
text = text,
color = textColor,
style = textStyle,
textAlign = TextAlign.Start,
textAlign = TextAlign.Center,
overflow = overflow,
maxLines = maxLines,
minLines = minLines,
Expand Down Expand Up @@ -348,7 +348,7 @@ fun TextFieldButtonPreview() {
text = text,
onTextChange = { text = it },
placeholder = "",
maxLines = 2,
maxLines = 1,
minLines = 1,
showClearIcon = true,
style = LargeTextFieldButtonStyle.height46,
Expand All @@ -364,7 +364,7 @@ fun TextFieldButtonPreview() {
text = text,
onTextChange = { text = it },
placeholder = "Button",
maxLines = 2,
maxLines = 1,
minLines = 1,
style = LargeTextFieldButtonStyle.height46,
onClickButton = { isSaved = isSaved.not() },
Expand All @@ -379,7 +379,7 @@ fun TextFieldButtonPreview() {
text = text,
onTextChange = { text = it },
placeholder = "Button",
maxLines = 2,
maxLines = 1,
minLines = 1,
color = TextFieldButtonColor.Orange,
style = LargeTextFieldButtonStyle.height46,
Expand All @@ -397,7 +397,7 @@ fun TextFieldButtonPreview() {
overflow = TextOverflow.Ellipsis,
onTextChange = { text = it },
placeholder = "Button",
maxLines = 2,
maxLines = 1,
minLines = 1,
color = TextFieldButtonColor.Orange,
style = LargeTextFieldButtonStyle.height46,
Expand Down

0 comments on commit ca369a3

Please sign in to comment.