Missing accessible label |
Error |
When the accessible-label property of an interactive control contains no text. An interactive control can be inherently interactive, as a button is, or it has interactive properties. For example, you might have set the OnSelect property of an image or set its TabIndex property to 0 or higher. |
Edit the accessible-label property to describe the item. |
If the accessible-label property contains no text, people who can’t see the screen won't understand what’s in images and controls. |
Focus isn't showing |
Error |
When the FocusBorderThickness of a control is set to 0. It is good practice to ensure a proper color-contrast ratio between the focus border and the control itself so it's clearly visible. |
Change the FocusedBorderThickness property to a value that's higher than 0. |
If the focus isn't visible, people who don't use a mouse can't see it when they interact with the app. |
Missing captions |
Warning |
When the ClosedCaptionsURL property of an Audio or Video control is empty. |
Set the ClosedCaptionsURL property to the URL for captions. |
Without captions, people who have disabilities might not get any information from a video or audio segment. |
Missing helpful control settings |
Warning |
When any of several settings (such as showing labels and markers for charts and showing default controls for Audio, Video, and Pen input controls) are turned off. |
Select the warning, and then set the property to true. |
By changing this property setting, you give the user better information about how the controls in your app function. |
HTML won't be accessible |
Warning |
When a control other than an HTML text control contains HTML. In that case, Power Apps doesn't support accessibility of custom HTML elements. |
Use a method other than HTML, or remove the HTML from this element. |
Your app won't work correctly or be accessible if you add interactive HTML elements. |
Turn off autostart |
Warning |
When an Audio or Video control's Autostart property is set to true. |
Set the control's Autostart property to false. |
Video and audio files that play automatically can distract users. Let them choose whether to play a clip. |
Revise screen name |
Tip |
When a screen has a default name, which will be read out by screen readers when users navigate the app. |
Give the screen a name that describes what's on the screen or what it's used for. |
People who are blind, have low vision, or a reading disability rely on screen names to navigate using the screen reader. |
Add State indication text |
Tip |
When a control that has a state, such as a toggle, but the value labels are turned off. |
Set the ShowValue property of the control to true to show its current state. |
Users won't get confirmation of their actions if the state of the control doesn't appear. |
Check the order of the screen items |
Tip |
When the TabIndex property is greater than 0. App creators can set custom tab orders by setting the TabIndex property to a value greater than 0 but it is highly discouraged as it is hard to get right, maintain, and can break screen readers. |
Set all TabIndex properties to 0 or -1 whenever possible. Instead of using TabIndex, use the Enhanced group control to change the navigation order from the default. If values of TabIndex greater than 0 must be used, make sure that your screen elements match the order in which you'd want to tab through them. |
The navigation order should mirror the order in which controls appear on the screen, which is the default. If manual adjustments are made, it is difficult to maintain the correct order especially in the presence of the browser's address bar and other controls outside of the app. This can make a screen reader very difficult to use. When read by the screen reader, the controls should be presented in the same order in which they are seen on the screen, instead of an order that's less intuitive. |
Add another input method |
Tip |
When an app contains a Pen control. This tip reminds you to include a separate method of input. |
Add a Text input control in addition to the Pen control for an accessible experience. |
Some users can't use a pen and require another way to provide information (for example, by typing a signature). |