detailRow function

Widget detailRow(
  1. String label,
  2. String value
)

Implementation

Widget detailRow(String label, String value) {
  return Row(
    children: [
      Text(
        '$label: ',
        style: const TextStyle(color: Colors.white38, fontSize: 11),
      ),
      Text(value, style: const TextStyle(color: Colors.white70, fontSize: 11)),
    ],
  );
}