i have a contraint layout which has a composeview but when i try setContent that part gets skipped code and logs before and after that is being executed
container?.apply {
Log.d("DSM","APPLY")
setContent {
Log.d("DSM","SET CONTENT")
detailsScreenViewModel = hiltViewModel()
DetailsScreen(detailsScreenViewModel = detailsScreenViewModel)
}
}
4