checkIfDarkModeEnabled static method

bool checkIfDarkModeEnabled(
  1. BuildContext context
)

Implementation

static bool checkIfDarkModeEnabled(BuildContext context) {
  final ThemeData theme = Theme.of(context);
  return theme.brightness == Brightness.dark;
}