mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
10 lines
234 B
Swift
10 lines
234 B
Swift
|
import Foundation
|
||
|
import SwiftUI
|
||
|
|
||
|
struct PlayerOverlayModifier: ViewModifier {
|
||
|
func body(content: Content) -> some View {
|
||
|
content
|
||
|
.overlay(ControlsBar(fullScreen: .constant(false)), alignment: .bottom)
|
||
|
}
|
||
|
}
|