appbarTextStyle static method

TextStyle appbarTextStyle(
  1. bool isDarkMode
)

Implementation

static TextStyle appbarTextStyle(bool isDarkMode) => TextStyle(
  fontSize: DeviceService.isTablet ? 24 : 22,
  fontWeight: FontWeight.w600,
  color: MyStyles.pupauTheme(!isDarkMode).darkBlue,
  height: DeviceService.isTablet ? 1.25 : 1,
);