7 lines
247 B
Dart
7 lines
247 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
final GlobalKey<NavigatorState> rootNavigatorKey =
|
||
|
GlobalKey<NavigatorState>(debugLabel: 'root');
|
||
|
|
||
|
final GlobalKey<NavigatorState> shellNavigatorKey =
|
||
|
GlobalKey<NavigatorState>(debugLabel: 'shell');
|