Parcourir la source

Added disabledColor for topBar buttons

yogevbd il y a 6 ans
Parent
révision
00280b7073
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. 6
    0
      lib/ios/RNNNavigationButtons.m

+ 6
- 0
lib/ios/RNNNavigationButtons.m Voir le fichier

@@ -101,6 +101,12 @@
101 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 110
 	NSString *testID = dictionary[@"testID"];
105 111
 	if (testID)
106 112
 	{