iOS Question How to remove top screen

Giusy

Active Member
Licensed User
Hi, I want to remove the top line on the screen.

I have one result in designer and another in run program.

Thanks
 

Attachments

  • TOPSCREEN.jpg
    TOPSCREEN.jpg
    28.7 KB · Views: 180

Yvon Steinthal

Active Member
Licensed User
Maybe this will help:

B4X:
Private Sub Application_Start (Nav As NavigationController)

NavControl = Nav
    Page1.Initialize("Page1")
    Page1.Title = "Page 1"
    Page1.RootPanel.Color = Colors.White
    NavControl.ShowPage(Page1)
    


'This part here...
NavControl.NavigationBarVisible = False
Dim no As NativeObject = App
    no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
 
Upvote 0
Top