isDark static method

bool isDark(
  1. BuildContext context
)

Check if the current theme is dark.

Implementation

static bool isDark(BuildContext context) {
  return NyThemeManager.instance.isDark;
}