🚚 Rename watchOS project to proper one

This commit is contained in:
2025-11-01 12:21:37 +08:00
parent b60bd63d0c
commit 9a628779d9
80 changed files with 36 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
import SwiftUI
import AVKit
import AVFoundation
struct VideoPlayerView: View {
let videoUrl: URL
var body: some View {
VideoPlayer(player: AVPlayer(url: videoUrl))
.edgesIgnoringSafeArea(.all) // Make it full screen
}
}