defaultLightTitleStyle static method
Default title style for light theme
Implementation
static TextStyle defaultLightTitleStyle(BuildContext context) {
return Theme.of(context).textTheme.titleMedium!.copyWith(
fontWeight: FontWeight.w500,
color: Colors.black87,
);
}