Skip to content

Commit 79b0c1a

Browse files
committed
[feature/#37] 디자인 수정
1 parent 76b889d commit 79b0c1a

File tree

1 file changed

+14
-11
lines changed
  • feature/chatting/src/commonMain/kotlin/com/nexters/emotia/feature/chatting

1 file changed

+14
-11
lines changed

feature/chatting/src/commonMain/kotlin/com/nexters/emotia/feature/chatting/ChattingScreen.kt

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -460,22 +460,13 @@ private fun CreateRoom(
460460
Column(
461461
modifier = modifier
462462
.fillMaxSize()
463-
.background(
464-
Brush.verticalGradient(
465-
colors = listOf(
466-
Color(0xFF171E2D),
467-
Color(0xFF1A1A1B)
468-
)
469-
)
470-
)
471463
.safeDrawingPadding()
472464
.imePadding()
473465
) {
474-
// 배경 이미지
466+
// 배경 이미지 영역
475467
Box(
476468
modifier = Modifier
477469
.fillMaxWidth()
478-
.weight(1f)
479470
) {
480471
Image(
481472
painter = painterResource(Res.drawable.img_letter_background),
@@ -529,7 +520,19 @@ private fun CreateRoom(
529520
}
530521

531522
Box(
532-
modifier = Modifier.padding(horizontal = 16.dp, vertical = 24.dp)
523+
modifier = Modifier
524+
.fillMaxWidth()
525+
.weight(1f)
526+
.background(
527+
Brush.verticalGradient(
528+
colors = listOf(
529+
Color(0xFF171E2D),
530+
Color(0xFF1A1A1B)
531+
)
532+
)
533+
)
534+
.padding(horizontal = 16.dp, vertical = 24.dp),
535+
contentAlignment = Alignment.BottomCenter
533536
) {
534537
EmotiaChatTextField(
535538
value = currentInputText,

0 commit comments

Comments
 (0)