Skip to content

Commit

Permalink
fix: Set iOS Window background to Clear instead of White
Browse files Browse the repository at this point in the history
  • Loading branch information
kazo0 committed Mar 9, 2022
1 parent 9dacb62 commit 568d988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Window.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Window()
_window = new Uno.UI.Controls.Window();

_mainController = ViewControllerGenerator?.Invoke() ?? new RootViewController();
_mainController.View.BackgroundColor = UIColor.White;
_mainController.View.BackgroundColor = UIColor.Clear;
_mainController.NavigationBarHidden = true;

ObserveOrientationAndSize();
Expand Down

0 comments on commit 568d988

Please sign in to comment.