enableNonSkippingGroupOptimization
Deprecated
Use the featureFlags option instead
Remove groups around non-skipping composable functions.
Removing groups around non-skipping composables is an experimental mode which improves the runtime performance of your application by skipping unnecessary groups around composables which do not skip (and thus do not require a group). This optimization will remove the groups around functions that are not skippable such as explicitly marked as @NonSkippableComposable
and functions that are implicitly not skippable such inline functions and functions that return a non-Unit value such as remember.
This feature is still considered experimental and is thus disabled by default.