diff options
author | Hailey <me@haileyok.com> | 2024-06-17 00:56:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 10:56:02 +0300 |
commit | 89be5a442cd6d16d68c40bfe342889e9a2bf0b1e (patch) | |
tree | e44e1097b69d17b2eb8fc14234af7cea19ceda3c /patches/react-native+0.74.1.patch.md | |
parent | 10c6035f310ba1a3a0420a4e013e2b2b30ddb374 (diff) | |
download | voidsky-89be5a442cd6d16d68c40bfe342889e9a2bf0b1e.tar.zst |
Add patch for `RCTBaseTextInput` fixing `selectTextOnFocus` prop (#4533)
* create patch * remove js fix in `SearchScreen`
Diffstat (limited to 'patches/react-native+0.74.1.patch.md')
-rw-r--r-- | patches/react-native+0.74.1.patch.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/patches/react-native+0.74.1.patch.md b/patches/react-native+0.74.1.patch.md index 9c93aee5c..84953df2b 100644 --- a/patches/react-native+0.74.1.patch.md +++ b/patches/react-native+0.74.1.patch.md @@ -11,3 +11,10 @@ in the RN repo: https://github.com/facebook/react-native/issues/43388 Patching `RCTRefreshControl.m` and `RCTRefreshControl.h` to add a new `forwarderBeginRefreshing` method to the class. This method is used by `ExpoScrollForwarder` to initiate a refresh of the underlying `UIScrollView` from inside that module. + + +## TextInput Patch - `selectTextOnFocus` fix + +Patching `RCTBaseTextInputView.m` to fix an issue where `selectTextOnFocus` does not work as expected on iOS 17. This +patch _only_ fixes the Paper version of `TextInput`. If we migrate to Fabric and the fix has not been made upstream, +we can apply the same fix. See https://github.com/facebook/react-native/pull/44307. |