mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
17 lines
323 B
Swift
17 lines
323 B
Swift
|
import Foundation
|
||
|
import SwiftUI
|
||
|
|
||
|
struct SettingsPickerModifier: ViewModifier {
|
||
|
func body(content: Content) -> some View {
|
||
|
content
|
||
|
#if os(tvOS)
|
||
|
.pickerStyle(.inline)
|
||
|
#endif
|
||
|
#if os(iOS)
|
||
|
.pickerStyle(.automatic)
|
||
|
#else
|
||
|
.labelsHidden()
|
||
|
#endif
|
||
|
}
|
||
|
}
|