diff --git a/docs/direct-manipulation.html b/docs/direct-manipulation.html index dea7d220666..3edd5057b97 100644 --- a/docs/direct-manipulation.html +++ b/docs/direct-manipulation.html @@ -98,29 +98,7 @@ child perform touch handling. To do this, it passes on Precomputing style #
We learned above that setNativeProps is a wrapper around
-RCTUIManager.updateView, which is also used internally by React to
-perform updates on re-render. One important difference is that
-setNativeProps does not call precomputeStyle, which is done
-internally by React, and so the transform property will not work if
-you try to update it manually with setNativeProps. To fix this,
-you can call precomputeStyle on your object first:
Another very common use case of setNativeProps is to clear the value
+requires that we implement setNativeProps.
Another very common use case of setNativeProps is to clear the value
of a TextInput. The controlled prop of TextInput can sometimes drop
characters when the bufferDelay is low and the user types very
quickly. Some developers prefer to skip this prop entirely and instead