Skip content - Flutter
In Flutter, skipping content is mostly relevant to TalkBack
and VoiceOver
users. Both screen readers include shortcuts which allows users to jump to content types, such as headers
and links
.
Provide appropriate accessibility markup to your content by using Semantics
.
Semantics(
header: true,
link: true,
child: Widget(...)
);