Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SafeTraceComposable #53

Open
weverb2 opened this issue May 5, 2023 · 0 comments
Open

SafeTraceComposable #53

weverb2 opened this issue May 5, 2023 · 0 comments

Comments

@weverb2
Copy link

weverb2 commented May 5, 2023

Currently you can't wrap composables with safe trace, I was able to get this working with this approach:

@Composable
inline fun  safeTraceComposable(
  crossinline label: () -> String,
  crossinline block: @Composable () -> Unit
) {
  if (!SafeTrace.isCurrentlyTracing) {
    block()
  } else {
    SafeTrace.beginSection(label())
    block()
    SafeTrace.endSection()
  }
}

I can open a PR for this if you think it would be a good addition, but didn't know how you wanted to handle depending on Compose.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant