ソースを参照

Fix sideMenu layout inside bottomTabs - #3697

yogevbd 6 年 前
コミット
b840dd4181
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4
    0
      lib/ios/RNNSideMenuController.m

+ 4
- 0
lib/ios/RNNSideMenuController.m ファイルの表示

@@ -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