Skip to content

Commit

Permalink
[FIX] #107 : 초기화 되지 않은 상태에서 프로그래스바 보여주지 않도록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Jan 14, 2024
1 parent cd2856f commit 9bb7bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ private fun ManagementEventContent(
onAddEventButtonClicked: () -> Unit,
) {
when (eventsState) {
is ManagementViewModel.EventsState.Init -> { }
is ManagementViewModel.EventsState.Loading -> CircleLoader(
modifier = Modifier
.fillMaxWidth()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ private fun ManagementSurveyContent(
onAddSurveyButtonClicked: () -> Unit,
) {
when (surveyFormsState) {
is ManagementViewModel.SurveyFormsState.Init -> { }
is ManagementViewModel.SurveyFormsState.Loading -> CircleLoader(
modifier = Modifier
.fillMaxWidth()
Expand Down

0 comments on commit 9bb7bac

Please sign in to comment.