Browse Source

fix unit ios

yogevbd 6 years ago
parent
commit
94b0df38c2
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      lib/ios/RNNBottomTabsOptions.m
  2. 1
    1
      lib/ios/RNNTopBarOptions.m

+ 1
- 1
lib/ios/RNNBottomTabsOptions.m View File

40
 	if (self.translucent) {
40
 	if (self.translucent) {
41
 		viewController.tabBarController.tabBar.translucent = [self.translucent boolValue];
41
 		viewController.tabBarController.tabBar.translucent = [self.translucent boolValue];
42
 	} else {
42
 	} else {
43
-		viewController.tabBarController.tabBar.translucent = YES;
43
+		viewController.tabBarController.tabBar.translucent = NO;
44
 	}
44
 	}
45
 	
45
 	
46
 	if (self.hideShadow) {
46
 	if (self.hideShadow) {

+ 1
- 1
lib/ios/RNNTopBarOptions.m View File

114
 	if (self.translucent) {
114
 	if (self.translucent) {
115
 		viewController.navigationController.navigationBar.translucent = [self.translucent boolValue];
115
 		viewController.navigationController.navigationBar.translucent = [self.translucent boolValue];
116
 	} else {
116
 	} else {
117
-		viewController.navigationController.navigationBar.translucent = YES;
117
+		viewController.navigationController.navigationBar.translucent = NO;
118
 	}
118
 	}
119
 	
119
 	
120
 	if (self.drawBehind) {
120
 	if (self.drawBehind) {