mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-31 04:31:54 +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()
 | |
|     }
 | |
| }
 | 
