cardTheme property

CardThemeData get cardTheme

Implementation

CardThemeData get cardTheme => CardThemeData(
  color: colorScheme.surface,
  shadowColor: colorScheme.shadow,
  surfaceTintColor: Colors.transparent,
  elevation: 1,
  shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(8),
    side: BorderSide(
      color: colorScheme.outline.withValues(alpha: 0.1),
      width: 1,
    ),
  ),
  margin: EdgeInsets.zero,
  clipBehavior: Clip.antiAlias,
);