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