Fabric TextInput generates double key presses (0.0.0-canary.637) #11452
Labels
Area: Fabric
Support Facebook Fabric
Area: TextInput
bug
New Architecture
Broad category for issues that apply to the RN "new" architecture of Turbo Modules + Fabric
Milestone
Problem Description
Typing into a
TextInput
in a Fabric RNW app produces doubles of all characters. Backspace still works single, so you can type by doing letter1->backspace->letter2->backspace->... 😅Steps To Reproduce
TextInput
Expected Results
Just one each time, thanks
CLI version
11.0.0-alpha.2
Environment
Target Platform Version
None
Target Device(s)
Desktop
Visual Studio Version
Visual Studio 2022
Build Configuration
None
Snack, code example, screenshot, or link to a repository
Setting a breakpoint in
WindowsTextInputComponentView::sendMessage
and slowly typing "asdf":That's
WM_KEYDOWN
,WM_CHAR
,WM_CHAR
,WM_KEYUP
for each one.The text was updated successfully, but these errors were encountered: