Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ios): set navigation controller’s background color #11184

Merged
merged 8 commits into from
Sep 5, 2019
1 change: 1 addition & 0 deletions iphone/Classes/TiUINavigationWindowProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ - (void)navigationController:(UINavigationController *)navigationController will
[theWindow windowWillOpen];
[theWindow windowDidOpen];
}
navController.view.backgroundColor = theWindow.view.backgroundColor;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It feels like a workaround, since thats not necessary natively. Can you please go through the view tree and check the differences between native views / VC's?

}

- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
Expand Down