mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-05 12:18:02 +02:00
dcfd95f276
Expose a root navigator for global dialogs, show a fallback help sheet with copy and reopen actions when verification URLs cannot launch, and schedule the same prompt after a timeout during pending grants.
9 lines
202 B
Dart
9 lines
202 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppNavigationService {
|
|
static final GlobalKey<NavigatorState> rootNavigatorKey =
|
|
GlobalKey<NavigatorState>();
|
|
|
|
const AppNavigationService._();
|
|
}
|