Hi All.
What is the code in B4XPage to have the full screen page in b4i.
In the "classic" system i use the following code:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
In B4xPage to have all pages full screen ?
Thank you
Marco
			
			What is the code in B4XPage to have the full screen page in b4i.
In the "classic" system i use the following code:
			
				B4X:
			
		
		
		Public Sub Show
....
'Full screen
    Main.NavControl.ToolBarVisible = False
    Main.NavControl.SetNavigationBarVisibleAnimated(False)
    Dim no As NativeObject = App
    no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
    SetStatusBarStyleLight
End Sub
Sub SetStatusBarStyleLight
    Dim no As NativeObject = App
    no.RunMethod("setStatusBarStyle:", Array(1))
End Sub
	In B4xPage to have all pages full screen ?
Thank you
Marco