isDarkMode static method
Check if the current theme is dark mode.
Implementation
static bool isDarkMode(BuildContext context) {
return Theme.of(context).brightness == Brightness.dark;
}
Check if the current theme is dark mode.
static bool isDarkMode(BuildContext context) {
return Theme.of(context).brightness == Brightness.dark;
}