Procházet zdrojové kódy

fixes statusBar visilibity

yogevbd před 6 roky
rodič
revize
69ffb0e643
1 změnil soubory, kde provedl 6 přidání a 2 odebrání
  1. 6
    2
      lib/ios/RNNStatusBarOptions.m

+ 6
- 2
lib/ios/RNNStatusBarOptions.m Zobrazit soubor

@@ -21,9 +21,13 @@
21 21
 	}
22 22
 	
23 23
 	if (self.style || self.visible) {
24
-		[UIView animateWithDuration:[self statusBarAnimationDuration] animations:^{
24
+		if (self.animate) {
25
+			[UIView animateWithDuration:[self statusBarAnimationDuration] animations:^{
26
+				[viewController setNeedsStatusBarAppearanceUpdate];
27
+			}];
28
+		} else {
25 29
 			[viewController setNeedsStatusBarAppearanceUpdate];
26
-		}];
30
+		}
27 31
 	}
28 32
 }
29 33