themeModeProvider top-level property
final
Provider for the current theme mode.
Implementation
final themeModeProvider = StateNotifierProvider<ThemeModeNotifier, ThemeMode>((
ref,
) {
final themeService = ref.watch(themeServiceProvider);
return ThemeModeNotifier(themeService);
});