공개페이지

This commit is contained in:
2025-10-29 00:25:03 +09:00
parent 19f99989b8
commit 63d0d383b0
28 changed files with 2691 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// Intentionally minimal; no platform imports to keep tests stable
// Minimal web storage wrapper. On web uses window.localStorage; otherwise in-memory.
// Avoids flutter_secure_storage_web to keep WebAssembly warnings out.
class WebStorage {
static final Map<String, String> _memory = <String, String>{};
static String? getItem(String key) {
return _memory[key];
}
static void setItem(String key, String value) {
_memory[key] = value;
}
static void removeItem(String key) {
_memory.remove(key);
}
}