Accessibility group - Flutter
On Flutter, there are multiple types of semantics to group accessibility elements. The excludeSemantics
property can be used to override the semantics of all children. You can achieve similar behavior by using BlockSemantics
.
Semantics(
label: 'Appt group',
excludeSemantics: true,
child: Column(
children: [
Text('Appt'),
Text('is a platform for accessibility')
]
)
);