15 lines
215 B
Swift
15 lines
215 B
Swift
//
|
|
// View.swift
|
|
// AutoCat2SUI
|
|
//
|
|
// Created by Selim Mustafaev on 28.08.2022.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
func hidden(_ shouldHide: Bool) -> some View {
|
|
opacity(shouldHide ? 0 : 1)
|
|
}
|
|
}
|