We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d494e commit 433095cCopy full SHA for 433095c
lib/src/showcase_widget.dart
@@ -158,7 +158,7 @@ class ShowCaseWidgetState extends State<ShowCaseWidget> {
158
int? activeWidgetId;
159
RenderBox? rootRenderObject;
160
Size? rootWidgetSize;
161
- Key? anchoredOverlayKey;
+ final Key anchoredOverlayKey = UniqueKey();
162
163
late final TooltipActionConfig? globalTooltipActionConfig;
164
@@ -203,7 +203,6 @@ class ShowCaseWidgetState extends State<ShowCaseWidget> {
203
rootWidgetSize = rootWidget == null
204
? MediaQuery.of(context).size
205
: rootRenderObject?.size;
206
- anchoredOverlayKey = UniqueKey();
207
});
208
}
209
0 commit comments