Video Player controllers aren't showing for the video in immersive view

I have a AVPlayer() which loads the video and places it on the screen ModelEntity in the immersive view using the VideoMaterial. This also makes the video untappable as it is a VideoMaterial.

Here's the code for the same:

    let screenModelEntity = model.garageScreenEntity as! ModelEntity
    let modelEntityMesh = screenModelEntity.model!.mesh
    
    let url = Bundle.main.url(forResource: "<URL>",
                              withExtension: "mp4")!
    let asset = AVURLAsset(url: url)
    let playerItem = AVPlayerItem(asset: asset)
    let player = AVPlayer()
    
    let material = VideoMaterial(avPlayer: player)
    screenModelEntity.components[ModelComponent.self] = .init(mesh: modelEntityMesh, materials: [material])
    player.replaceCurrentItem(with: playerItem)
    return player

I was able to load and play the video. However, I cannot figure out how to show the player controls (AVPlayerViewController) to the user, similar to the DestinationVideo sample app.

How can I add the video player controls in this case?