How can I hide the title bar that says MainPage as shown in the example image? Not only change the title with B4XPages.SetTitle, but disable the bar. I have tried from the designer without success. It also does not support the following B4A attributes.
Search the forum for "iOS hide title" "iOS disable title" "iOS MainPage", all results point to B4A
B4X:
#Region Activity Attributes
#FullScreen: True
#IncludeTitle: False
#End Region
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(NavControl)
NavControl.NavigationBarVisible = False
NavControl.ToolBarVisible = False
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(NavControl)
NavControl.NavigationBarVisible = False
NavControl.ToolBarVisible = False
End Sub