Skip to content

Instantly share code, notes, and snippets.

@thanakijwanavit
Created January 18, 2022 08:17
Show Gist options
  • Save thanakijwanavit/ceb20815a3bf726f3b5a8abd0fa881bc to your computer and use it in GitHub Desktop.
Save thanakijwanavit/ceb20815a3bf726f3b5a8abd0fa881bc to your computer and use it in GitHub Desktop.
view hidden extension swiftui
//
// View+Extension.swift
// squirrel2 (iOS)
//
// Created by nic wanavit on 11/3/21.
//
import SwiftUI
extension View {
@ViewBuilder func isHidden(_ hidden: Bool, remove: Bool = false) -> some View {
if hidden {
if !remove {
self.hidden()
}
} else {
self
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment