Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 73941a9

Browse files
committed
Added comment
1 parent 4e123d8 commit 73941a9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/src/presentation/authenticator_widget.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ class _AuthenticatorWidgetState extends State<AuthenticatorWidget> {
9696
),
9797
);
9898
if (!_isShowingSplashScreen) {
99+
// As of flutter 3.7.0 these will be non-null. For they are kept in place.
99100
Overlay.of(context)?.insert(overlayEntry!);
100101
}
101102
}
@@ -105,6 +106,7 @@ class _AuthenticatorWidgetState extends State<AuthenticatorWidget> {
105106
setState(() {
106107
_isShowingSplashScreen = false;
107108
if (overlayEntry != null) {
109+
// As of flutter 3.7.0 these will be non-null. For they are kept in place.
108110
Overlay.of(context)?.insert(overlayEntry!);
109111
}
110112
});

0 commit comments

Comments
 (0)