darkDialogTheme property

DialogThemeData darkDialogTheme
getter/setter pair

Implementation

static DialogThemeData darkDialogTheme = DialogThemeData(
  backgroundColor: tDarkColor,
  elevation: 5,
  titleTextStyle: const TextStyle(
    color: tWhiteColor,
    fontSize: 20,
    fontWeight: FontWeight.bold,
  ),
  contentTextStyle: const TextStyle(
    color: tPaleWhiteColor,
    fontSize: 16,
  ),
  shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(16),
  ),
);