Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion lib/src/showcase/showcase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ class _ShowcaseState extends State<Showcase> {

late ShowcaseScope _showCaseWidgetManager;

late final int _uniqueId = widget.hashCode;
late final int _uniqueId = UniqueKey().hashCode;

@override
void initState() {
Expand Down
1 change: 0 additions & 1 deletion lib/src/showcase/showcase_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ class ShowcaseController {
targetPadding: config.targetPadding,
),
ToolTipWrapper(
key: ValueKey(id),
title: config.title,
titleTextAlign: config.titleTextAlign,
description: config.description,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/utils/overlay_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class OverlayManager {
// This key is used to force rebuild the overlay when needed.
// this key enables `_overlayEntry?.markNeedsBuild();` to detect that
// output of the builder has changed.
key: ValueKey(firstShowcaseConfig.hashCode),
key: ValueKey(firstController.id),
children: [
GestureDetector(
onTap: firstController.handleBarrierTap,
Expand Down