primaryTextStyle function

TextStyle primaryTextStyle(
  1. {required BuildContext context}
)

Implementation

TextStyle primaryTextStyle({
  required BuildContext context,
}) {
  return TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w700,
    height: 0,
    letterSpacing: 1,
    color: Theme.of(context).colorScheme.onSurface,
  );
}