You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to improve the screen reader support for the UnoApplicationTemplate. The behavior for TextBox on iOS is not up to standards for accessibility.
Right now in the app template, when focusing a TextBox, VoiceOver reads it like so:
If TextBox is empty:
PlaceholderText
If TextBox is filled:
PlaceholderText
In comparison, when you use the form to create a new contact on the iOS built-in app Contacts, VoiceOver reads it that way:
If TextBox is empty:
Label
PlaceholderText
If TextBox is filled:
Label
Text input by user
What doesn't work is:
Using AutomationProperties.Name in xaml
Using AutomationProperties.HelpText in xaml
Do you have ideas on what would be the best way to support VoiceOver for TextBox?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to improve the screen reader support for the UnoApplicationTemplate. The behavior for
TextBox
on iOS is not up to standards for accessibility.Right now in the app template, when focusing a
TextBox
, VoiceOver reads it like so:TextBox
is empty:PlaceholderText
TextBox
is filled:PlaceholderText
In comparison, when you use the form to create a new contact on the iOS built-in app Contacts, VoiceOver reads it that way:
TextBox
is empty:Label
PlaceholderText
TextBox
is filled:Label
What doesn't work is:
AutomationProperties.Name
in xamlAutomationProperties.HelpText
in xamlDo you have ideas on what would be the best way to support VoiceOver for
TextBox
?Beta Was this translation helpful? Give feedback.
All reactions