Add keyboard focus visual indicator for ToggleSwitch control.#476
Merged
SKProCH merged 2 commits intoAvaloniaCommunity:masterfrom Sep 6, 2025
Merged
Conversation
Contributor
Author
|
If it's a good idea, I or someone else can continue adding effects to all the elements. To completely remove the ugly dot focus limiter. It doesn't fit into the overall visual picture in any way. |
Contributor
Author
Contributor
Author
|
The FocusAdorner property is used to show a default focus visual, typically a Border, around a Control with :focus-visible. When using :focus-visible to show a custom visual indicator, setting FocusAdorner to null will avoid showing a duplicate indicator. |
Contributor
Author
|
I changed focus to focus-visible. |
Contributor
Author
|
Now the visual effect will only work when navigating with the keyboard. This will allow us to improve all other controls in the future. |
SKProCH
approved these changes
Sep 6, 2025
This was referenced Jan 1, 2026
This was referenced Feb 1, 2026
This was referenced Mar 29, 2026
This was referenced Apr 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Problem
The ToggleSwitch control in Material.Avalonia lacks proper visual feedback when focused via keyboard navigation (Tab, Shift+Tab), gamepad, or other input methods. This creates accessibility issues and poor user experience for:
Technical Changes