Skip to content

Files

Latest commit

70b534b · Jul 9, 2025

History

History

common

AccessKit

This is the shared cross-platform crate for AccessKit. It defines the data structures that represent an accessibility tree, and the trait for handling action requests from assistive technologies.

To use AccessKit in your application or toolkit, you will also need a platform adapter. The following platform adapters are currently available:

  • accesskit_windows: exposes an AccessKit tree on Windows using the UI Automation API
  • accesskit_macos: exposes an AccessKit tree on MacOS through the Cocoa NSAccessibility protocol
  • accesskit_unix: exposes an AccessKit tree on Linux and Unix systems through the AT-SPI protocol
  • accesskit_android: exposes an AccessKit tree on Android through the Java-based Android accessibility API
  • accesskit_winit: wraps other platform adapters for use with the winit windowing library

Some platform adapters include simple examples.