templateSection function

Widget templateSection(
  1. TemplateTheme theme,
  2. String label
)

Small section heading.

Implementation

Widget templateSection(TemplateTheme theme, String label) {
  return Text(
    label,
    style: TextStyle(
      fontSize: 8,
      fontWeight: FontWeight.bold,
      color: theme.accent,
    ),
  );
}