forked from shadowfacts/Tusker
27 lines
533 B
Swift
27 lines
533 B
Swift
//
|
|
// View+ForwardsCompat.swift
|
|
// ComposeUI
|
|
//
|
|
// Created by Shadowfacts on 3/25/23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
#if os(visionOS)
|
|
func scrollDisabledIfAvailable(_ disabled: Bool) -> some View {
|
|
self.scrollDisabled(disabled)
|
|
}
|
|
#else
|
|
@available(iOS, obsoleted: 16.0)
|
|
@ViewBuilder
|
|
func scrollDisabledIfAvailable(_ disabled: Bool) -> some View {
|
|
if #available(iOS 16.0, *) {
|
|
self.scrollDisabled(disabled)
|
|
} else {
|
|
self
|
|
}
|
|
}
|
|
#endif
|
|
}
|