iOS Question Hide VideoPlayer controls from Control Center

Alessandro71

Well-Known Member
Licensed User
Longtime User
Starting from this example
I'd like to remove the audio panel with the controls that shows when you swipe down the top bar of the screen.
Is is possible?
 
Solution
I don't think that you can hide it. You can disable the buttons (in the OBJC code):
B4X:
   center.playCommand.enabled = false;
   center.pauseCommand.enabled = false;
Top