yogevbd 6 anos atrás
pai
commit
a776670690
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2
    0
      lib/ios/RNNBottomTabsOptions.m

+ 2
- 0
lib/ios/RNNBottomTabsOptions.m Ver arquivo

@@ -25,8 +25,10 @@ extern const NSInteger BLUR_TOPBAR_TAG;
25 25
 	
26 26
 	if (self.drawBehind) {
27 27
 		if ([self.drawBehind boolValue]) {
28
+			[viewController setExtendedLayoutIncludesOpaqueBars:YES];
28 29
 			viewController.edgesForExtendedLayout |= UIRectEdgeBottom;
29 30
 		} else {
31
+			[viewController setExtendedLayoutIncludesOpaqueBars:NO];
30 32
 			viewController.edgesForExtendedLayout &= ~UIRectEdgeBottom;
31 33
 		}
32 34
 	}