getHeaderStyle method
Implementation
AntdBoxStyle getHeaderStyle(AntdMapToken token) {
var border = token.border.copyWith(width: 0.5);
return AntdBoxStyle(
padding: EdgeInsets.symmetric(
vertical: token.size.xs.roundToDouble(),
horizontal: token.size.sm.roundToDouble()),
color: token.colorBgLayout,
textStyle: token.font.sm.copyWith(color: token.colorText.secondary),
border: Border(top: border, bottom: border));
}