changeAppThemeMode method

dynamic changeAppThemeMode(
  1. AcxAppThemeType? themeType
)

Implementation

changeAppThemeMode(AcxAppThemeType? themeType) async {
  AcxAppTheme.defaultThemeType = themeType!;
  SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
  await sharedPreferences.setInt("Acx_app_theme_mode", themeType.index);

  log(AcxAppTheme.getThemeFromThemeMode().toString());
  notifyListeners();
}