Is there a way to navigate between composables rig...
# compose
f
Is there a way to navigate between composables right now? Doing something like this:
Copy code
@Composable
fun MyApp() {
    val currentWidgetState = +state { root }
    val currentWidget = currentWidget.value
    MaterialTheme {
        GenericWidget(currentWidget, onOptionClicked ={currentWidgetState.value = it} )
    }
 }
was not welcomed by the framework.