post_enrollment_app/lib/pages/helpers/html_web.dart
2026-04-08 09:11:24 +05:30

19 lines
437 B
Dart
Executable File

// html_web.dart
import 'dart:html' as html;
import 'package:nhance_app_pwa/logger.dart';
class HtmlHelper {
static void saveLoginData(Map<String, String> data) {
data.forEach((key, value) {
html.window.localStorage[key] = value;
});
html.window.dispatchEvent(
html.CustomEvent('userLoggedIn', detail: {'status': 'success'}),
);
logDebug("✅ User logged in! LocalStorage values set (web).");
}
}