File tree Expand file tree Collapse file tree 1 file changed +14
-11
lines changed
feature/chatting/src/commonMain/kotlin/com/nexters/emotia/feature/chatting Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments