TSelectionConfig constructor

TSelectionConfig({
  1. TextStyle? menuNormalTextStyle,
  2. TextStyle? menuSelectedTextStyle,
  3. TextStyle? tagNormalTextStyle,
  4. TextStyle? tagSelectedTextStyle,
  5. double? tagRadius,
  6. Color? tagNormalBackgroundColor,
  7. Color? tagSelectedBackgroundColor,
  8. TextStyle? hintTextStyle,
  9. TextStyle? rangeTitleTextStyle,
  10. TextStyle? inputTextStyle,
  11. TextStyle? itemNormalTextStyle,
  12. TextStyle? itemSelectedTextStyle,
  13. TextStyle? itemBoldTextStyle,
  14. Color? deepNormalBgColor,
  15. Color? deepSelectBgColor,
  16. Color? middleNormalBgColor,
  17. Color? middleSelectBgColor,
  18. Color? lightNormalBgColor,
  19. Color? lightSelectBgColor,
  20. TextStyle? resetTextStyle,
  21. TextStyle? titleForMoreTextStyle,
  22. TextStyle? optionTextStyle,
  23. TextStyle? moreTextStyle,
  24. TextStyle? flayerNormalTextStyle,
  25. TextStyle? flayerSelectedTextStyle,
  26. TextStyle? flayerBoldTextStyle,
})

遵循外部主题配置 默认为 BrnDefaultConfigUtils.defaultSelectionConfig

Implementation

TSelectionConfig({
  TextStyle? menuNormalTextStyle,
  TextStyle? menuSelectedTextStyle,
  TextStyle? tagNormalTextStyle,
  TextStyle? tagSelectedTextStyle,
  double? tagRadius,
  Color? tagNormalBackgroundColor,
  Color? tagSelectedBackgroundColor,
  TextStyle? hintTextStyle,
  TextStyle? rangeTitleTextStyle,
  TextStyle? inputTextStyle,
  TextStyle? itemNormalTextStyle,
  TextStyle? itemSelectedTextStyle,
  TextStyle? itemBoldTextStyle,
  Color? deepNormalBgColor,
  Color? deepSelectBgColor,
  Color? middleNormalBgColor,
  Color? middleSelectBgColor,
  Color? lightNormalBgColor,
  Color? lightSelectBgColor,
  TextStyle? resetTextStyle,
  TextStyle? titleForMoreTextStyle,
  TextStyle? optionTextStyle,
  TextStyle? moreTextStyle,
  TextStyle? flayerNormalTextStyle,
  TextStyle? flayerSelectedTextStyle,
  TextStyle? flayerBoldTextStyle,
})  : _menuNormalTextStyle = menuNormalTextStyle,
      _menuSelectedTextStyle = menuSelectedTextStyle,
      _tagNormalTextStyle = tagNormalTextStyle,
      _tagSelectedTextStyle = tagSelectedTextStyle,
      _tagRadius = tagRadius,
      _tagNormalBackgroundColor = tagNormalBackgroundColor,
      _tagSelectedBackgroundColor = tagSelectedBackgroundColor,
      _hintTextStyle = hintTextStyle,
      _rangeTitleTextStyle = rangeTitleTextStyle,
      _inputTextStyle = inputTextStyle,
      _itemNormalTextStyle = itemNormalTextStyle,
      _itemSelectedTextStyle = itemSelectedTextStyle,
      _itemBoldTextStyle = itemBoldTextStyle,
      _deepNormalBgColor = deepNormalBgColor,
      _deepSelectBgColor = deepSelectBgColor,
      _middleNormalBgColor = middleNormalBgColor,
      _middleSelectBgColor = middleSelectBgColor,
      _lightNormalBgColor = lightNormalBgColor,
      _lightSelectBgColor = lightSelectBgColor,
      _resetTextStyle = resetTextStyle,
      _titleForMoreTextStyle = titleForMoreTextStyle,
      _optionTextStyle = optionTextStyle,
      _moreTextStyle = moreTextStyle,
      _flayerNormalTextStyle = flayerNormalTextStyle,
      _flayerSelectedTextStyle = flayerSelectedTextStyle,
      _flayerBoldTextStyle = flayerBoldTextStyle;