b/159302760
This is only observed on android, but not on iOS. When a semantic widget with link:true is focused, TalkBack announces it as a button instead of a link.
Minimal reproduction case:
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('First Route')),
body: Center(child: Semantics(link: true, child: Text('test'))),
),
),
);
}
cc @gaaclarke @nscobie