bb1f85183b
Summary: This PR will: - add missing documentation for `caretHidden` prop to the docs - add `caretHidden` prop implementation for Android I noticed this by accident when looking at `RCTTextFieldManager.m` and there is `RCT_EXPORT_VIEW_PROPERTY(caretHidden, BOOL)` which hides caret on iOS. Then I realised that the docs were missing for this prop and implementation on Android side :) Render `TextInput` with prop `caretHidden`. After this caret is not visible anymore. `<TextInput style={styles.input} caretHidden />` If you omit the prop then caret is visible again `<TextInput style={styles.input} />` Closes https://github.com/facebook/react-native/pull/11863 Differential Revision: D4448402 fbshipit-source-id: 456e1df3e2cbb8af32540d2c7a8f4e7da219f5c3 |
||
---|---|---|
.. | ||
libs | ||
src | ||
.npmignore | ||
DEFS | ||
DevExperience.md | ||
README.md | ||
build.gradle | ||
gradle.properties | ||
release.gradle |
README.md
Building React Native for Android
See the docs on the website.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing.