currentThemeModeProvider top-level property

Provider<ThemeMode> currentThemeModeProvider
final

Convenience provider for accessing the current theme mode as Flutter's ThemeMode

Implementation

final currentThemeModeProvider = Provider<ThemeMode>((ref) {
  return ref.watch(themeSwitcherProvider);
});