Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- extension View {
- func `if`<Content: View>(_ conditional: Bool, content: (Self) -> Content) -> some View {
- if conditional {
- return AnyView(content(self))
- }
- else {
- return AnyView(self)
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement