Skip to content

Commit 61587ef

Browse files
committed
Disabled overlay
1 parent 0344ec6 commit 61587ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/ScreenRecord/ScreenRecordCoordinator.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import AVKit
2727

2828
func startRecording(withFileName fileName: String, recordingHandler: @escaping (Error?) -> Void,onCompletion: @escaping (Error?)->Void)
2929
{
30-
self.viewOverlay.show()
30+
// self.viewOverlay.show()
3131
screenRecorder.startRecording(withFileName: fileName) { (error) in
3232
recordingHandler(error)
3333
self.recordCompleted = onCompletion
@@ -37,7 +37,7 @@ import AVKit
3737
func stopRecording()
3838
{
3939
screenRecorder.stopRecording { (error) in
40-
self.viewOverlay.hide()
40+
// self.viewOverlay.hide()
4141
self.recordCompleted?(error)
4242
}
4343
}

0 commit comments

Comments
 (0)