fallback static method
Implementation
static ZeroStepStyle fallback({
Color? inactiveColor,
Color? activeColor,
Color? errorColor,
Color? iconColor,
TextStyle? indexTextStyle,
TextStyle? titleTextStyle,
TextStyle? subtitleTextStyle,
TextStyle? contentTextStyle,
TextStyle? labelTextStyle,
}) =>
ZeroStepStyle(
inactiveColor: inactiveColor ?? ZeroColors.neutral,
activeColor: activeColor ?? ZeroColors.primary,
errorColor: errorColor ?? ZeroColors.danger,
iconColor: iconColor ?? ZeroColors.white,
indexTextStyle: indexTextStyle ??
const TextStyle(
color: ZeroColors.white,
fontSize: 12,
),
titleTextStyle: titleTextStyle ??
const TextStyle(
color: ZeroColors.neutral,
fontSize: 14,
),
subtitleTextStyle: subtitleTextStyle ??
const TextStyle(
color: ZeroColors.neutral,
fontSize: 12,
),
contentTextStyle: contentTextStyle ??
const TextStyle(
color: ZeroColors.neutral,
fontSize: 12,
),
labelTextStyle: labelTextStyle ??
const TextStyle(
color: ZeroColors.neutral,
fontSize: 12,
),
);