We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
문제 상황
개선 필요점
현재 예상 방안
fun NavGraphBuilder.communityDetailGraph( navOnBack: () -> Unit ) { composable( route = "${CommunityRoute.Detail.route}/{post}", arguments = listOf( navArgument("post") { type = NavType.StringType } ), enterTransition = { enterAnimation() } ) { // TODO 해당 부분을 CommunityDetailScreenRoute()에서 수행하고, Graph 부분은 Core 모듈로 이동시켜도 될 것 같음 val post = it.arguments?.getString("post")?.parseFromJson<PostUiData>() val viewModel = hiltViewModel<CommunityDetailViewModel>() LaunchedEffect(Unit) { viewModel.setPost(post ?: PostUiData()) } CommunityDetailScreen(viewModel = viewModel, navOnBack = { navOnBack() }) } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
문제 상황
개선 필요점
현재 예상 방안
The text was updated successfully, but these errors were encountered: