Sfoglia il codice sorgente

Fix sideMenu layout inside bottomTabs - #3697

yogevbd 6 anni fa
parent
commit
b840dd4181
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 4
    0
      lib/ios/RNNSideMenuController.m

+ 4
- 0
lib/ios/RNNSideMenuController.m Vedi File

@@ -31,6 +31,10 @@
31 31
 	
32 32
 	[self bindChildViewControllers:childViewControllers];
33 33
 	
34
+	// Fixes #3697
35
+	[self setExtendedLayoutIncludesOpaqueBars:YES];
36
+	self.edgesForExtendedLayout |= UIRectEdgeBottom;
37
+	
34 38
 	return self;
35 39
 }
36 40