Skip to content

Commit

Permalink
Unreverting Marketplace change for Inverted Color Ignorance
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Ziqi Chen authored and facebook-github-bot committed Jul 10, 2018
1 parent 1ee6396 commit ef3d8b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Libraries/Image/ImageBackground.js
Original file line number Diff line number Diff line change
Expand Up @@ -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={[
Expand Down

0 comments on commit ef3d8b2

Please sign in to comment.