Skip to content

Instantly share code, notes, and snippets.

@RahmiTufanoglu
Created January 30, 2023 08:47
Show Gist options
  • Save RahmiTufanoglu/c0019a1547a7ebcebe7ffd229cf565fe to your computer and use it in GitHub Desktop.
Save RahmiTufanoglu/c0019a1547a7ebcebe7ffd229cf565fe to your computer and use it in GitHub Desktop.
DarkMode
extension DarkMode on BuildContext {
bool get isDarkMode {
final brightness = MediaQuery.of(this).platformBrightness;
return brightness == Brightness.dark;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment