text function
Implementation
Widget text(String prop, BuildContext context) {
return Text(
tr(prop),
style: TextStyle(
color: Theme.of(context).useMaterial3
? Colors.black
: Theme.of(context).secondaryHeaderColor),
);
}