Skip to content

Instantly share code, notes, and snippets.

@Nike2406
Created December 17, 2024 14:51
Show Gist options
  • Save Nike2406/b135dfee8445b4c695e3f54b64c8c8b0 to your computer and use it in GitHub Desktop.
Save Nike2406/b135dfee8445b4c695e3f54b64c8c8b0 to your computer and use it in GitHub Desktop.
Compose: Context.getActivity()
fun Context.getActivity(): ComponentActivity? = when (this) {
is ComponentActivity -> this
is ContextWrapper -> baseContext.getActivity()
else -> null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment