text function

Widget text(
  1. String prop,
  2. BuildContext context
)

Implementation

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