Skip to content

Instantly share code, notes, and snippets.

@darrarski
Created September 10, 2020 22:21
Show Gist options
  • Save darrarski/a534f4ea3c530cb2e1963217af188c34 to your computer and use it in GitHub Desktop.
Save darrarski/a534f4ea3c530cb2e1963217af188c34 to your computer and use it in GitHub Desktop.
extension View {
@ViewBuilder func modify<Modified: View>(
if condition: @autoclosure () -> Bool,
then transform: (Self) -> Modified
) -> some View {
if condition() {
transform(self)
} else {
self
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment