How to navigate from one activity to another activ...
# compose
s
How to navigate from one activity to another activity containing composable function?
m
v
Don’t forget register a new activity in Manifest.
Copy code
val context = ContextAmbient.current
val intent = Intent( context, MyActivity::class.java)
IconButton(
    onClick =  {
        context.startActivity(intent)}