Skip to content

CircuitContent

The simplest entry point of a Circuit screen is the composable CircuitContent function. This function accepts a Screen and automatically finds and pairs corresponding Presenter and Ui instances to render in it.

CircuitCompositionLocals(circuit) {
  CircuitContent(HomeScreen)
}

This can be used for simple screens or as nested components of larger, more complex screens.