Hi,
In my application I want to hide the Status Bar on both Android and iOS.
My MainView.ux looks like:
<App Background="AppBackground">
<iOS.StatusBarConfig ux:Name="iosStyle" IsVisible="False"/>
<Android.StatusBarConfig ux:Name="androidStyle" IsVisible="false"/>
<Router ux:Name="router"/>
<DockPanel>
<Panel>
<Navigator DefaultPath="Splashscreen">
<Timewax.Splashscreen ux:Name="Splashscreen" router="router" />
<Timewax.Login ux:Name="Login" router="router"/>
...
</Navigator>
</Panel>
</DockPanel>
</App>
When I start the app everything is ok, the status bar is hidden, however when I try to input some text this happens:
The status bar is shown. When I press back to hide the keyboard the status bar still shows.
The desired behaviour would be that the status bar is always hidden. Is this possible? If yes, what am I missing here?
Thank you in advance.