defaultTheme property

AlertTheme defaultTheme
getter/setter pair

Implementation

static AlertTheme defaultTheme = AlertTheme(
  backgroundColor: Colors.white,
  titleStyle: const TextStyle(fontWeight: FontWeight.bold, fontSize: 18),
  descriptionStyle: const TextStyle(fontSize: 15),
  buttonStyle: ElevatedButton.styleFrom(),
  borderRadius: BorderRadius.circular(16),
  shadow: [
    BoxShadow(
      color: Colors.black12,
      blurRadius: 24,
      offset: Offset(0, 8),
    ),
  ],
  animationDuration: const Duration(milliseconds: 350),
);