mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 16:18:22 +00:00
27 lines
715 B
Swift
27 lines
715 B
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct VideoDetailsOverlay: View {
|
|
@ObservedObject private var controls = PlayerControlsModel.shared
|
|
|
|
var body: some View {
|
|
VideoDetails(video: controls.player.videoForDisplay, fullScreen: fullScreenBinding)
|
|
.clipShape(RoundedRectangle(cornerRadius: 4))
|
|
}
|
|
|
|
var fullScreenBinding: Binding<Bool> {
|
|
.init(get: {
|
|
controls.presentingDetailsOverlay
|
|
}, set: { newValue in
|
|
controls.presentingDetailsOverlay = newValue
|
|
})
|
|
}
|
|
}
|
|
|
|
struct VideoDetailsOverlay_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
VideoDetailsOverlay()
|
|
.injectFixtureEnvironmentObjects()
|
|
}
|
|
}
|