adaptiveBodyTextStyle property

TextStyle adaptiveBodyTextStyle

Implementation

TextStyle get adaptiveBodyTextStyle {
  if (theme.windowSize.shortestSide > 480) {
    return bodyMedium;
  } else {
    return bodySmall;
  }
}