saveTheme function
- ThemeMode mode
Implementation
Future<void> saveTheme(ThemeMode mode) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
String theme = mode == ThemeMode.dark ? 'dark' : 'light';
await prefs.setString('themeMode', theme);
}