Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/src/showcase_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class ShowCaseWidgetState extends State<ShowCaseWidget> {
int? activeWidgetId;
RenderBox? rootRenderObject;
Size? rootWidgetSize;
Key? anchoredOverlayKey;
final Key anchoredOverlayKey = UniqueKey();

/// These properties are only here so that it can be accessed by
/// [Showcase]
Expand Down Expand Up @@ -163,7 +163,6 @@ class ShowCaseWidgetState extends State<ShowCaseWidget> {
rootWidgetSize = rootWidget == null
? MediaQuery.of(context).size
: rootRenderObject?.size;
anchoredOverlayKey = UniqueKey();
});
}

Expand Down
Loading