You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then the first page displayed by the app will have the TitleView behind the phone's status bar and the bottom elements behind the Android navigation bar. In the repro app, the TabBar tabs are behind the Android navigation bar making them inaccessible for clicking.
Not able to reproduce on iOS. No other platforms tested.
Expected Behavior
Expected behavior is to position the TitleView below the status bar and the bottom of the ContentPage should be above the Android navigation bar.
Steps To Reproduce
Run the repro app.
You will immediately see that the layouts are not sized correctly.
Can confirm something in 9.0.3 caused this as it was working for me in 9.0.2 and below.
My workaround was to set the StatusBarColor, meaning it only breaks when it's not explicitly set.
I changed: <toolkit:StatusBarBehavior StatusBarStyle="{AppThemeBinding Light='DarkContent', Dark='LightContent'}" />
to: <toolkit:StatusBarBehavior StatusBarColor="{AppThemeBinding Light=White, Dark=Black}" StatusBarStyle="{AppThemeBinding Light='DarkContent', Dark='LightContent'}" />
and it worked again.
Is there an existing issue for this?
Did you read the "Reporting a bug" section on Contributing file?
Current Behavior
On an Android device, if I add
then the first page displayed by the app will have the TitleView behind the phone's status bar and the bottom elements behind the Android navigation bar. In the repro app, the TabBar tabs are behind the Android navigation bar making them inaccessible for clicking.
Not able to reproduce on iOS. No other platforms tested.
Expected Behavior
Expected behavior is to position the TitleView below the status bar and the bottom of the ContentPage should be above the Android navigation bar.
Steps To Reproduce
Link to public reproduction project repository
https://github.com/ckrutsinger/StatusBarBehaviorBug
Environment
Anything else?
Appears that the StatusBarBehavior is causing the screens to receive the wrong sizing frame during layout.
The text was updated successfully, but these errors were encountered: