buildColumnHeader method
Implementation
Widget buildColumnHeader(String text, bool isCurrentSortColumn) {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
Flexible(
child: XfdnText(
text,
textColor: isCurrentSortColumn
? XfdnDesignSystem.settings.primaryColor
: Colors.black,
fontWeight: FontWeight.w600,
),
),
],
);
}