CxCard constructor
const
CxCard({
- Key? key,
- double? radius,
- EdgeInsetsGeometry? margin,
- bool? shadow,
- BoxShadow? boxShadow,
- Color? shadowColor,
- String? title,
- Color? titleColor,
- String? subtitle,
- Color? subtitleColor,
- double? titleSize,
- double? subtitleSize,
- Widget? titleWidget,
- Widget? foot,
- required Widget body,
- List<
Widget> ? actions, - Color? bgColor,
- double? minHeight,
- Widget? footWidget,
- Color? hdBgColor,
- EdgeInsetsGeometry? hdPadding,
- bool? hdSplit,
- Color? hdSplitColor,
- double? hdSplitHeight,
- EdgeInsetsGeometry? hdSplitMargin,
- Widget? hdSplitWidget,
Implementation
const CxCard({
super.key,
this.radius,
this.margin,
this.shadow,
this.boxShadow,
this.shadowColor,
this.title,
this.titleColor,
this.subtitle,
this.subtitleColor,
this.titleSize,
this.subtitleSize,
this.titleWidget,
this.foot,
required this.body,
this.actions,
this.bgColor,
this.minHeight,
this.footWidget,
this.hdBgColor,
this.hdPadding,
//
this.hdSplit,
this.hdSplitColor,
this.hdSplitHeight,
this.hdSplitMargin,
this.hdSplitWidget,
});