From df040b5bb9eaa6065f26f27477b4c2a3398ac976 Mon Sep 17 00:00:00 2001 From: Ziqi Chen Date: Wed, 8 Aug 2018 13:27:17 -0700 Subject: [PATCH] Update view.md (#502) --- docs/view.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/view.md b/docs/view.md index 93785e01a1a879..206573fa94d945 100644 --- a/docs/view.md +++ b/docs/view.md @@ -80,6 +80,7 @@ For `View` responder props (e.g., `onResponderMove`), the synthetic touch event * [`accessibilityTraits`](view.md#accessibilitytraits) * [`accessibilityViewIsModal`](view.md#accessibilityviewismodal) * [`accessibilityElementsHidden`](view.md#accessibilityElementsHidden) +* [`accessibilityIgnoresInvertColors`](view.md#accessibilityIgnoresInvertColors) * [`shouldRasterizeIOS`](view.md#shouldrasterizeios) --- @@ -562,6 +563,18 @@ See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) --- +### `accessibilityIgnoresInvertColors` + +A value indicating this view should or should not be inverted when color inversion is turned on. A value of `true` will tell the view to not be inverted even if color inversion is turned on. + +See the [Accessibility guide](accessibility.md#accessibilityignoresinvertcolors) for more information. + +| Type | Required | Platform | +| ---- | -------- | -------- | +| bool | No | iOS | + +--- + ### `shouldRasterizeIOS` Whether this `View` should be rendered as a bitmap before compositing.