textLabelMedium function

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

Implementation

Widget textLabelMedium(BuildContext context, String text) {
  return Text(text, style: Theme.of(context).textTheme.labelMedium);
}