dialogTheme property

DialogThemeData get dialogTheme

Implementation

DialogThemeData get dialogTheme => DialogThemeData(
  backgroundColor: colorScheme.surface,
  surfaceTintColor: Colors.transparent,
  elevation: 3,
  shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
  titleTextStyle: textTheme.headlineSmall?.copyWith(
    color: colorScheme.onSurface,
    fontWeight: FontWeight.w600,
  ),
  contentTextStyle: textTheme.bodyMedium?.copyWith(
    color: colorScheme.onSurfaceVariant,
  ),
);