From ecc54f7152f334841c5949d97e2d0bfb3685c587 Mon Sep 17 00:00:00 2001 From: yunsehwan Date: Sat, 29 Aug 2026 15:59:38 +0900 Subject: [PATCH] =?UTF-8?q?UI:=20=EC=B2=AD=EB=85=84=EA=B3=B5=EA=B3=A0=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20UI=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../screen/summary/SummaryScreen.kt | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/presentation/src/main/java/com/threegap/bitnagil/presentation/screen/summary/SummaryScreen.kt b/presentation/src/main/java/com/threegap/bitnagil/presentation/screen/summary/SummaryScreen.kt index 07e2597e..1ed739de 100644 --- a/presentation/src/main/java/com/threegap/bitnagil/presentation/screen/summary/SummaryScreen.kt +++ b/presentation/src/main/java/com/threegap/bitnagil/presentation/screen/summary/SummaryScreen.kt @@ -1,6 +1,5 @@ package com.threegap.bitnagil.presentation.screen.summary -import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row @@ -20,14 +19,12 @@ import androidx.compose.runtime.getValue import androidx.compose.runtime.rememberCoroutineScope import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp import androidx.hilt.lifecycle.viewmodel.compose.hiltViewModel import com.threegap.bitnagil.designsystem.BitnagilTheme import com.threegap.bitnagil.designsystem.R import com.threegap.bitnagil.designsystem.component.atom.BitnagilIconButton -import com.threegap.bitnagil.designsystem.modifier.clickableWithoutRipple import com.threegap.bitnagil.presentation.screen.summary.component.template.emotiondaybottomsheet.EmotionDayBottomSheet import com.threegap.bitnagil.presentation.screen.summary.component.template.summarybadge.SummaryBadgeView import com.threegap.bitnagil.presentation.screen.summary.component.template.summarycalendar.SummaryCalendarView @@ -96,25 +93,6 @@ fun SummaryScreen( .height(360.dp), ) - Row( - modifier = Modifier - .fillMaxWidth() - .background(color = BitnagilTheme.colors.orange25) - .padding(10.dp), - verticalAlignment = Alignment.CenterVertically - ) { - Image( - painter = painterResource(R.drawable.ic_complaint), - contentDescription = null - ) - - Text("청년 공고도 확인할 수 있어요!", style = BitnagilTheme.typography.body2SemiBold, modifier = Modifier.padding(start = 10.dp)) - - Spacer(modifier = Modifier.weight(1f)) - - Text("더보기", color = BitnagilTheme.colors.orange500, modifier = Modifier.clickableWithoutRipple(onClick = onClickYouthPolicies).padding(10.dp), style = BitnagilTheme.typography.body2SemiBold) - } - Spacer(modifier = Modifier.height(20.dp)) Row(