Skip to content

Commit

Permalink
feat: adding cgrect for the jitsiMeetView
Browse files Browse the repository at this point in the history
  • Loading branch information
gghangura committed Aug 31, 2022
1 parent 5f14c82 commit 66da8ff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ios/JitsiMeetViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ class JitsiMeetViewController: UIViewController {
var jitsiMeetView = JitsiMeetView()

override func viewDidLoad() {

super.viewDidLoad()
jitsiMeetView.join(conferenceOptions)
jitsiMeetView.delegate = self

view = jitsiMeetView

jitsiMeetView.frame = CGRect.init(x: 0, y: 44, width: self.view.frame.width, height: self.view.frame.height - 78)
self.view.addSubview(jitsiMeetView)
}

override func viewDidDisappear(_ animated: Bool) {
Expand Down

0 comments on commit 66da8ff

Please sign in to comment.