feat(extensions): manual verification help when browser launch fails

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.
This commit is contained in:
zarzet
2026-07-01 11:24:07 +07:00
parent 4d6f7d8b08
commit dcfd95f276
5 changed files with 180 additions and 22 deletions
+8
View File
@@ -0,0 +1,8 @@
import 'package:flutter/material.dart';
class AppNavigationService {
static final GlobalKey<NavigatorState> rootNavigatorKey =
GlobalKey<NavigatorState>();
const AppNavigationService._();
}