marco.pms.mobile/lib/helpers/services/navigation_services.dart
2025-04-02 19:11:36 +05:30

14 lines
349 B
Dart

import 'package:flutter/material.dart';
class NavigationService {
static BuildContext? globalContext;
static GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
static void registerContext(BuildContext context, {bool update = false}) {
if (globalContext == null || update) {
globalContext = context;
}
}
}