1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Player/PlaybackSettingsPresentationDetents+Backport.swift

14 lines
346 B
Swift
Raw Normal View History

2022-12-22 01:46:47 +05:30
import Foundation
import SwiftUI
extension Backport where Content: View {
@ViewBuilder func playbackSettingsPresentationDetents() -> some View {
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
content
.presentationDetents([.height(350), .large])
} else {
content
}
}
}