buildCompactStat function

Widget buildCompactStat(
  1. String label,
  2. String value,
  3. Color color
)

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)),
    ],
  );
}