mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 22:00:31 +05:30
12 lines
267 B
Swift
12 lines
267 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct PlayerOverlayModifier: ViewModifier {
|
|
func body(content: Content) -> some View {
|
|
content
|
|
#if !os(tvOS)
|
|
.overlay(ControlsBar(fullScreen: .constant(false)), alignment: .bottom)
|
|
#endif
|
|
}
|
|
}
|