-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Description
There are many a11y features for tables which includes:
- Read column header
- Read row
- Read column
- Move up or down in a column
- Move across a row
We should add support for these use cases in Flutter for Web.
https://api.flutter.dev/flutter/widgets/Table-class.html
https://api.flutter.dev/flutter/material/DataTable-class.html
https://api.flutter.dev/flutter/material/PaginatedDataTable-class.html
| OS | role |
|---|---|
| web | table |
| ios | - |
| macos | NSAccessibilityTableRole |
| windows | ROLE_SYSTEM_TABLE |
| android | android.widget.TableLayout |
https://api.flutter.dev/flutter/widgets/TableRow/children.html
https://api.flutter.dev/flutter/material/DataCell-class.html
| OS | role |
|---|---|
| web | cell |
| ios | - |
| macos | NSAccessibilityCellRole |
| windows | ROLE_SYSTEM_CELL |
| android | - |
https://api.flutter.dev/flutter/widgets/TableRow-class.html
https://api.flutter.dev/flutter/material/DataRow-class.html
| OS | role |
|---|---|
| web | row |
| ios | - |
| macos | NSAccessibilityGroupRole, NSAccessibilityTableRowSubrole |
| windows | ROLE_SYSTEM_ROW |
| android | android.widget.TableRow |
| OS | role |
|---|---|
| web | columnheader |
| ios | - |
| macos | NSAccessibilityCellRole |
| windows | ROLE_SYSTEM_COLUMNHEADER |
| android | - |
Metadata
Metadata
Assignees
Labels
Type
Projects
Status