@@ -22,7 +22,6 @@ import androidx.compose.runtime.getValue
2222import androidx.compose.runtime.mutableFloatStateOf
2323import androidx.compose.runtime.remember
2424import androidx.compose.runtime.setValue
25- import androidx.compose.ui.Alignment
2625import androidx.compose.ui.Modifier
2726import androidx.compose.ui.draw.clip
2827import androidx.compose.ui.draw.clipToBounds
@@ -45,13 +44,10 @@ import androidx.compose.ui.unit.dp
4544import androidx.hilt.lifecycle.viewmodel.compose.hiltViewModel
4645import coil.compose.AsyncImage
4746import com.yapp.ndgl.core.ui.R
48- import com.yapp.ndgl.core.ui.designsystem.NDGLCTAButton
49- import com.yapp.ndgl.core.ui.designsystem.NDGLCTAButtonAttr
5047import com.yapp.ndgl.core.ui.designsystem.NDGLModal
5148import com.yapp.ndgl.core.ui.designsystem.NDGLNavigationBar
5249import com.yapp.ndgl.core.ui.designsystem.NDGLNavigationBarAttr
5350import com.yapp.ndgl.core.ui.theme.NDGLTheme
54- import com.yapp.ndgl.core.ui.util.dropShadow
5551import com.yapp.ndgl.core.ui.util.launchBrowser
5652import com.yapp.ndgl.feature.travel.placedetail.component.PlaceDetailTabRow
5753import com.yapp.ndgl.feature.travel.placedetail.component.PlaceInfoTab
@@ -219,8 +215,7 @@ private fun PlaceDetailScreen(
219215
220216 LazyColumn (
221217 modifier = Modifier
222- .weight(1f )
223- .padding(bottom = 60 .dp),
218+ .weight(1f ),
224219 state = listState,
225220 ) {
226221 when (state.selectedTab) {
@@ -258,31 +253,6 @@ private fun PlaceDetailScreen(
258253 item { Spacer (Modifier .height(60 .dp)) }
259254 }
260255 }
261-
262- Column (
263- modifier = Modifier
264- .fillMaxWidth()
265- .dropShadow(
266- shape = RoundedCornerShape (16 .dp),
267- color = Color .Black .copy(alpha = 0.06f ),
268- blur = 20 .dp,
269- offsetY = (- 10 ).dp,
270- )
271- .align(Alignment .BottomCenter )
272- .clip(RoundedCornerShape (topStart = 16 .dp, topEnd = 16 .dp))
273- .background(NDGLTheme .colors.white)
274- .padding(top = 20 .dp, bottom = 16 .dp)
275- .padding(horizontal = 24 .dp),
276- ) {
277- NDGLCTAButton (
278- modifier = Modifier .fillMaxWidth(),
279- type = NDGLCTAButtonAttr .Type .PRIMARY ,
280- size = NDGLCTAButtonAttr .Size .LARGE ,
281- status = NDGLCTAButtonAttr .Status .ACTIVE ,
282- label = stringResource(R .string.place_detail_add_schedule),
283- onClick = clickAddScheduleButton,
284- )
285- }
286256 }
287257
288258 if (state.showChangeModal && state.selectedAlternativePlace != null ) {
0 commit comments