I have an Activity that extends ComponentActivity (Activity variant that is used for Compose based Activity Implementation), thus have no access to FragmentManager.
Is there any way to show DialogFragment(implemented with View System) in it ?
class MyActivity : ComponentActivity(){
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
//how to show DialogFragment here? there is no access to FragmentManager
ScreenContent()
}
}
}