FeatureCardProps.accented constructor
const
FeatureCardProps.accented({
- required String title,
- required String description,
- required Widget? icon,
- required String accentColor,
- String? href,
- void onTap()?,
- String? ctaText,
- bool isExternal = false,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Creates a feature card with accent color styling and CTA button. This is the style used for InfoTile-like cards.
Implementation
const FeatureCardProps.accented({
required this.title,
required this.description,
required this.icon,
required String this.accentColor,
this.href,
this.onTap,
this.ctaText,
this.isExternal = false,
this.styles,
this.decoration,
}) : showArrow = false,
horizontal = false,
showCta = true;