mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
12 lines
326 B
Swift
12 lines
326 B
Swift
|
import SwiftUI
|
||
|
|
||
|
extension Backport where Content: View {
|
||
|
@ViewBuilder func persistentSystemOverlays(_ visible: Bool) -> some View {
|
||
|
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
|
||
|
content.persistentSystemOverlays(visible ? .visible : .hidden)
|
||
|
} else {
|
||
|
content
|
||
|
}
|
||
|
}
|
||
|
}
|