Skip to content

Commit

Permalink
[REFACTOR/#37] 임포트 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
boiledeggg committed Jul 11, 2024
1 parent 1f55cf5 commit bb2d5da
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.theme.Grey150
import com.terning.core.designsystem.theme.TerningPointTheme
import com.terning.core.extension.isToday
import com.terning.feature.calendar.scrap.CalendarScrapStrip
import com.terning.feature.calendar.models.MonthData
import com.terning.feature.calendar.models.Scrap
import com.terning.feature.calendar.models.SelectedDateState
import com.terning.feature.calendar.scrap.CalendarScrapStrip
import java.time.LocalDate
import java.time.YearMonth

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import androidx.hilt.navigation.compose.hiltViewModel
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.terning.core.designsystem.component.topappbar.CalendarTopBar
import com.terning.core.designsystem.theme.Grey200
import com.terning.feature.R
import com.terning.feature.calendar.scrap.CalendarScrapList
import com.terning.core.designsystem.component.topappbar.CalendarTopBar
import com.terning.feature.calendar.calendar.component.WeekDaysHeader
import com.terning.feature.calendar.models.CalendarState
import com.terning.feature.calendar.scrap.CalendarScrapListScreen
Expand Down Expand Up @@ -119,7 +118,6 @@ fun CalendarScreen(
CalendarScrapListScreen(
modifier = Modifier
.padding(top = paddingValues.calculateTopPadding()),
date = currentDate,
scrapList = viewModel.mockScrapList,
listState = listState,
pages = state.getPageCount(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import com.terning.core.designsystem.theme.Grey200
import com.terning.core.designsystem.theme.Grey400
import com.terning.core.designsystem.theme.TerningTheme
import com.terning.core.designsystem.theme.White
import com.terning.feature.calendar.scrap.CalendarScrapList
import com.terning.feature.calendar.models.Scrap
import com.terning.feature.calendar.models.SelectedDateState
import com.terning.feature.calendar.scrap.CalendarScrapList
import java.time.LocalDate

@Composable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.terning.feature.calendar.scrap
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.lazy.LazyColumn
Expand All @@ -22,7 +21,6 @@ import java.time.LocalDate

@Composable
fun CalendarScrapListScreen(
date: LocalDate,
scrapList: List<List<Scrap>>,
pages: Int,
listState: LazyListState,
Expand Down

0 comments on commit bb2d5da

Please sign in to comment.