0

I am having an issue with my automated tests because when I compile my web application I can't find the aria-label attribute that was present in version 3.19.6 or earlier.

Flutter 3.22.0 or above Flutter 3.19.6

I was trying to use RendererBinding.instance.setSemanticsEnabled(true); to force accessibility tags.

void main() async {
  runApp(const MaterialApp(home: Material(child: Foo())));
  RendererBinding.instance.setSemanticsEnabled(true);
}

0