toggleTheme static method
Toggle the two themes (light & dark) of the app
Implementation
static void toggleTheme({VoidCallback? onChanged}) {
provider.isDark.v = !provider.isDark.v;
onChanged?.call();
}
Toggle the two themes (light & dark) of the app
static void toggleTheme({VoidCallback? onChanged}) {
provider.isDark.v = !provider.isDark.v;
onChanged?.call();
}