fieldLabelStyle static method

TextStyle fieldLabelStyle(
  1. bool isDarkMode
)

Implementation

static TextStyle fieldLabelStyle(bool isDarkMode) => TextStyle(
  color: MyStyles.pupauTheme(!isDarkMode).darkBlue,
  fontSize: DeviceService.isTablet ? 16 : 14,
  fontWeight: FontWeight.w500,
);