static Future<List<String>> readStringList(String key) async { final prefs = await SharedPreferences.getInstance(); return prefs.getStringList(key) ?? List.empty(); }