Skip to content

Commit

Permalink
[fix/#158] time-mm/dd 한자리수 입력 수정 완료
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnseo committed Feb 16, 2024
1 parent 91c4e6e commit 86dba99
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fun MoimAddress(viewModel: MoimViewModel, navController: NavController, onClick:
Column(
modifier = Modifier
.fillMaxSize()
.background(color = TmtmColorPalette.current.GreyWhite),
.background(color = TmtmColorPalette.current.color_background),
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.Top,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ import com.teumteum.base.component.compose.theme.TmtmColorPalette
import com.teumteum.teumteum.presentation.moim.MoimViewModel
import com.teumteum.teumteum.presentation.moim.ScreenState
import com.teumteum.teumteum.presentation.moim.TopicType
import kotlinx.coroutines.delay

@Composable
fun MoimCreateTopic(viewModel: MoimViewModel, onClick: ()->Unit) {
Expand Down Expand Up @@ -93,7 +94,6 @@ fun MoimCreateBtn(
viewModel.createMoim()
} else if (screenState == ScreenState.Success) {
navController?.navigate(R.id.fragment_home)
delay(2000)
viewModel.initializeState()
}
else {
Expand Down Expand Up @@ -143,7 +143,6 @@ fun CreateTopicContent(viewModel: MoimViewModel, topicIndex: MutableState<Int>)
onItemSelected = {
topicIndex.value = index
viewModel.updateTopic(topicType)
Log.d("moim_topic", topicType.toString())
}
)
TmMarginVerticalSpacer(size = 12)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fun MoimDateTime(viewModel: MoimViewModel, onClick: ()->Unit) {
Column(
modifier = Modifier
.fillMaxSize()
.background(color = TmtmColorPalette.current.GreyWhite),
.background(color = TmtmColorPalette.current.color_background),
horizontalAlignment = Alignment.Start,
verticalArrangement = Arrangement.Top,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fun MoimPeople(viewModel: MoimViewModel, onClick: () -> Unit) {
Column(
modifier = Modifier
.fillMaxSize()
.background(color = TmtmColorPalette.current.GreyWhite),
.background(color = TmtmColorPalette.current.color_background),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Top,
) {
Expand Down

0 comments on commit 86dba99

Please sign in to comment.