changeAppTheme static method
Change the app's theme dynamically (light/dark)
Implementation
static void changeAppTheme({
required ThemeType themeType,
}) {
cT = themeType == ThemeType.dark ? _defaultDarkTheme : _defaultLightTheme;
}
Change the app's theme dynamically (light/dark)
static void changeAppTheme({
required ThemeType themeType,
}) {
cT = themeType == ThemeType.dark ? _defaultDarkTheme : _defaultLightTheme;
}