Skip to content

Commit

Permalink
♻️ :: Apply Reviewer
Browse files Browse the repository at this point in the history
  • Loading branch information
audgns10 committed Nov 14, 2024
1 parent 6b21b84 commit 21babd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ internal fun ExpoCreateScreen(

ExpoStateButton(
text = "수정완료",
state = if (imageUri.isNullOrEmpty() && modifyTitleState.isEmpty() && startedDateState.isEmpty() && endedDateState.isEmpty() && introduceTitleState.isEmpty() && addressState.isEmpty() && locationState.isEmpty() && trainingTextState.isEmpty()) ButtonState.Enable else ButtonState.Disable,
state = if (!imageUri.isNullOrEmpty() && modifyTitleState.isNotEmpty() && startedDateState.isNotEmpty() && endedDateState.isNotEmpty() && introduceTitleState.isNotEmpty() && addressState.isNotEmpty() && locationState.isNotEmpty() && trainingTextState.all { it.isNotEmpty() }) ButtonState.Enable else ButtonState.Disable,
modifier = Modifier.fillMaxWidth()
) {
/* todo : Expo Modify CallBack */
Expand Down

0 comments on commit 21babd5

Please sign in to comment.