From d3e5a96b1535e37f26faf7752ea0b724eb090744 Mon Sep 17 00:00:00 2001 From: Jimmy Mayoukou Date: Mon, 9 May 2016 15:28:40 -0700 Subject: [PATCH] Fix tintColor prop platform in Image Summary: `tintColor`, even in style, works on Android; this must be some old comment but that confused me when reading the docs. **Test plan:** - Launched website locally Closes https://github.com/facebook/react-native/pull/7465 Differential Revision: D3278166 fbshipit-source-id: 4e986e0f2a9ba05de4404b93d28687596fbb4fad --- Libraries/Image/ImageStylePropTypes.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/Image/ImageStylePropTypes.js b/Libraries/Image/ImageStylePropTypes.js index d6fbb6404..58b3b00f0 100644 --- a/Libraries/Image/ImageStylePropTypes.js +++ b/Libraries/Image/ImageStylePropTypes.js @@ -31,9 +31,7 @@ var ImageStylePropTypes = { overflow: ReactPropTypes.oneOf(['visible', 'hidden']), /** - * iOS-Specific style to "tint" an image. * Changes the color of all the non-transparent pixels to the tintColor. - * @platform ios */ tintColor: ColorPropType, opacity: ReactPropTypes.number,