Minimized view is hide under tab bar when custom meeting is enabled

When the meeting is ongoing, if I minimize the meeting view and moves to the bottom of the tab bar controller the minimized view hides behind the tab bar. It happened when I enable custom meeting
[[MobileRTC sharedRTC] getMeetingSettings].enableCustomMeeting = YES;

and works fine if I disabled it.

Also, As my root view controller is not a UINavigationController I didn’t set MobileRTCRootController.
[[MobileRTC sharedRTC] setMobileRTCRootController:_];

The version number is 5.0.1


Hey @georgeselveraj

Thanks for using the dev forum!

If you set enableCustomMeeting to true, you will have to handle all UI aspects yourself. It looks like your tab bar is further in front of the stack of ViewControllers than the ViewController that contains your view. Have you tried this https://www.hackingwithswift.com/example-code/uikit/how-to-bring-a-subview-to-the-front-of-a-uiview?

Let me know if you have any other questions.
Michael