Hi Community, I am trying to hide the topBar of my App. I have followed the instructions of an Erel guide but the TopBar continues to be visible. Probably that function is deprecated I am doing something wrong! Anyone know how I can fix it?
Erel's code
Erel's code
B4X:
1. Add this attribute:
#PlistExtra: <key>UIViewControllerBasedStatusBarAppearance</key><false/>
2. Add this code:
Dim no As NativeObject = app
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))