surfaceTintColor property

Color? surfaceTintColor
final

The color used as a surface tint overlay on the dialog's background color, which reflects the dialog's elevation.

If ThemeData.useMaterial3 is false property has no effect.

If null and ThemeData.useMaterial3 is true then ThemeData's ColorScheme.surfaceTint will be used.

To disable this feature, set surfaceTintColor to Colors.transparent.

See also:

  • Material.surfaceTintColor, which describes how the surface tint will be applied to the background color of the dialog.
  • elevation, which affects the opacity of the surface tint.
  • shadowColor, which can be used to indicate elevation through a drop shadow.

Implementation

final Color? surfaceTintColor;