mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fix wording for unselected checkbox state (#37415)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/37415 Previously, when focusing on an unchecked checkbox in React Native Paper with VoiceOver, it was announcing as "not selected". iOS voiceover uses "unselected" instead ("not selected" is used on Android Talkback). Update code to use "unselected". Changelog: [Internal] Reviewed By: cipolleschi Differential Revision: D45799922 fbshipit-source-id: 30f7813ed9f1fdad817e18b28c4fcf99cb4b884f
This commit is contained in:
committed by
Facebook GitHub Bot
parent
12f4a19306
commit
d246e5a1a8
@@ -310,7 +310,7 @@ RCT_NOT_IMPLEMENTED(-(instancetype)initWithCoder : unused)
|
||||
@"timer" : @"timer",
|
||||
@"toolbar" : @"tool bar",
|
||||
@"checked" : @"checked",
|
||||
@"unchecked" : @"not checked",
|
||||
@"unchecked" : @"unchecked",
|
||||
@"busy" : @"busy",
|
||||
@"expanded" : @"expanded",
|
||||
@"collapsed" : @"collapsed",
|
||||
|
||||
Reference in New Issue
Block a user