isDarkTheme function

bool isDarkTheme(
  1. BuildContext context
)

Implementation

bool isDarkTheme(BuildContext context) {
  final Brightness platformBrightness =
      MediaQuery.of(context).platformBrightness;
  return (platformBrightness == Brightness.dark ? true : false);
}