defaultTabBarConfig property
Implementation
static BaseTabBarConfig defaultTabBarConfig = BaseTabBarConfig(
backgroundColor: Colors.white,
tabHeight: 50.0,
indicatorHeight: 2.0,
indicatorWidth: 24.0,
labelStyle: BaseTextStyle(
color: BaseDefaultConfigUtils.defaultCommonConfig.brandPrimary,
fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeSubHead,
fontWeight: FontWeight.w600,
),
unselectedLabelStyle: BaseTextStyle(
color: BaseDefaultConfigUtils.defaultCommonConfig.colorTextBase,
fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeSubHead,
fontWeight: FontWeight.normal,
),
tagRadius: BaseDefaultConfigUtils.defaultCommonConfig.radiusSm,
tagNormalTextStyle: BaseTextStyle(
color: BaseDefaultConfigUtils.defaultCommonConfig.colorTextBase,
fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeCaption,
),
tagNormalBgColor: BaseDefaultConfigUtils.defaultCommonConfig.fillBody,
tagSelectedTextStyle: BaseTextStyle(
color: BaseDefaultConfigUtils.defaultCommonConfig.brandPrimary,
fontSize: BaseDefaultConfigUtils.defaultCommonConfig.fontSizeCaption,
),
tagSelectedBgColor:
BaseDefaultConfigUtils.defaultCommonConfig.brandPrimary.withAlpha(0x14),
tagSpacing: 12.0,
preLineTagCount: 4,
tagHeight: 32.0,
);