43 lines
1.6 KiB
Swift
43 lines
1.6 KiB
Swift
import SwiftUI
|
|
|
|
// MARK: SwiftUI.ProgressView().progressViewStyle(.linear)
|
|
|
|
public struct ProgressViewWithLinearStyleType: IntrospectableViewType {
|
|
public enum Style {
|
|
case linear
|
|
}
|
|
}
|
|
|
|
extension IntrospectableViewType where Self == ProgressViewWithLinearStyleType {
|
|
public static func progressView(style: Self.Style) -> Self { .init() }
|
|
}
|
|
|
|
#if canImport(UIKit)
|
|
extension iOSViewVersion<ProgressViewWithLinearStyleType, UIProgressView> {
|
|
@available(*, unavailable, message: ".progressViewStyle(.linear) isn't available on iOS 13")
|
|
public static let v13 = Self(for: .v13)
|
|
public static let v14 = Self(for: .v14)
|
|
public static let v15 = Self(for: .v15)
|
|
public static let v16 = Self(for: .v16)
|
|
public static let v17 = Self(for: .v17)
|
|
}
|
|
|
|
extension tvOSViewVersion<ProgressViewWithLinearStyleType, UIProgressView> {
|
|
@available(*, unavailable, message: ".progressViewStyle(.linear) isn't available on tvOS 13")
|
|
public static let v13 = Self(for: .v13)
|
|
public static let v14 = Self(for: .v14)
|
|
public static let v15 = Self(for: .v15)
|
|
public static let v16 = Self(for: .v16)
|
|
public static let v17 = Self(for: .v17)
|
|
}
|
|
#elseif canImport(AppKit)
|
|
extension macOSViewVersion<ProgressViewWithLinearStyleType, NSProgressIndicator> {
|
|
@available(*, unavailable, message: ".progressViewStyle(.linear) isn't available on macOS 10.15")
|
|
public static let v10_15 = Self(for: .v10_15)
|
|
public static let v11 = Self(for: .v11)
|
|
public static let v12 = Self(for: .v12)
|
|
public static let v13 = Self(for: .v13)
|
|
public static let v14 = Self(for: .v14)
|
|
}
|
|
#endif
|