From 4d9e6ad9bc2510efcf6ce87624a71dfd41bdce9b Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Mon, 23 Mar 2026 01:40:10 -0500 Subject: [PATCH] fix: wire up enableFocusRing prop for TextInput MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forward enableFocusRing prop to the native TextInput view — it was missing from the view manager. Co-Authored-By: Claude Opus 4.6 --- .../Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm b/packages/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm index fac5699dedea..d67a2d962aed 100644 --- a/packages/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm +++ b/packages/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm @@ -84,6 +84,7 @@ @implementation RCTBaseTextInputViewManager { RCT_EXPORT_VIEW_PROPERTY(submitKeyEvents, NSArray); RCT_REMAP_VIEW_PROPERTY(cursorColor, backedTextInputView.cursorColor, UIColor) +RCT_REMAP_VIEW_PROPERTY(enableFocusRing, backedTextInputView.enableFocusRing, BOOL) #endif // macOS] RCT_EXPORT_VIEW_PROPERTY(onChange, RCTBubblingEventBlock)