post_enrollment_app/lib/pages/helpers/web_helpers.dart
2025-12-28 11:26:50 +05:30

13 lines
428 B
Dart
Executable File

import 'dart:html' as html;
void setupBackButtonHandler(Function showDialogCallback) {
// Push a dummy state so back button triggers popstate instead of navigating
html.window.history.pushState(null, 'home', html.window.location.href);
html.window.onPopState.listen((event) {
showDialogCallback();
// Re-push to prevent leaving
html.window.history.pushState(null, 'home', html.window.location.href);
});
}