setHlocFontStyle method

dynamic setHlocFontStyle(
  1. dynamic style
)

Implementation

setHlocFontStyle(style){
  //调整hloc主题红色绿
  style['hloc']['labelTextStyle'] = style['hloc']['labelTextStyle'].copyWith(fontSize: style['hloc'][isWeb?'fontSizePc':'fontSize']);
  style['hloc']['valueTextStyle'] = style['hloc']['valueTextStyle'].copyWith(fontSize: style['hloc'][isWeb?'fontSizePc':'fontSize']);
  style['hloc']['valueUpTextStyle'] = style['hloc']['valueUpTextStyle'].copyWith(fontSize: style['hloc'][isWeb?'fontSizePc':'fontSize'],color:style[ColorType['upColor']]);
  style['hloc']['valueDownTextStyle'] = style['hloc']['valueDownTextStyle'].copyWith(fontSize: style['hloc'][isWeb?'fontSizePc':'fontSize'],color:style[ColorType['downColor']]);
}