Unreverting Marketplace change for Inverted Color Ignorance
Summary: Un-reverted Diff D8528543 Context: Diff itself is the exact same as the old one. There's actually nothing wrong with this diff, it was originally reverted because of iOS compatibility issue on exposing `accessibilityIgnoresInvertcolors` API to javascript, which has now been handled and fixed in this D8599698. This means I can now set the property `accessibilityIgnoresInvertColors` -------------------------- Added Smart Inversion Compatibility to Marketplace on iOS so that photos don't appear inverted Added Property to View for Ignoring Color Inversion Applied Property to Images on marketplace. **Note: Android doesn't support smart inversion Reviewed By: PeteTheHeat Differential Revision: D8737594 fbshipit-source-id: 86080d45dec773ede4d3828fcda8870f546df691
This commit is contained in:
parent
1ee6396c56
commit
ef3d8b23c3
|
@ -60,7 +60,10 @@ class ImageBackground extends React.Component<$FlowFixMeProps> {
|
|||
const {children, style, imageStyle, imageRef, ...props} = this.props;
|
||||
|
||||
return (
|
||||
<View style={style} ref={this._captureRef}>
|
||||
<View
|
||||
accessibilityIgnoresInvertColors={true}
|
||||
style={style}
|
||||
ref={this._captureRef}>
|
||||
<Image
|
||||
{...props}
|
||||
style={[
|
||||
|
|
Loading…
Reference in New Issue