CompositionHostedDefaultBoomerangStoreScope

@Composable
fun CompositionHostedDefaultBoomerangStoreScope(content: @Composable () -> Unit)(source)

A Composable function that creates a DefaultBoomerangStore and provides it to its content via LocalBoomerangStore. The store is saved and restored across configuration changes using rememberSaveable with a custom saver. This function is useful when you have fully Composable navigation. It should be used on the top-level of your Compose application before creating Navigation components (f.e. before calling NavHost in Jetpack Navigation). Example usage

Parameters

content

The content that will have access to the BoomerangStore