isDark static method
Checks if the current theme is dark mode.
Implementation
static bool isDark(BuildContext context) {
return getBrightness(context) == Brightness.dark;
}
Checks if the current theme is dark mode.
static bool isDark(BuildContext context) {
return getBrightness(context) == Brightness.dark;
}