VerifiedResultScreenConfig.defaultConfig constructor
VerifiedResultScreenConfig.defaultConfig()
Implementation
factory VerifiedResultScreenConfig.defaultConfig() {
return VerifiedResultScreenConfig(
titleStyle: const TextStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
color: Colors.black,
),
subtitleStyle: const TextStyle(
fontSize: 16,
color: Colors.black87,
height: 1.5,
),
labelStyle: const TextStyle(
fontSize: 14,
color: Colors.grey,
fontWeight: FontWeight.w500,
),
valueStyle: const TextStyle(
fontSize: 16,
color: Colors.black,
fontWeight: FontWeight.w600,
),
primaryColor: const Color(0xFFEF4444),
backgroundColor: Colors.white,
cardColor: const Color(0xFFF5F5F5),
buttonColor: const Color(0xFFEF4444),
buttonTextColor: Colors.white,
);
}