Skip to content

Instantly share code, notes, and snippets.

@Toni77777
Last active July 8, 2021 14:54
Show Gist options
  • Save Toni77777/4ca5f92c43ce3efbecf8edae0c335d58 to your computer and use it in GitHub Desktop.
Save Toni77777/4ca5f92c43ce3efbecf8edae0c335d58 to your computer and use it in GitHub Desktop.
struct EmptyDataModifier<Placeholder: View>: ViewModifier {
let items: [Any]
let placeholder: Placeholder
@ViewBuilder
func body(content: Content) -> some View {
if !items.isEmpty {
content
} else {
placeholder
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment