Skip to content

Commit

Permalink
feat: fix show soft input on focus behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
christianwen committed Nov 6, 2022
1 parent f0b7cbe commit 42472db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Libraries/Text/TextInput/RCTBaseTextInputView.m
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,11 @@ - (void)setShowSoftInputOnFocus:(BOOL)showSoftInputOnFocus
if (showSoftInputOnFocus) {
// Resets to default keyboard.
self.backedTextInputView.inputView = nil;

// Without the call to reloadInputViews, the keyboard will not change until the textInput field (the first responder) loses and regains focus.
if (self.backedTextInputView.isFirstResponder) {
[self.backedTextInputView reloadInputViews];
}
} else {
// Hides keyboard, but keeps blinking cursor.
self.backedTextInputView.inputView = [UIView new];
Expand Down

0 comments on commit 42472db

Please sign in to comment.