I'm new in B4i.
How to handle (show / hide flow) of different layout in B4i ?
Can I use the same Page and root panel like this?
Is this correct ? Or I must handle different layout using different Pages?
How to handle (show / hide flow) of different layout in B4i ?
Can I use the same Page and root panel like this?
B4X:
Private Sub Application_Start (Nav As NavigationController)
'...
Page1.RootPanel.LoadLayout("lyo1")
Page1.RootPanel.LoadLayout("lyo2")
Page1.RootPanel.LoadLayout("lyo3")
'Handle show / hide of the layout elements within app flow ?
Is this correct ? Or I must handle different layout using different Pages?