import 'package:flutter/material.dart'; class NavigationService { static GlobalKey navigatorKey = GlobalKey(); static navigateTo(String routeName) { navigatorKey.currentState!.pushNamed(routeName); } static Future navigateToFuture(String routeName) async { return await navigatorKey.currentState!.pushNamed(routeName); } static replaceTo(String routeName) { navigatorKey.currentState!.pushReplacementNamed(routeName); } }