setThemeMode method

void setThemeMode(
  1. ThemeMode mode
)

Updates the theme mode and saves the selection to persistent storage.

  • mode: The new ThemeMode to apply.

Implementation

void setThemeMode(ThemeMode mode) {
  _themeMode.value = mode;
  _box.write('themeMode', mode.toString()); // Save the selection
  Get.changeThemeMode(mode); // Apply the new theme mode
}