defaultPickerConfig property

PickerConfig defaultPickerConfig
getter/setter pair

Implementation

static PickerConfig defaultPickerConfig = PickerConfig(
  backgroundColor: pickerBackgroundColor,
  cancelTextStyle: BaseTextStyle(
    color: BaseDefaultConfigUtils.defaultCommonConfig.colorTextBase,
    fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeSubHead,
  ),
  confirmTextStyle: BaseTextStyle(
    color: BaseDefaultConfigUtils.defaultCommonConfig.brandPrimary,
    fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeSubHead,
  ),
  titleTextStyle: BaseTextStyle(
    color: BaseDefaultConfigUtils.defaultCommonConfig.colorTextBase,
    fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeSubHead,
    fontWeight: FontWeight.w600,
    decoration: TextDecoration.none,
  ),
  pickerHeight: pickerHeight,
  titleHeight: pickerTitleHeight,
  itemHeight: pickerItemHeight,
  dividerColor: const Color(0xFFF0F0F0),
  itemTextStyle: BaseTextStyle(
    color: BaseDefaultConfigUtils.defaultCommonConfig.colorTextBase,
    fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeHead,
  ),
  itemTextSelectedStyle: BaseTextStyle(
    color: BaseDefaultConfigUtils.defaultCommonConfig.brandPrimary,
    fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeHead,
    fontWeight: FontWeight.w600,
  ),
  cornerRadius: 8,
);