calculateFontSize static method

double calculateFontSize(
  1. BuildContext context,
  2. double height
)

Implementation

static double calculateFontSize(BuildContext context, double height) {
  final mediaQuery = MediaQuery.of(context);
  final screenHeight = mediaQuery.size.height;
  return screenHeight * height;
}