buildSubsectionHeader method
Build a subsection header
Implementation
Widget buildSubsectionHeader(String title) {
return Padding(
padding: const EdgeInsets.only(top: 8, bottom: 4),
child: Text(
title,
style: TextStyle(
fontSize: 11,
fontWeight: FontWeight.bold,
color: subtitleColor,
letterSpacing: 1.0,
),
),
);
}