Skip to content

Commit

Permalink
[FEATURE] #85 : 설문 확인 모듈 네비게이션 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Jan 13, 2024
1 parent aeb5698 commit c4dd5ce
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ import com.wap.wapp.feature.survey.check.detail.SurveyDetailRoute
fun NavController.navigateToSurveyDetail(
surveyId: String,
navOptions: NavOptions? = navOptions {},
) {
this.navigate(SurveyCheckRoute.surveyDetailRoute(surveyId), navOptions)
}
) = this.navigate(SurveyCheckRoute.surveyDetailRoute(surveyId), navOptions)

fun NavController.navigateToSurveyCheck(navOptions: NavOptions? = navOptions {}) {
fun NavController.navigateToSurveyCheck(navOptions: NavOptions? = navOptions {}) =
this.navigate(SurveyCheckRoute.surveyCheckRoute, navOptions)
}

fun NavGraphBuilder.surveyCheckNavGraph(
navigateToSurveyDetail: (String) -> Unit,
Expand Down

0 comments on commit c4dd5ce

Please sign in to comment.