Skip to content

Commit

Permalink
Fix statusBar blur option in dark mode (#7372)
Browse files Browse the repository at this point in the history
  • Loading branch information
yogevbd committed Nov 25, 2021
1 parent 74beb27 commit e0da767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ios/UIViewController+RNNOptions.m
Expand Up @@ -134,7 +134,7 @@ - (void)setStatusBarBlur:(BOOL)blur {
if (blur) {
if (!curBlurView) {
UIVisualEffectView *blur = [[UIVisualEffectView alloc]
initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleRegular]];
blur.frame = [[UIApplication sharedApplication] statusBarFrame];
blur.tag = BLUR_STATUS_TAG;
[self.view addSubview:blur];
Expand Down

0 comments on commit e0da767

Please sign in to comment.