Future<void> saveSetting(String key, dynamic value) async { final box = Hive.box(_settingsBox); await box.put(key, value); }