Browse Source

Added disabledColor for topBar buttons

yogevbd 6 years ago
parent
commit
00280b7073
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      lib/ios/RNNNavigationButtons.m

+ 6
- 0
lib/ios/RNNNavigationButtons.m View File

101
 		[barButtonItem setTintColor:[RCTConvert UIColor: tintColor]];
101
 		[barButtonItem setTintColor:[RCTConvert UIColor: tintColor]];
102
 	}
102
 	}
103
 	
103
 	
104
+	NSNumber* disabledColor = dictionary[@"disabledColor"];
105
+	if (disabledColor) {
106
+		UIColor *color = [RCTConvert UIColor:disabledColor];
107
+		[barButtonItem setTitleTextAttributes:@{NSForegroundColorAttributeName : color} forState:UIControlStateDisabled];
108
+	}
109
+	
104
 	NSString *testID = dictionary[@"testID"];
110
 	NSString *testID = dictionary[@"testID"];
105
 	if (testID)
111
 	if (testID)
106
 	{
112
 	{