We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9692ff + b109565 commit a01e73aCopy full SHA for a01e73a
Auth/FirebaseAuthUI/FUIAuthPickerViewController.m
@@ -91,6 +91,11 @@ - (instancetype)initWithNibName:(NSString *)nibNameOrNil
91
- (void)viewDidLoad {
92
[super viewDidLoad];
93
94
+ // Makes sure that embedded scroll view properly handles translucent navigation bar
95
+ if (!self.navigationController.navigationBar.isTranslucent) {
96
+ self.extendedLayoutIncludesOpaqueBars = true;
97
+ }
98
+
99
if (!self.authUI.shouldHideCancelButton) {
100
UIBarButtonItem *cancelBarButton =
101
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
0 commit comments