Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions resources/android/BareTextInputRenderer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ object BareTextInputRenderer {
}
innerTextField()
},
// Filled and Outlined pass this since day one; Bare never did, so
// `keyboard="number"` (and the derived capitalization) were
// silently ignored on bare inputs — the plain text keyboard
// always came up.
keyboardOptions = keyboardOptionsFor(props),
keyboardActions = KeyboardActions(onAny = {
// Flush the settled caret before the submit event fires.
selectionReporter.flush(value)
Expand Down
Loading