Skip to content

Commit

Permalink
채팅 화면 TextField modifier 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhooon committed Nov 15, 2023
1 parent ab78619 commit ff910f6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,14 @@ internal fun ChatScreen(
previousChat = it
}
Row(
modifier = Modifier.imePadding(),
modifier = Modifier
.fillMaxWidth()
.imePadding()
.padding(start = 16.dp),
verticalAlignment = Alignment.CenterVertically,
) {
OutlinedTextField(
modifier = Modifier
.padding(start = 16.dp)
.weight(1f)
.heightIn(min = 56.dp, max = 84.dp),
value = uiState.chatInputMessage,
Expand Down

0 comments on commit ff910f6

Please sign in to comment.