eygraber
03/24/2023, 2:22 AM@ReadOnlyComposableStateStylianos Gakis
03/24/2023, 9:28 AMThis annotation can be applied to Composable functions so that no group will be generated around the body of the function it annotates. This is not safe unless the body of the function and any functions that it calls only executes "read" operations on the passed in composer. This will result in slightly more efficient code.
A common use case for this are for functions that only need to be composable in order to read CompositionLocal values, but don't call any other composables.Stateeygraber
03/24/2023, 1:53 PM