Skip to content

Instantly share code, notes, and snippets.

@vinaygaba
Created May 25, 2022 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinaygaba/0839371980126a6cd4e33afeb282ac47 to your computer and use it in GitHub Desktop.
Save vinaygaba/0839371980126a6cd4e33afeb282ac47 to your computer and use it in GitHub Desktop.
inline fun <T : Any> Modifier.ifNotNull(value: T?, builder: (T) -> Modifier): Modifier =
then(if (value != null) builder(value) else Modifier)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment