buildCompactStat function
Implementation
Widget buildCompactStat(String label, String value, Color color) {
return Row(
children: [
Text(label, style: TextStyle(color: color, fontWeight: FontWeight.bold, fontSize: 20)),
const SizedBox(width: 5),
Text(value, style: const TextStyle(color: Colors.white70, fontFamily: 'Courier', fontSize: 20)),
],
);
}